lang stringclasses 1
value | license stringclasses 13
values | stderr stringlengths 0 350 | commit stringlengths 40 40 | returncode int64 0 128 | repos stringlengths 7 45.1k | new_contents stringlengths 0 1.87M | new_file stringlengths 6 292 | old_contents stringlengths 0 1.87M | message stringlengths 6 9.26k | old_file stringlengths 6 292 | subject stringlengths 0 4.45k |
|---|---|---|---|---|---|---|---|---|---|---|---|
Java | mit | error: pathspec 'src/GeeksforGeeksPractice/_0098EditDistance.java' did not match any file(s) known to git
| a3e21dc3edb60c34dd488e49733ffca102af39f0 | 1 | darshanhs90/Java-Coding,darshanhs90/Java-InterviewPrep | package GeeksforGeeksPractice;
/*
* Link : http://www.geeksforgeeks.org/dynamic-programming-set-5-edit-distance/
*/
public class _0098EditDistance {
public static void main(String[] args) {
String x = "sunday";
String y = "saturday";
findEditDistance(x,y);
}
private static void findEditDistance... | src/GeeksforGeeksPractice/_0098EditDistance.java | edit distance completed | src/GeeksforGeeksPractice/_0098EditDistance.java | edit distance completed | |
Java | mit | error: pathspec 'src/main/java/exceptions/engine/ObjectInfoException.java' did not match any file(s) known to git
| e4ec54400488c18c22b8b9c6376990deabe11261 | 1 | dianwen/oogasalad_TowerDefense,sdh31/tower_defense,jordanly/oogasalad_OOGALoompas,dennis-park/OOGALoompas,codylieu/oogasalad_OOGALoompas,garysheng/tower-defense-game-engine,kevinkdo/oogasalad_OOGALoompas | package main.java.exceptions.engine;
public class ObjectInfoException extends Exception {
public ObjectInfoException(String s) {
super(s);
}
}
| src/main/java/exceptions/engine/ObjectInfoException.java | Added exception for info grabbing
| src/main/java/exceptions/engine/ObjectInfoException.java | Added exception for info grabbing | |
Java | mit | error: pathspec 'codeplay-base/src/main/java/com/tazine/base/NumberUtils.java' did not match any file(s) known to git
| c6976baec7b4f3d662944508b9eea86e398eb6a1 | 1 | BookFrank/CodePlay,BookFrank/CodePlay,BookFrank/CodePlay | package com.tazine.base;
import java.math.BigDecimal;
import java.text.DecimalFormat;
/**
* NumberUtils
*
* @author frank
* @date 2019/06/26
*/
public class NumberUtils {
public static void main(String[] args) {
double d1 = 3.1415926;
//double d2 = 300.7;
double d2 = 300.7595926;
... | codeplay-base/src/main/java/com/tazine/base/NumberUtils.java | style (base)
| codeplay-base/src/main/java/com/tazine/base/NumberUtils.java | style (base) | |
Java | mit | error: pathspec 'src/com/sleepycoders/jlib/algorithm/search/BinarySearch.java' did not match any file(s) known to git
| 4ff36cc78954762f23beec71955e6e82769028c3 | 1 | joshimoo/JLib | package com.sleepycoders.jlib.algorithm.search;
import java.util.Comparator;
/**
* @author Joshua Moody (joshimoo@hotmail.de)
*/
public final class BinarySearch {
public static final int NOT_FOUND = -1;
private BinarySearch() {}
public static <T extends Comparable<? super T>> int Search(T[] data, T el... | src/com/sleepycoders/jlib/algorithm/search/BinarySearch.java | Implemented BinarySearch for Generic Arrays
| src/com/sleepycoders/jlib/algorithm/search/BinarySearch.java | Implemented BinarySearch for Generic Arrays | |
Java | mit | error: pathspec 'basics/src/main/java/com/stulsoft/pjava/basics/io/FileTreeWalk.java' did not match any file(s) known to git
| 89d27a3aadd16818a6394f15314cd0df2c05113e | 1 | ysden123/ys-pjava,ysden123/ys-pjava,ysden123/ys-pjava | /*
* Copyright (c) 2015, Yuriy Stul. All rights reserved
*/
package com.stulsoft.pjava.basics.io;
import java.io.IOException;
import java.nio.file.FileVisitResult;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.nio.file.SimpleFileVisitor;
import java.nio.file.attribute... | basics/src/main/java/com/stulsoft/pjava/basics/io/FileTreeWalk.java | walk file tree
| basics/src/main/java/com/stulsoft/pjava/basics/io/FileTreeWalk.java | walk file tree | |
Java | mit | error: pathspec 'src/main/java/com/gmail/DrZoddiak/BetterBlacklisting/Commands/Set.java' did not match any file(s) known to git
| 7a9327f026677e5ce6a90183875d3cfc28ffb54a | 1 | DrZoddiak/BetterBlacklisting | package io.drzoddiak.betterblacklisting.Commands;
import org.spongepowered.api.command.CommandException;
import org.spongepowered.api.command.CommandResult;
import org.spongepowered.api.command.CommandSource;
import org.spongepowered.api.command.args.CommandContext;
import org.spongepowered.api.command.spec.CommandExe... | src/main/java/com/gmail/DrZoddiak/BetterBlacklisting/Commands/Set.java | Create Set.java | src/main/java/com/gmail/DrZoddiak/BetterBlacklisting/Commands/Set.java | Create Set.java | |
Java | mit | error: pathspec 'test/com/chip8java/emulator/com/chip8java/emulator/listeners/PauseMenuItemListenerTest.java' did not match any file(s) known to git
| 14dde82aeb64c8edbf4a6a341c9ec4f072883461 | 1 | craigthomas/Chip8Java | /*
* Copyright (C) 2013-2015 Craig Thomas
* This project uses an MIT style license - see LICENSE for details.
*/
package com.chip8java.emulator.com.chip8java.emulator.listeners;
import com.chip8java.emulator.CentralProcessingUnit;
import com.chip8java.emulator.Keyboard;
import com.chip8java.emulator.Memory;
import ... | test/com/chip8java/emulator/com/chip8java/emulator/listeners/PauseMenuItemListenerTest.java | Added test for PauseMenuItemListener.
| test/com/chip8java/emulator/com/chip8java/emulator/listeners/PauseMenuItemListenerTest.java | Added test for PauseMenuItemListener. | |
Java | epl-1.0 | e7fdf2c80c69320cf07857edfeecc77b6aa33f53 | 0 | Techjar/ForgeEssentials,ForgeEssentials/ForgeEssentialsMain,planetguy32/ForgeEssentials,liachmodded/ForgeEssentials,CityOfLearning/ForgeEssentials,aschmois/ForgeEssentialsMain | package com.ForgeEssentials.economy;
import java.util.HashMap;
import net.minecraft.entity.player.EntityPlayer;
import com.ForgeEssentials.api.data.ClassContainer;
import com.ForgeEssentials.api.data.DataStorageManager;
import com.ForgeEssentials.api.economy.IEconManager;
import cpw.mods.fml.common.IPlayerTracker;
... | src/FE_SRC_COMMON/com/ForgeEssentials/economy/WalletHandler.java | package com.ForgeEssentials.economy;
import java.util.HashMap;
import net.minecraft.entity.player.EntityPlayer;
import com.ForgeEssentials.api.data.ClassContainer;
import com.ForgeEssentials.api.data.DataStorageManager;
import com.ForgeEssentials.api.economy.IEconManager;
import cpw.mods.fml.common.IPlayerTracker;
... | Fixed unknown error for economy commands after player logs back in
| src/FE_SRC_COMMON/com/ForgeEssentials/economy/WalletHandler.java | Fixed unknown error for economy commands after player logs back in | |
Java | epl-1.0 | error: pathspec 'src/main/java/prm4j/api/fsm/FSM.java' did not match any file(s) known to git
| ec1372b17d5fc43e255692bf16807147278135d5 | 1 | parzonka/prm4j | /*
* Copyright (c) 2012 Mateusz Parzonka, Eric Bodden
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:... | src/main/java/prm4j/api/fsm/FSM.java | Add fsm
| src/main/java/prm4j/api/fsm/FSM.java | Add fsm | |
Java | epl-1.0 | error: pathspec 'junit5-engine/src/main/java/org/junit/gen5/engine/junit5/execution/ConditionEvaluator.java' did not match any file(s) known to git
| ce7d854544c725b012a58e8f575ce57b8f6f9cc7 | 1 | junit-team/junit-lambda,marcphilipp/junit-lambda,marcphilipp/junit5,sbrannen/junit-lambda | /*
* Copyright 2015 the original author or authors.
*
* All rights reserved. This program and the accompanying materials are
* made available under the terms of the Eclipse Public License v1.0 which
* accompanies this distribution and is available at
*
* http://www.eclipse.org/legal/epl-v10.html
*/
package org... | junit5-engine/src/main/java/org/junit/gen5/engine/junit5/execution/ConditionEvaluator.java | Reinstate ConditionEvaluator
| junit5-engine/src/main/java/org/junit/gen5/engine/junit5/execution/ConditionEvaluator.java | Reinstate ConditionEvaluator | |
Java | agpl-3.0 | 9e305abb7200eb99c5f1dd6cb467d83a57bdee57 | 0 | relateiq/sql-layer,qiuyesuifeng/sql-layer,wfxiang08/sql-layer-1,wfxiang08/sql-layer-1,jaytaylor/sql-layer,jaytaylor/sql-layer,jaytaylor/sql-layer,jaytaylor/sql-layer,relateiq/sql-layer,ngaut/sql-layer,wfxiang08/sql-layer-1,shunwang/sql-layer-1,shunwang/sql-layer-1,relateiq/sql-layer,wfxiang08/sql-layer-1,shunwang/sql-l... | /**
* Copyright (C) 2009-2013 FoundationDB, LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Thi... | src/main/java/com/foundationdb/ais/model/HKey.java | /**
* Copyright (C) 2009-2013 FoundationDB, LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Thi... | corrected the order
| src/main/java/com/foundationdb/ais/model/HKey.java | corrected the order | |
Java | agpl-3.0 | 5b31d39f2838c0841a1f823f8bcbc398df813d1a | 0 | Heiner1/AndroidAPS,jotomo/AndroidAPS,jotomo/AndroidAPS,MilosKozak/AndroidAPS,Heiner1/AndroidAPS,Heiner1/AndroidAPS,Heiner1/AndroidAPS,MilosKozak/AndroidAPS,jotomo/AndroidAPS,PoweRGbg/AndroidAPS,PoweRGbg/AndroidAPS,PoweRGbg/AndroidAPS,winni67/AndroidAPS,winni67/AndroidAPS,MilosKozak/AndroidAPS | package de.jotomo.ruffyscripter.commands;
import android.os.SystemClock;
import org.monkey.d.ruffy.ruffy.driver.display.MenuAttribute;
import org.monkey.d.ruffy.ruffy.driver.display.MenuType;
import org.monkey.d.ruffy.ruffy.driver.display.menu.MenuTime;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import... | ruffyscripter/src/main/java/de/jotomo/ruffyscripter/commands/SetTbrCommand.java | package de.jotomo.ruffyscripter.commands;
import android.os.SystemClock;
import org.monkey.d.ruffy.ruffy.driver.display.MenuAttribute;
import org.monkey.d.ruffy.ruffy.driver.display.MenuType;
import org.monkey.d.ruffy.ruffy.driver.display.menu.MenuTime;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import... | Extract method checkAndWaitIfExistingTbrIsAboutToEnd.
| ruffyscripter/src/main/java/de/jotomo/ruffyscripter/commands/SetTbrCommand.java | Extract method checkAndWaitIfExistingTbrIsAboutToEnd. | |
Java | apache-2.0 | 262d4db3d8d8b03c2e8a63608b430469724a203a | 0 | RaffaelBild/arx,fstahnke/arx,fstahnke/arx,kbabioch/arx,jgaupp/arx,COWYARD/arx,kentoa/arx,COWYARD/arx,bitraten/arx,bitraten/arx,kentoa/arx,tijanat/arx,arx-deidentifier/arx,tijanat/arx,TheRealRasu/arx,kbabioch/arx,TheRealRasu/arx,jgaupp/arx,RaffaelBild/arx,arx-deidentifier/arx | /*
* ARX: Powerful Data Anonymization
* Copyright (C) 2012 - 2014 Florian Kohlmayer, Fabian Prasser
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
... | src/gui/org/deidentifier/arx/gui/view/impl/explore/ViewTiles.java | /*
* ARX: Powerful Data Anonymization
* Copyright (C) 2012 - 2014 Florian Kohlmayer, Fabian Prasser
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
... | Set background color for Tiles | src/gui/org/deidentifier/arx/gui/view/impl/explore/ViewTiles.java | Set background color for Tiles | |
Java | apache-2.0 | 546562c17520afec8f7819d851a251ab51117d0f | 0 | ebraminio/commafeed,Athou/commafeed,wesley1001/commafeed,ahmadassaf/CommaFeed-RSS-Reader,tlvince/commafeed,syshk/commafeed,Athou/commafeed,wesley1001/commafeed,syshk/commafeed,tlvince/commafeed,ahmadassaf/CommaFeed-RSS-Reader,ahmadassaf/CommaFeed-RSS-Reader,ebraminio/commafeed,Hubcapp/commafeed,RavenB/commafeed,zhangzu... | package com.commafeed.frontend.rest.resources;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import java.util.Map;
import javax.ws.rs.Consumes;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.QueryParam;
import javax.ws.rs.We... | src/main/java/com/commafeed/frontend/rest/resources/SubscriptionsREST.java | package com.commafeed.frontend.rest.resources;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;
import java.util.Map;
import javax.ws.rs.Consumes;
import javax.ws.rs.GET;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.QueryParam;
import javax.ws.rs.We... | append http protocol if missing
| src/main/java/com/commafeed/frontend/rest/resources/SubscriptionsREST.java | append http protocol if missing | |
Java | apache-2.0 | bf97e34809c057325ef818cd6e2d92e83102bcbc | 0 | PramodSSImmaneni/apex-malhar,brightchen/apex-malhar,tushargosavi/incubator-apex-malhar,chandnisingh/apex-malhar,chinmaykolhatkar/apex-malhar,skekre98/apex-mlhr,chinmaykolhatkar/incubator-apex-malhar,yogidevendra/apex-malhar,PramodSSImmaneni/incubator-apex-malhar,patilvikram/apex-malhar,davidyan74/apex-malhar,tushargosa... | /*
* Copyright (c) 2014 DataTorrent, Inc. ALL Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... | contrib/src/main/java/com/datatorrent/contrib/hds/HDSBucketManager.java | /*
* Copyright (c) 2014 DataTorrent, Inc. ALL Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... | Ensure writer errors are propagated.
| contrib/src/main/java/com/datatorrent/contrib/hds/HDSBucketManager.java | Ensure writer errors are propagated. | |
Java | apache-2.0 | 56a5a319b26946e05427e022c7eb61991ade644f | 0 | MichaelNedzelsky/intellij-community,slisson/intellij-community,holmes/intellij-community,FHannes/intellij-community,amith01994/intellij-community,nicolargo/intellij-community,dslomov/intellij-community,supersven/intellij-community,caot/intellij-community,diorcety/intellij-community,robovm/robovm-studio,ivan-fedorov/int... | /*
* Copyright 2000-2013 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | platform/core-impl/src/com/intellij/openapi/vfs/impl/jar/JarHandlerBase.java | /*
* Copyright 2000-2013 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | IDEA-114283 (diagnostic)
| platform/core-impl/src/com/intellij/openapi/vfs/impl/jar/JarHandlerBase.java | IDEA-114283 (diagnostic) | |
Java | apache-2.0 | 3523e3e29e05b5200f678b15eb197b79f3e8d960 | 0 | semonte/intellij-community,signed/intellij-community,apixandru/intellij-community,xfournet/intellij-community,xfournet/intellij-community,semonte/intellij-community,ibinti/intellij-community,semonte/intellij-community,asedunov/intellij-community,semonte/intellij-community,FHannes/intellij-community,FHannes/intellij-com... | /*
* Copyright 2000-2016 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | plugins/ui-designer/src/com/intellij/uiDesigner/GuiDesignerConfigurable.java | /*
* Copyright 2000-2016 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | GuiDesignerConfigurable.MyApplyRunnable.vanishGeneratedSources: no swing events under write action (EA-97650 - assert: NoSwingUnderWriteAction.lambda$watchForEvents$)
| plugins/ui-designer/src/com/intellij/uiDesigner/GuiDesignerConfigurable.java | GuiDesignerConfigurable.MyApplyRunnable.vanishGeneratedSources: no swing events under write action (EA-97650 - assert: NoSwingUnderWriteAction.lambda$watchForEvents$) | |
Java | apache-2.0 | c8abab83b6352214534fbd56e2694f505867ecd3 | 0 | vvv1559/intellij-community,idea4bsd/idea4bsd,salguarnieri/intellij-community,xfournet/intellij-community,michaelgallacher/intellij-community,retomerz/intellij-community,retomerz/intellij-community,mglukhikh/intellij-community,hurricup/intellij-community,idea4bsd/idea4bsd,apixandru/intellij-community,vvv1559/intellij-co... | package org.zmlx.hg4idea.command;
import com.intellij.openapi.progress.ProgressIndicator;
import com.intellij.openapi.progress.Task;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.util.text.StringUtil;
import com.intellij.openapi.vcs.VcsNotifier;
import com.intellij.openapi.vfs.VirtualFile;
i... | plugins/hg4idea/src/org/zmlx/hg4idea/command/HgBookmarkCommand.java | package org.zmlx.hg4idea.command;
import com.intellij.openapi.progress.ProgressIndicator;
import com.intellij.openapi.progress.Task;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.util.text.StringUtil;
import com.intellij.openapi.vcs.VcsNotifier;
import com.intellij.openapi.vfs.VirtualFile;
i... | [hg]: create bookmark cleanUp
| plugins/hg4idea/src/org/zmlx/hg4idea/command/HgBookmarkCommand.java | [hg]: create bookmark cleanUp | |
Java | apache-2.0 | 739c709334bccbd1e2bcd6c379044ef46819f470 | 0 | ivan-fedorov/intellij-community,holmes/intellij-community,ftomassetti/intellij-community,caot/intellij-community,izonder/intellij-community,ol-loginov/intellij-community,youdonghai/intellij-community,dslomov/intellij-community,fitermay/intellij-community,suncycheng/intellij-community,muntasirsyed/intellij-community,Dis... | package com.intellij.execution.configurations;
import java.util.ArrayList;
import java.util.List;
import java.util.StringTokenizer;
/**
* Splits input String to tokens being aware of quoted tokens ("foo bar") and escaped spaces (foo\ bar),
* usually used for splitting command line to separate arguments that may con... | platform/util/src/com/intellij/execution/configurations/CommandLineTokenizer.java | package com.intellij.execution.configurations;
import java.util.ArrayList;
import java.util.List;
import java.util.StringTokenizer;
/**
* Splits input String to tokens being aware of quoted tokens,
* usually used for splitting command line to separate arguments that may contain space symbols.
* Escaped symbols are... | Platform: handle escaped whitespaces in command lines
| platform/util/src/com/intellij/execution/configurations/CommandLineTokenizer.java | Platform: handle escaped whitespaces in command lines | |
Java | apache-2.0 | 008b5631e385d9a1b3e39531d57ed2009fc4f7dd | 0 | da1z/intellij-community,hurricup/intellij-community,hurricup/intellij-community,apixandru/intellij-community,alphafoobar/intellij-community,adedayo/intellij-community,samthor/intellij-community,youdonghai/intellij-community,SerCeMan/intellij-community,ryano144/intellij-community,youdonghai/intellij-community,slisson/in... | /*
* Copyright 2000-2009 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | plugins/svn4idea/src/org/jetbrains/idea/svn/dialogs/BranchConfigurationDialog.java | /*
* Copyright 2000-2009 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | SVN: branch configuration dialog: optimization: do not sort branches collection when returning branches number for getPrefferedSize() of JList
| plugins/svn4idea/src/org/jetbrains/idea/svn/dialogs/BranchConfigurationDialog.java | SVN: branch configuration dialog: optimization: do not sort branches collection when returning branches number for getPrefferedSize() of JList | |
Java | apache-2.0 | 12d9d140ec94a6890155be9db47dedafa8c49277 | 0 | cuba-platform/cuba,dimone-kun/cuba,dimone-kun/cuba,cuba-platform/cuba,cuba-platform/cuba,dimone-kun/cuba | /*
* Copyright (c) 2012 Haulmont Technology Ltd. All Rights Reserved.
* Haulmont Technology proprietary and confidential.
* Use is subject to license terms.
*/
package com.haulmont.cuba.core.sys;
import com.haulmont.chile.core.model.Session;
import com.haulmont.chile.jpa.loader.JPAAnnotationsLoader;
import java.... | modules/global/src/com/haulmont/cuba/core/sys/CubaAnnotationsLoader.java | /*
* Copyright (c) 2012 Haulmont Technology Ltd. All Rights Reserved.
* Haulmont Technology proprietary and confidential.
* Use is subject to license terms.
*/
package com.haulmont.cuba.core.sys;
import com.haulmont.chile.core.model.Session;
import com.haulmont.chile.jpa.loader.JPAAnnotationsLoader;
import java.... | Refs #1445 Ignore OpenJPA state fields by name, not by "pc" prefix
| modules/global/src/com/haulmont/cuba/core/sys/CubaAnnotationsLoader.java | Refs #1445 Ignore OpenJPA state fields by name, not by "pc" prefix | |
Java | apache-2.0 | aef95acb5720a4bfe0d5b3c47bbb16b54c748bff | 0 | ryano144/intellij-community,orekyuu/intellij-community,xfournet/intellij-community,wreckJ/intellij-community,ivan-fedorov/intellij-community,akosyakov/intellij-community,apixandru/intellij-community,muntasirsyed/intellij-community,diorcety/intellij-community,MichaelNedzelsky/intellij-community,mglukhikh/intellij-commun... | /*
* Copyright 2000-2014 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | java/debugger/impl/src/com/intellij/debugger/engine/JavaDebugProcess.java | /*
* Copyright 2000-2014 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | java-xdebugger: use debugger thread to store descriptors tree
| java/debugger/impl/src/com/intellij/debugger/engine/JavaDebugProcess.java | java-xdebugger: use debugger thread to store descriptors tree | |
Java | apache-2.0 | be62dec3d3058c7011c2f54645f1060936646c07 | 0 | slisson/intellij-community,joewalnes/idea-community,apixandru/intellij-community,TangHao1987/intellij-community,jagguli/intellij-community,jagguli/intellij-community,nicolargo/intellij-community,vladmm/intellij-community,TangHao1987/intellij-community,ibinti/intellij-community,jagguli/intellij-community,orekyuu/intelli... | package com.intellij.openapi.projectRoots.ex;
import com.intellij.openapi.module.Module;
import com.intellij.openapi.module.ModuleManager;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.projectRoots.ProjectJdk;
import com.intellij.openapi.roots.ModuleRootManager;
import com.intellij.openapi.r... | source/com/intellij/openapi/projectRoots/ex/PathUtilEx.java | package com.intellij.openapi.projectRoots.ex;
import com.intellij.openapi.module.Module;
import com.intellij.openapi.module.ModuleManager;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.projectRoots.ProjectJdk;
import com.intellij.openapi.roots.ModuleRootManager;
import com.intellij.openapi.r... | fix slow tests
| source/com/intellij/openapi/projectRoots/ex/PathUtilEx.java | fix slow tests | |
Java | apache-2.0 | 661e30338c41254774f63feefedb8d376d5250e5 | 0 | h4ck4thon/jira-scrum-poker,h4ck4thon/jira-scrum-poker,codescape/jira-scrum-poker,codescape/jira-scrum-poker | package net.congstar.jira.plugins.scrumpoker.action;
import java.net.URL;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import net.congstar.jira.plugins.scrumpoker.data.PlanningPokerStorage;
import net.congstar.jira.plugins.scrumpoker.data.StoryPointFieldSupport;
import net.congstar.jir... | src/main/java/net/congstar/jira/plugins/scrumpoker/action/StartPlanningPoker.java | package net.congstar.jira.plugins.scrumpoker.action;
import java.net.URL;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import net.congstar.jira.plugins.scrumpoker.data.PlanningPokerStorage;
import net.congstar.jira.plugins.scrumpoker.data.StoryPointFieldSupport;
import net.congstar.jir... | true or false but please never null
| src/main/java/net/congstar/jira/plugins/scrumpoker/action/StartPlanningPoker.java | true or false but please never null | |
Java | apache-2.0 | 2b07543c94377b3359152715d0ed5742ed2894b6 | 0 | lemmingapex/mage-android-sdk,ngageoint/mage-android-sdk,lemmingapex/mage-android-sdk | package mil.nga.giat.mage.sdk.datastore;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.util.Log;
import com.j256.ormlite.android.apptools.OrmLiteSqliteOpenHelper;
import com.j256.ormlite.dao.Dao;
import com.j256.ormlite.support.ConnectionSource;
import com.j256.ormlite.... | sdk/src/main/java/mil/nga/giat/mage/sdk/datastore/DaoStore.java | package mil.nga.giat.mage.sdk.datastore;
import android.content.Context;
import android.database.sqlite.SQLiteDatabase;
import android.util.Log;
import com.j256.ormlite.android.apptools.OrmLiteSqliteOpenHelper;
import com.j256.ormlite.dao.Dao;
import com.j256.ormlite.support.ConnectionSource;
import com.j256.ormlite.... | Bump DB version
| sdk/src/main/java/mil/nga/giat/mage/sdk/datastore/DaoStore.java | Bump DB version | |
Java | apache-2.0 | 20b9326f672cf1b59e9ce22bb4f920a5ced97fca | 0 | caosg/BroadleafCommerce,ljshj/BroadleafCommerce,macielbombonato/BroadleafCommerce,arshadalisoomro/BroadleafCommerce,TouK/BroadleafCommerce,sanlingdd/broadleaf,lgscofield/BroadleafCommerce,trombka/blc-tmp,macielbombonato/BroadleafCommerce,wenmangbo/BroadleafCommerce,alextiannus/BroadleafCommerce,rawbenny/BroadleafCommer... | /*
* Copyright 2008-2013 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ... | admin/broadleaf-open-admin-platform/src/main/java/org/broadleafcommerce/openadmin/server/domain/PersistencePackageRequest.java | /*
* Copyright 2008-2013 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ... | #792 #793 - pre-populate persistence package request with any custom criteria and make sure that the collections aren't fixed-sized
| admin/broadleaf-open-admin-platform/src/main/java/org/broadleafcommerce/openadmin/server/domain/PersistencePackageRequest.java | #792 #793 - pre-populate persistence package request with any custom criteria and make sure that the collections aren't fixed-sized | |
Java | apache-2.0 | a7f221725f6ac8c44ac641c1790d4268e7c0256b | 0 | Distrotech/intellij-community,diorcety/intellij-community,supersven/intellij-community,xfournet/intellij-community,diorcety/intellij-community,holmes/intellij-community,ftomassetti/intellij-community,izonder/intellij-community,asedunov/intellij-community,adedayo/intellij-community,kdwink/intellij-community,asedunov/int... | package com.intellij.ui.content.impl;
import com.intellij.openapi.Disposable;
import com.intellij.openapi.wm.ex.IdeFocusTraversalPolicy;
import com.intellij.openapi.actionSystem.AnAction;
import com.intellij.openapi.actionSystem.DataProvider;
import com.intellij.openapi.application.ApplicationManager;
import com.intel... | ui/impl/com/intellij/ui/content/impl/ContentManagerImpl.java | package com.intellij.ui.content.impl;
import com.intellij.openapi.Disposable;
import com.intellij.openapi.wm.ex.IdeFocusTraversalPolicy;
import com.intellij.openapi.actionSystem.AnAction;
import com.intellij.openapi.actionSystem.DataProvider;
import com.intellij.openapi.application.ApplicationManager;
import com.intel... | IDEADEV-17132 - selection of removed content
| ui/impl/com/intellij/ui/content/impl/ContentManagerImpl.java | IDEADEV-17132 - selection of removed content | |
Java | apache-2.0 | error: pathspec 'src/org/LiHuaBot/ab/Main.java' did not match any file(s) known to git
| 43192aad453926aa47955eefb3190b0d47337330 | 1 | maitian13/LiHuaBot | package org.LiHuaBot.ab;
/**
* Created by maitian13 on 2016/1/31.
*/
public class Main {
public static void main(String args[]){
System.out.println("hello world!");
}
}
| src/org/LiHuaBot/ab/Main.java | Main Class
| src/org/LiHuaBot/ab/Main.java | Main Class | |
Java | apache-2.0 | error: pathspec 'src/main/java/al/musi/osoba/Person.java' did not match any file(s) known to git
| 39d5666cb96ed16967004a6d0b4c414978797a3d | 1 | 912d/bug-free-couscous | package al.musi.entity;
import java.io.Serializable;
import java.time.LocalDate;
import java.time.LocalDateTime;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.Id;
@Entity
public class Person implements Serializable {
private static final long serialVersionUID = ... | src/main/java/al/musi/osoba/Person.java | added osoba (entity) folder w/ person class
| src/main/java/al/musi/osoba/Person.java | added osoba (entity) folder w/ person class | |
Java | apache-2.0 | error: pathspec 'src/main/java/br/edu/utfpr/dao/EMF.java' did not match any file(s) known to git
| 8e98734120bb0bfb2fd2c5ef35d7b67467a9221d | 1 | rafaelMarcari/ControleAcesso,rafaelMarcari/ControleAcesso | /*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package br.edu.utfpr.dao;
import javax.persistence.EntityManager;
import javax.persistence.EntityManagerFactory;
import javax.persiste... | src/main/java/br/edu/utfpr/dao/EMF.java | Criado a classe de conexão com a base de dados
| src/main/java/br/edu/utfpr/dao/EMF.java | Criado a classe de conexão com a base de dados | |
Java | apache-2.0 | error: pathspec 'krati-main/src/test/java/test/misc/TestMisc.java' did not match any file(s) known to git
| ead639104b2f28a2ed0d8103035eb2e1b2373d63 | 1 | jingwei/krati,jingwei/krati,linkedin/krati,jingwei/krati,linkedin/krati,linkedin/krati | /*
* Copyright (c) 2010-2012 LinkedIn, Inc
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or ... | krati-main/src/test/java/test/misc/TestMisc.java | added TestMisc.java
| krati-main/src/test/java/test/misc/TestMisc.java | added TestMisc.java | |
Java | apache-2.0 | error: pathspec 'src/main/java/edu/neu/ccs/pyramid/experiment/Exp210.java' did not match any file(s) known to git
| 40801089044303839424d4f9592a9f1d610dafc4 | 1 | cheng-li/pyramid,cheng-li/pyramid | package edu.neu.ccs.pyramid.experiment;
import edu.neu.ccs.pyramid.configuration.Config;
import edu.neu.ccs.pyramid.dataset.DataSetType;
import edu.neu.ccs.pyramid.dataset.MultiLabelClfDataSet;
import edu.neu.ccs.pyramid.dataset.TRECFormat;
import edu.neu.ccs.pyramid.eval.Accuracy;
import edu.neu.ccs.pyramid.eval.Over... | src/main/java/edu/neu/ccs/pyramid/experiment/Exp210.java | add Exp210
| src/main/java/edu/neu/ccs/pyramid/experiment/Exp210.java | add Exp210 | |
Java | apache-2.0 | error: pathspec 'src/core/org/apache/hadoop/net/CachedDNSToSwitchMapping.java' did not match any file(s) known to git
| 72315be9d6e4911fac6dd118c3174dfbc9fe384a | 1 | dhootha/hadoop-common,coderplay/hadoop-common,toddlipcon/hadoop,coderplay/hadoop-common,dhootha/hadoop-common,hn5092/hadoop-common,aseldawy/spatialhadoop,ShortMap/ShortMap,squidsolutions/hadoop-common,toddlipcon/hadoop,hn5092/hadoop-common,aseldawy/spatialhadoop,toddlipcon/hadoop,sztanko/hadoop-common,dongjiaqiang/hado... | /**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you... | src/core/org/apache/hadoop/net/CachedDNSToSwitchMapping.java | HADOOP-3620. Added the file CacheDNSToSwitchMapping.java that was missed earlier.
git-svn-id: 5be3658b1da2303116c04834c161daea58df9cc4@682593 13f79535-47bb-0310-9956-ffa450edef68
| src/core/org/apache/hadoop/net/CachedDNSToSwitchMapping.java | HADOOP-3620. Added the file CacheDNSToSwitchMapping.java that was missed earlier. | |
Java | apache-2.0 | error: pathspec 'ohmdb-test/src/test/java/com/ohmdb/perf/MultiThreadedTest.java' did not match any file(s) known to git
| f42a9246f628dd8331d6d550a2dc265f31f22624 | 1 | gitblit/ohmdb,gitblit/ohmdb,ohmdb/ohmdb,ohmdb/ohmdb | package com.ohmdb.perf;
/*
* #%L
* ohmdb-test
* %%
* Copyright (C) 2013 - 2014 Nikolche Mihajlovski
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.o... | ohmdb-test/src/test/java/com/ohmdb/perf/MultiThreadedTest.java | Initial commit: MultiThreadedTest.java
| ohmdb-test/src/test/java/com/ohmdb/perf/MultiThreadedTest.java | Initial commit: MultiThreadedTest.java | |
Java | apache-2.0 | error: pathspec 'src/main/java/es/tid/graphlib/clustering/SemiClusteringSimple.java' did not match any file(s) known to git
| 03c9e6ed41fd8b65ef561d7c3fff87fba2a57e44 | 1 | joseprupi/okapi,grafos-ml/okapi,grafos-ml/okapi,schlegel/okapi,schlegel/okapi,joseprupi/okapi | package es.tid.graphlib.clustering;
import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;
import java.util.Comparator;
import java.util.HashSet;
import java.util.Iterator;
import java.util.TreeSet;
import org.apache.giraph.Algorithm;
import org.apache.giraph.edge.Edge;
import org.apache.gir... | src/main/java/es/tid/graphlib/clustering/SemiClusteringSimple.java | SemiClusterinSimple
simplify the class of the message - same as vertex value
outputFormat depends on this class
| src/main/java/es/tid/graphlib/clustering/SemiClusteringSimple.java | SemiClusterinSimple simplify the class of the message - same as vertex value outputFormat depends on this class | |
Java | apache-2.0 | error: pathspec 'src/main/java/com/javacook/testdatagenerator/TestDataGenerator.java' did not match any file(s) known to git
| e2fe9580881571721ba24d58fd3c84c62b2006b6 | 1 | javacook/test-data-generator | package com.javacook.testdatagenerator;
import com.javacook.coordinate.CoordinateInterface;
import com.javacook.testdatagenerator.excelreader.BeanPathCalculator;
import com.javacook.testdatagenerator.excelreader.MyExcelAccessor;
import com.javacook.testdatagenerator.model.BeanPath;
import java.io.File;
import java.io... | src/main/java/com/javacook/testdatagenerator/TestDataGenerator.java | initial
| src/main/java/com/javacook/testdatagenerator/TestDataGenerator.java | initial | |
Java | apache-2.0 | error: pathspec 'projects/OG-Component/tests/unit/com/opengamma/component/ComponentTest.java' did not match any file(s) known to git
| 9aad9d07f0b888ab2cb0a67f3a41d8ef5363a5ba | 1 | DevStreet/FinanceAnalytics,McLeodMoores/starling,ChinaQuants/OG-Platform,jerome79/OG-Platform,ChinaQuants/OG-Platform,jerome79/OG-Platform,nssales/OG-Platform,jeorme/OG-Platform,codeaudit/OG-Platform,jerome79/OG-Platform,nssales/OG-Platform,jeorme/OG-Platform,McLeodMoores/starling,codeaudit/OG-Platform,jeorme/OG-Platfo... | /**
* Copyright (C) 2009 - present by OpenGamma Inc. and the OpenGamma group of companies
*
* Please see distribution for license.
*/
package com.opengamma.component;
import static org.testng.AssertJUnit.assertNotNull;
import org.testng.annotations.Test;
/**
* Test.
*/
@Test
public class ComponentTest {
pub... | projects/OG-Component/tests/unit/com/opengamma/component/ComponentTest.java | [PLAT-1658] Placeholder test for components
| projects/OG-Component/tests/unit/com/opengamma/component/ComponentTest.java | [PLAT-1658] Placeholder test for components | |
Java | apache-2.0 | error: pathspec 'addressbook-web-tests/src/test/java/ru/stqa/pft/addressbook/appmanager/GroupHelper.java' did not match any file(s) known to git
| d656a07b20b5f14d96cae5a52c3e0c8f2bc64291 | 1 | kxbxzx/java_pft | package ru.stqa.pft.addressbook.appmanager;
import org.openqa.selenium.By;
import org.openqa.selenium.firefox.FirefoxDriver;
import ru.stqa.pft.addressbook.model.GroupData;
/**
* Created by Alexander on 22.03.2017.
*/
public class GroupHelper extends HelperBase {
public GroupHelper(FirefoxDriver wd) {
... | addressbook-web-tests/src/test/java/ru/stqa/pft/addressbook/appmanager/GroupHelper.java | GroupHelper
| addressbook-web-tests/src/test/java/ru/stqa/pft/addressbook/appmanager/GroupHelper.java | GroupHelper | |
Java | apache-2.0 | error: pathspec 'core/src/main/java/org/axonframework/serialization/upcasting/ContextAwareSingleEntryUpcaster.java' did not match any file(s) known to git
| 29a3d9956b84ab38829e031eda381faf92714a10 | 1 | krosenvold/AxonFramework,AxonFramework/AxonFramework | package org.axonframework.serialization.upcasting;
import static java.util.Objects.requireNonNull;
import java.util.stream.Stream;
/**
* Abstract implementation of an {@link Upcaster} that eases the common process of upcasting one intermediate
* representation to another representation by applying a simple mapping... | core/src/main/java/org/axonframework/serialization/upcasting/ContextAwareSingleEntryUpcaster.java | Introduce ContextAwareSingleEntryUpcaster
Introduce ContextAwareSingleEntryUpcaster, resembling the regular
SingleEntryUpcaster class, but with an added buildContext() function.
The context C created by the buildContext() is fed to the canUpcast()
and doUpcast() functions to be used to perform the 'can upcast' check o... | core/src/main/java/org/axonframework/serialization/upcasting/ContextAwareSingleEntryUpcaster.java | Introduce ContextAwareSingleEntryUpcaster | |
Java | apache-2.0 | error: pathspec 'eu.scasefp7.eclipse.services.nlp.provider/src/eu/scasefp7/eclipse/services/nlp/provider/config/NLPServiceConfigurator.java' did not match any file(s) known to git
| c9e1fbbd5befe23853339c4a7954205bf7d0fd27 | 1 | s-case/s-case-core,LeonoraG/s-case-core,LeonoraG/s-case-core | /**
* Copyright 2015 S-CASE Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agr... | eu.scasefp7.eclipse.services.nlp.provider/src/eu/scasefp7/eclipse/services/nlp/provider/config/NLPServiceConfigurator.java | Add service configuration
| eu.scasefp7.eclipse.services.nlp.provider/src/eu/scasefp7/eclipse/services/nlp/provider/config/NLPServiceConfigurator.java | Add service configuration | |
Java | bsd-2-clause | d3f97b3c398a9055e90dd3078e4b071b7ce35010 | 0 | nikgoodley-ibboost/jslint4java,mmayorivera/jslint4java,llwanghong/jslint4java,mmayorivera/jslint4java,rsingla/jslint4java,mmayorivera/jslint4java,llwanghong/jslint4java,mmayorivera/jslint4java,rsingla/jslint4java,nikgoodley-ibboost/jslint4java,llwanghong/jslint4java,rsingla/jslint4java,llwanghong/jslint4java,rsingla/js... | package com.googlecode.jslint4java;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.Reader;
import java.nio.charset.Charset;
import java.util.concurrent.TimeUnit;
import org.mozilla.javascript.Context;
imp... | jslint4java/src/main/java/com/googlecode/jslint4java/JSLintBuilder.java | package com.googlecode.jslint4java;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.Reader;
import java.nio.charset.Charset;
import java.util.concurrent.TimeUnit;
import org.mozilla.javascript.Context;
imp... | Seal standard objects again. | jslint4java/src/main/java/com/googlecode/jslint4java/JSLintBuilder.java | Seal standard objects again. | |
Java | bsd-3-clause | a5e1693320efd47fce7f5e9fbac72869ff55e5ab | 0 | TheTypoMaster/chromium-crosswalk,chuan9/chromium-crosswalk,Pluto-tv/chromium-crosswalk,hgl888/chromium-crosswalk,TheTypoMaster/chromium-crosswalk,TheTypoMaster/chromium-crosswalk,Chilledheart/chromium,axinging/chromium-crosswalk,TheTypoMaster/chromium-crosswalk,Chilledheart/chromium,Pluto-tv/chromium-crosswalk,chuan9/c... | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.chrome.browser.compositor.layouts.phone;
import android.content.Context;
import android.graphics.Rect;
import android.graphics.RectF... | chrome/android/java_staging/src/org/chromium/chrome/browser/compositor/layouts/phone/StackLayout.java | // Copyright 2015 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package org.chromium.chrome.browser.compositor.layouts.phone;
import android.content.Context;
import android.graphics.Rect;
import android.graphics.RectF... | Force the close all tabs animation to finish before creating a new tab
If the close all tabs animation is still in progress when a new tab is created,
we end up with 0 tabs and a (mostly) blank screen. Forcing the animation to
finish before creating the new tab leaves TabModelBase in a good state for
creating the new ... | chrome/android/java_staging/src/org/chromium/chrome/browser/compositor/layouts/phone/StackLayout.java | Force the close all tabs animation to finish before creating a new tab | |
Java | bsd-3-clause | error: pathspec 'gws-core/src/main/java/au/gov/ga/geodesy/domain/service/SiteLogReceivedNotificationService.java' did not match any file(s) known to git
| 6481de899956e7909313ef4943e95e092471a946 | 1 | GeoscienceAustralia/Geodesy-Web-Services,GeoscienceAustralia/Geodesy-Web-Services,GeoscienceAustralia/geodesy-domain-model,GeoscienceAustralia/Geodesy-Web-Services,GeoscienceAustralia/geodesy-domain-model,GeoscienceAustralia/Geodesy-Web-Services | package au.gov.ga.geodesy.domain.service;
import org.springframework.stereotype.Component;
import au.gov.ga.geodesy.domain.model.event.Event;
import au.gov.ga.geodesy.domain.model.event.SiteLogReceived;
@Component
public class SiteLogReceivedNotificationService extends EventNotificationService<SiteLogReceived> {
... | gws-core/src/main/java/au/gov/ga/geodesy/domain/service/SiteLogReceivedNotificationService.java | Add site log received notification service
| gws-core/src/main/java/au/gov/ga/geodesy/domain/service/SiteLogReceivedNotificationService.java | Add site log received notification service | |
Java | mit | error: pathspec 'dcserver.java' did not match any file(s) known to git
| 41486870903c22215f7f6f635e6b1424c17a47de | 1 | dragonwolverines/SocketProgramming | import java.io.*;
import java.net.*;
public class dcserver
{
public static void main(String[] args) throws Exception
{
//create server socket
ServerSocket sersock = new ServerSocket(3000);
System.out.println("DeCentralized Server ready for communication");
//Make the server wait till a client accepts connection
Socke... | dcserver.java | Decentralized first server - MATH | dcserver.java | Decentralized first server - MATH | |
Java | mit | error: pathspec 'java/Test.java' did not match any file(s) known to git
| 718a6472bcdf5f9add36349054a6c83f4e966b67 | 1 | antlr/grammars-v4,antlr/grammars-v4,antlr/grammars-v4,antlr/grammars-v4,antlr/grammars-v4,antlr/grammars-v4,antlr/grammars-v4,antlr/grammars-v4,antlr/grammars-v4,antlr/grammars-v4,antlr/grammars-v4,antlr/grammars-v4 | /*
[The "BSD license"]
Copyright (c) 2013 Terence Parr
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this li... | java/Test.java | add Test rig for Java
| java/Test.java | add Test rig for Java | |
Java | mit | error: pathspec 'MainActivity.java' did not match any file(s) known to git
| ea074bbb9fefd9154c01111f232bdb7745dda301 | 1 | cdbkr/AndroidFacebookCustomStory | import java.util.ArrayList;
import java.util.List;
import com.facebook.Session;
import com.facebook.SessionState;
import com.facebook.UiLifecycleHelper;
import com.facebook.model.GraphObject;
import com.facebook.model.OpenGraphAction;
import com.facebook.model.OpenGraphObject;
import com.facebook.widget.FacebookDialog... | MainActivity.java | Create MainActivity.java
A simple raw activity made to post a custom story to facebook. | MainActivity.java | Create MainActivity.java | |
Java | mit | error: pathspec 'src/menu/Star.java' did not match any file(s) known to git
| 58e2b7f45fcb343d17dfd4b21160fed3da492418 | 1 | Hypersonic/Starlorn | import org.lwjgl.opengl.GL11;
public class Star extends Rectangle {
private double _size;
private double _svel;
private boolean _show;
private int _color;
public Star(double displayx, double displayy, double s) {
super(Math.random() * (displayx - s + 1), Math.random()
* (displayy - s + 1), s, s);
_show... | src/menu/Star.java | Create Star.java | src/menu/Star.java | Create Star.java | |
Java | mit | error: pathspec 'IdealDelay/IdealDelay.java' did not match any file(s) known to git
| 556c04d23562006906bc0cd361a707666dd9eb33 | 1 | dekoperez/ArtificialIntelligence,dekoperez/ArtificialIntelligence | /**
Program: Ideal Delay
Author: André Perez
Contact: andre_mperez@hotmail.com
Last Modified: 10 October 2015
*/
import java.util.Scanner;
import java.io.PrintWriter;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.FileNotFoundException;
public class IdealDelay {... | IdealDelay/IdealDelay.java | Create IdealDelay.java | IdealDelay/IdealDelay.java | Create IdealDelay.java | |
Java | mit | error: pathspec 'src/test/ActionCreator.java' did not match any file(s) known to git
| 4c944d1f56c63011ef62855544ddcbdcf727346f | 1 | argonium/beetle-cli | package test;
import java.util.GregorianCalendar;
import io.miti.beetle.util.Faker;
import io.miti.beetle.util.FileBuilder;
public class ActionCreator
{
public static long getDate(final int min, final int max) {
GregorianCalendar gc = new GregorianCalendar();
int year = randBetween(min, max);
gc.set(g... | src/test/ActionCreator.java | Test data generator. | src/test/ActionCreator.java | Test data generator. | |
Java | mit | error: pathspec 'src/com/neco4j/graph/IOperations.java' did not match any file(s) known to git
| f036bf9ac98991aa66c4e3791046c2f7be11dd76 | 1 | necatikartal/leader-election-in-wireless-environments | package com.neco4j.graph;
import java.io.IOException;
/**
* Operations interface
* @author Necati Kartal
*/
public interface IOperations {
/**
* Initialize the graph
* @return graph
*/
public Graph initialGraph();
/**
* Build graph by using graph capacity and growth percentage
* @param graphCapacity... | src/com/neco4j/graph/IOperations.java | operations interface
| src/com/neco4j/graph/IOperations.java | operations interface | |
Java | mit | error: pathspec 'src/test/java/com/autotest/HttpTest.java' did not match any file(s) known to git
| 4e07c1da5aeb827ee8354f1627e90ad6146b49e4 | 1 | ychaoyang/autotest | package com.autotest;
import com.autotest.annotation.AutoTest;
import org.springframework.http.ResponseEntity;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
import org.springframework.web.client.RestTemplate;
/**
* Created by yu on 17/12/26.
*/
public class Http... | src/test/java/com/autotest/HttpTest.java | 添加接口测试用例
| src/test/java/com/autotest/HttpTest.java | 添加接口测试用例 | |
Java | mit | error: pathspec 'Code08/Java/MultipleInheritanceIssue.java' did not match any file(s) known to git
| 60fd8c1b18fb3ca2b9cee255e1dae4965936e79d | 1 | wolfdale/Spaghetti-code,wolfdale/Spaghetti-code,wolfdale/Spaghetti-code,wolfdale/Spaghetti-code,wolfdale/Spaghetti-code,wolfdale/Spaghetti-code,wolfdale/Spaghetti-code,wolfdale/Spaghetti-code,wolfdale/Spaghetti-code | interface X1{
public default void M1(){
System.out.println("X1M1");
};
}
interface X2{
public default void M1(){
System.out.println("X2M2");
}
}
class Runner implements X1,X2{
//Multiple inheritance problem
//Here it is must to redefine M1 method for compilation
public void M1(){
System.out.println("Runne... | Code08/Java/MultipleInheritanceIssue.java | Create MultipleInheritanceIssue.java | Code08/Java/MultipleInheritanceIssue.java | Create MultipleInheritanceIssue.java | |
Java | mit | error: pathspec 'src/pp/arithmetic/offer/_07_buildTree.java' did not match any file(s) known to git
| 73c680b19c3d2e5c5cc8d3001389021bf42b2caf | 1 | pphdsny/ArithmeticTest | package pp.arithmetic.offer;
import pp.arithmetic.Util;
import pp.arithmetic.model.TreeNode;
/**
* Created by wangpeng on 2020-08-04.
*
* 剑指 Offer 07. 重建二叉树
*
* 输入某二叉树的前序遍历和中序遍历的结果,请重建该二叉树。假设输入的前序遍历和中序遍历的结果中都不含重复的数字。
*
*
*
* 例如,给出
*
* 前序遍历 preorder = [3,9,20,15,7]
* 中序遍历 inorder = [9,3,15,20,7]
* 返回如下的... | src/pp/arithmetic/offer/_07_buildTree.java | feat(MEDIUM): add _07_buildTree
| src/pp/arithmetic/offer/_07_buildTree.java | feat(MEDIUM): add _07_buildTree | |
Java | mit | error: pathspec 'main/src/com/peter/codewars/PaginationHelper.java' did not match any file(s) known to git
| 7caff46c3bf65f5d9410a84bca609ea961a46fcf | 1 | Peter-Liang/CodeWars-Java | package com.peter.codewars;
/**
* PaginationHelper
* http://www.codewars.com/kata/515bb423de843ea99400000a/train/java
*/
import java.util.List;
public class PaginationHelper<I> {
private final List<I> collection;
private final int itemsPerPage;
/**
* The constructor takes in an array of items an... | main/src/com/peter/codewars/PaginationHelper.java | Solved the kata 'PaginationHelper'.
http://www.codewars.com/kata/515bb423de843ea99400000a/solutions/java
| main/src/com/peter/codewars/PaginationHelper.java | Solved the kata 'PaginationHelper'. http://www.codewars.com/kata/515bb423de843ea99400000a/solutions/java | |
Java | mit | error: pathspec 'src/com/carloan/integration/database/SqlConnector.java' did not match any file(s) known to git
| e71a71788c3752a3b6d59876072533a99a1ea491 | 1 | Spronghi/software-engineering | package com.carloan.integration.database;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
class SqlConnector implements Connector{
private static String DRIVER_CLASS_NAME = "org.gjt.mm.mysql.Driver";
private final stat... | src/com/carloan/integration/database/SqlConnector.java | Connector to mysql database
| src/com/carloan/integration/database/SqlConnector.java | Connector to mysql database | |
Java | mit | error: pathspec 'src/main/java/fi/csc/microarray/webstart/JnlpServlet.java' did not match any file(s) known to git
| ce286870ac1bf3389a45f302c698aba1354fb8b9 | 1 | chipster/chipster,chipster/chipster,chipster/chipster,chipster/chipster,chipster/chipster,chipster/chipster,chipster/chipster,chipster/chipster,chipster/chipster,chipster/chipster | package fi.csc.microarray.webstart;
import java.io.File;
import java.io.IOException;
import java.io.PrintWriter;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.xml.parsers.ParserConfigurationException;
import org.w3c.do... | src/main/java/fi/csc/microarray/webstart/JnlpServlet.java | Fix backport | src/main/java/fi/csc/microarray/webstart/JnlpServlet.java | Fix backport | |
Java | mit | error: pathspec 'projects/os_p2/src/com/egurnee/school/os/p2/AssemblyLine.java' did not match any file(s) known to git
| 2fece27ce6c367faa2fe88ea1c1eb89d52710723 | 1 | pegurnee/2015-02-592,pegurnee/2015-02-592,pegurnee/2015-02-592 | package com.egurnee.school.os.p2;
public class AssemblyLine {
private final static int DEFAULT_NUMBER_OF_WIDGETS = 24;
private final static int DEFAULT_NUMBER_OF_WORKERS = 4;
private final int numberOfWidgetsDesired;
private final AssemblyLineSegment[] segments;
private final WidgetWorker[] workers;
public Ass... | projects/os_p2/src/com/egurnee/school/os/p2/AssemblyLine.java | added assemblyline constructor
| projects/os_p2/src/com/egurnee/school/os/p2/AssemblyLine.java | added assemblyline constructor | |
Java | mit | error: pathspec 'src/com/coderevisited/coding/matrix/MaximumSizeSquareSubMatrix.java' did not match any file(s) known to git
| 5450c7ad80cba956bd4ddeeb740e546d250a3d0b | 1 | sureshsajja/CodingProblems,sureshsajja/CodeRevisited | package com.coderevisited.coding.matrix;
public class MaximumSizeSquareSubMatrix
{
public static void main(String[] args)
{
int N = 6, M = 5;
int[][] matrix = new int[][]{{0, 1, 1, 0, 1},
{1, 1, 0, 1, 0},
{0, 1, 1, 1, 0},
{1, 1, 1, 1, 0},
... | src/com/coderevisited/coding/matrix/MaximumSizeSquareSubMatrix.java | Maximum Size square sub matrix
| src/com/coderevisited/coding/matrix/MaximumSizeSquareSubMatrix.java | Maximum Size square sub matrix | |
Java | mit | error: pathspec 'src/net/maizegenetics/pal/popgen/KnownParentMinorWindowImputation.java' did not match any file(s) known to git
| e848265a8565425c63b397aa6a5bd9c3fbd5b002 | 1 | yzhnasa/TASSEL-iRods,yzhnasa/TASSEL-iRods,yzhnasa/TASSEL-iRods,yzhnasa/TASSEL-iRods | /*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package net.maizegenetics.pal.popgen;
import cern.jet.random.Binomial;
import edu.cornell.lassp.houle.RngPack.RandomJava;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.uti... | src/net/maizegenetics/pal/popgen/KnownParentMinorWindowImputation.java | Beginnings of class for known parent imputation | src/net/maizegenetics/pal/popgen/KnownParentMinorWindowImputation.java | Beginnings of class for known parent imputation | |
Java | mit | error: pathspec 'library/src/main/java/io/nlopez/smartadapters/views/BindableViewLayout.java' did not match any file(s) known to git
| 514de99a5916eb3f77913f45507b99893d691bdb | 1 | mrmans0n/smart-adapters | package io.nlopez.smartadapters.views;
import android.annotation.TargetApi;
import android.content.Context;
import android.os.Build;
import android.support.annotation.LayoutRes;
import android.support.annotation.Nullable;
import android.util.AttributeSet;
import android.view.View;
import android.widget.RelativeLayout;... | library/src/main/java/io/nlopez/smartadapters/views/BindableViewLayout.java | Added BindableViewLayout for the adventurers
| library/src/main/java/io/nlopez/smartadapters/views/BindableViewLayout.java | Added BindableViewLayout for the adventurers | |
Java | epl-1.0 | ff156234fa6452c2bc5a4a27616e7f9d404cbb70 | 0 | StBurcher/hawkbit,StBurcher/hawkbit,stormc/hawkbit,bsinno/hawkbit,eclipse/hawkbit,stormc/hawkbit,StBurcher/hawkbit,eclipse/hawkbit,eclipse/hawkbit,bsinno/hawkbit,bsinno/hawkbit,eclipse/hawkbit,stormc/hawkbit | /**
* Copyright (c) 2015 Bosch Software Innovations GmbH and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
... | hawkbit-dmf-amqp/src/main/java/org/eclipse/hawkbit/amqp/AmqpProperties.java | /**
* Copyright (c) 2015 Bosch Software Innovations GmbH and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
... | Annotation component must be removed because bean will otherwise
registered twice because of EnableAutoConfiguration in the
AmqpConfiguration
Signed-off-by: Michael Hirsch <431b6743460ecdf6a4cecef8a9f6da99a92113c9@bosch-si.com> | hawkbit-dmf-amqp/src/main/java/org/eclipse/hawkbit/amqp/AmqpProperties.java | Annotation component must be removed because bean will otherwise registered twice because of EnableAutoConfiguration in the AmqpConfiguration | |
Java | epl-1.0 | error: pathspec 'JavaSE/day01/JavaString.java' did not match any file(s) known to git
| 830234bb503dc308bebbc844e63dc7c15938dac8 | 1 | planetarianZero/JavaStudy | package day01;
/**
* String类常用方法
*
* int length()
* 获取字符串长度,无论中文还是英文都是一个长度,返回字符串下标,若返回-1表示没有该字符串
*
* int indexOf(String str)
* 查找给定字符串在当前字符串中的位置,该方法有几个重载方法
*
* int lastIndexOf(String str)
* 查找给定字符串在当前字符串中最后出现的位置
*
* String substring(int start,int end)
* 截取字符串,从指定位置(start)开始,到指定位置(end)结束,截取的字符串包含开始位置,不... | JavaSE/day01/JavaString.java | Create JavaString.java | JavaSE/day01/JavaString.java | Create JavaString.java | |
Java | epl-1.0 | error: pathspec 'src/main/java/SimpleMain.java' did not match any file(s) known to git
| 003305f3b74e316fc8ba48f5116e23941592c6a4 | 1 | dynamid/golo-lang-insa-citilab-historical-reference,franckverrot/golo-lang,jeffmaury/golo-lang,Mogztter/golo-lang,jeffmaury/golo-lang,smarr/golo-lang,titimoby/golo-lang,franckverrot/golo-lang,dynamid/golo-lang-insa-citilab-historical-reference,smarr/golo-lang,mojavelinux/golo-lang,titimoby/golo-lang,jeffmaury/golo-lang... | import sample.parser.*;
public class SimpleMain {
public static void main(String... args) throws ParseException {
Simple parser = new Simple(System.in);
SimpleNode start = parser.Start();
start.dump("# ");
start.childrenAccept(new SimpleVisitor() {
@Override
public Object visit(SimpleNod... | src/main/java/SimpleMain.java | Testing with a SimpleMain class.
This class does nothing but checks that the generated code
is indeed usable for our needs.
| src/main/java/SimpleMain.java | Testing with a SimpleMain class. | |
Java | mpl-2.0 | 6da65fc8773f2a78c6e00e835b26685f80c075b3 | 0 | Pilarbrist/rhino,lv7777/egit_test,Angelfirenze/rhino,lv7777/egit_test,ashwinrayaprolu1984/rhino,tntim96/rhino-jscover-repackaged,AlexTrotsenko/rhino,InstantWebP2P/rhino-android,Pilarbrist/rhino,tntim96/rhino-apigee,sainaen/rhino,swannodette/rhino,AlexTrotsenko/rhino,Angelfirenze/rhino,sam/htmlunit-rhino-fork,sam/htmlun... | /* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/N... | src/org/mozilla/javascript/JavaMembers.java | /* -*- Mode: java; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
*
* The contents of this file are subject to the Netscape Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.mozilla.org/N... | Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=214608 :
The reason for the regression is that now JavaMembers.lookupClass never
attempts to reflect package-private classes. But this is wrong since even with
SecirutyManager installed JVM allows to call Class.getMethos()( and returns
list of all public methods in th... | src/org/mozilla/javascript/JavaMembers.java | Fixing http://bugzilla.mozilla.org/show_bug.cgi?id=214608 : | |
Java | mpl-2.0 | error: pathspec 'qadevOOo/tests/java/ifc/util/_XNumberFormatter.java' did not match any file(s) known to git
| a9d5c3c572488477676766b3c10742cfeaed9f53 | 1 | JurassicWordExcel/core,JurassicWordExcel/core,JurassicWordExcel/core,JurassicWordExcel/core,JurassicWordExcel/core,JurassicWordExcel/core,JurassicWordExcel/core,JurassicWordExcel/core,JurassicWordExcel/core,JurassicWordExcel/core | /*************************************************************************
*
* $RCSfile: _XNumberFormatter.java,v $
*
* $Revision: 1.2 $
*
* last change:$Date: 2003-09-08 11:31:02 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - ... | qadevOOo/tests/java/ifc/util/_XNumberFormatter.java | INTEGRATION: CWS qadev11 (1.1.2); FILE ADDED
2003/09/03 14:56:54 sw 1.1.2.1: #112049#
| qadevOOo/tests/java/ifc/util/_XNumberFormatter.java | INTEGRATION: CWS qadev11 (1.1.2); FILE ADDED 2003/09/03 14:56:54 sw 1.1.2.1: #112049# | |
Java | mpl-2.0 | error: pathspec 'src/main/java/org/opengsi/comsci/exceptions/MismatchedSizeException.java' did not match any file(s) known to git
| 750e1f4d7904007e02502c7161a362d67823e6f1 | 1 | opengsi/java | /*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/.
*
* Copyright (C) 2014, youngmook.
*/
package org.opengsi.comsci.exceptions;
/**
*
* @author you... | src/main/java/org/opengsi/comsci/exceptions/MismatchedSizeException.java | Add MismatchedSizeException Class
1. Exception Type for mismatched size
2. package name : org.opengsi.comsci.exceptions
| src/main/java/org/opengsi/comsci/exceptions/MismatchedSizeException.java | Add MismatchedSizeException Class | |
Java | agpl-3.0 | 3a5852efbfe8918b12a2fe55b3ec813dfb99570d | 0 | enviroCar/enviroCar-server,gotodeepak1122/enviroCar-server,Drifftr/enviroCar-server,enviroCar/enviroCar-server,autermann/enviroCar-server,enviroCar/enviroCar-server,autermann/enviroCar-server,autermann/enviroCar-server,Drifftr/enviroCar-server,gotodeepak1122/enviroCar-server | /**
* Copyright (C) 2013 Christian Autermann, Jan Alexander Wirwahn,
* Arne De Wall, Dustin Demuth, Saqib Rasheed
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundati... | core/src/main/java/io/car/server/core/Validator.java | /**
* Copyright (C) 2013 Christian Autermann, Jan Alexander Wirwahn,
* Arne De Wall, Dustin Demuth, Saqib Rasheed
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundati... | different validation method for create and update
| core/src/main/java/io/car/server/core/Validator.java | different validation method for create and update | |
Java | agpl-3.0 | error: pathspec 'src/main/java/org/kuali/kra/bo/KraUserRoles.java' did not match any file(s) known to git
| 77213dff41a121aa723606397839010bf1447e1c | 1 | geothomasp/kcmit,ColostateResearchServices/kc,jwillia/kc-old1,kuali/kc,kuali/kc,iu-uits-es/kc,UniversityOfHawaiiORS/kc,jwillia/kc-old1,UniversityOfHawaiiORS/kc,geothomasp/kcmit,geothomasp/kcmit,jwillia/kc-old1,ColostateResearchServices/kc,mukadder/kc,kuali/kc,jwillia/kc-old1,geothomasp/kcmit,iu-uits-es/kc,mukadder/kc,C... | package org.kuali.kra.bo;
import java.util.LinkedHashMap;
public class KraUserRoles extends KraPersistableBusinessObjectBase {
private Integer roleId;
private String unitNumber;
private String userId;
private Boolean descendFlag;
public Integer getRoleId() {
return roleId;
}
public void setRoleId(Integer r... | src/main/java/org/kuali/kra/bo/KraUserRoles.java | bo for user roles table - kra_user_roles
| src/main/java/org/kuali/kra/bo/KraUserRoles.java | bo for user roles table - kra_user_roles | |
Java | agpl-3.0 | error: pathspec 'opennms-webapp/src/main/java/org/opennms/web/svclayer/ProgressMonitor.java' did not match any file(s) known to git
| 8da957c36eb5c45355ff546a3cf2ce7c07fe9d8c | 1 | roskens/opennms-pre-github,tdefilip/opennms,roskens/opennms-pre-github,aihua/opennms,rdkgit/opennms,rdkgit/opennms,aihua/opennms,roskens/opennms-pre-github,roskens/opennms-pre-github,roskens/opennms-pre-github,roskens/opennms-pre-github,rdkgit/opennms,aihua/opennms,roskens/opennms-pre-github,rdkgit/opennms,roskens/open... | package org.opennms.web.svclayer;
public class ProgressMonitor {
private int m_phaseCount = 1;
private int m_phase = 0;
private String m_phaseLabel = "Loading";
private Object m_result = null;
private Exception m_exception = null;
public int getPhaseCount() {
return m_phaseCount;
}
public void setPhaseC... | opennms-webapp/src/main/java/org/opennms/web/svclayer/ProgressMonitor.java | Add progress bar to loading of Surveillence page
| opennms-webapp/src/main/java/org/opennms/web/svclayer/ProgressMonitor.java | Add progress bar to loading of Surveillence page | |
Java | agpl-3.0 | error: pathspec 'inherit-service/inherit-service-activiti-engine/src/test/java/org/inheritsource/test/service/processengine/ActivitiServiceEngineTest.java' did not match any file(s) known to git
| fd7ba24b2da1abc52d65fe4368226880d9ddf60a | 1 | malmostad/eservices-platform,malmostad/eservices-platform,malmostad/eservices-platform,malmostad/eservices-platform | /*
* Process Aware Web Application Platform
*
* Copyright (C) 2011-2013 Inherit S AB
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, ... | inherit-service/inherit-service-activiti-engine/src/test/java/org/inheritsource/test/service/processengine/ActivitiServiceEngineTest.java | added junit testing
| inherit-service/inherit-service-activiti-engine/src/test/java/org/inheritsource/test/service/processengine/ActivitiServiceEngineTest.java | added junit testing | |
Java | lgpl-2.1 | f9bc7352d56abf414be551889fc49fd9a80974c4 | 0 | trejkaz/swingx,trejkaz/swingx,krichter722/swingx,krichter722/swingx,tmyroadctfig/swingx | /*
* $Id$
*
* Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle,
* Santa Clara, California 95054, U.S.A. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Founda... | src/java/org/jdesktop/swingx/JXMultiThumbSlider.java | /*
* $Id$
*
* Copyright 2004 Sun Microsystems, Inc., 4150 Network Circle,
* Santa Clara, California 95054, U.S.A. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Founda... | fixed an NPE
git-svn-id: 9c6ef37dfd7eaa5a3748af7ba0f8d9e7b67c2a4c@1261 1312f61e-266d-0410-97fa-c3b71232c9ac
| src/java/org/jdesktop/swingx/JXMultiThumbSlider.java | fixed an NPE | |
Java | lgpl-2.1 | error: pathspec 'skyve-ee/src/skyve/modules/admin/Snapshot/SnapshotFactory.java' did not match any file(s) known to git
| 32adb65beae1a9824aa2abf7095dca4dd39397f6 | 1 | skyvers/skyve,skyvers/skyve,skyvers/skyve,skyvers/wildcat,skyvers/skyve,skyvers/wildcat,skyvers/skyve,skyvers/wildcat,skyvers/skyve,skyvers/wildcat,skyvers/skyve,skyvers/wildcat | package modules.admin.Snapshot;
import org.skyve.util.DataBuilder;
import org.skyve.util.test.SkyveFixture;
import org.skyve.util.test.SkyveFixture.FixtureType;
import modules.admin.domain.Snapshot;
public class SnapshotFactory {
@SkyveFixture(types = FixtureType.crud)
public Snapshot crudInstance() {
Snapshot ... | skyve-ee/src/skyve/modules/admin/Snapshot/SnapshotFactory.java | Added SnapshotFactory to fix errors with dynamic domain values in automated unit tests
| skyve-ee/src/skyve/modules/admin/Snapshot/SnapshotFactory.java | Added SnapshotFactory to fix errors with dynamic domain values in automated unit tests | |
Java | lgpl-2.1 | error: pathspec 'sipXconfig/web/src/org/sipfoundry/sipxconfig/site/permission/PermissionConverter.java' did not match any file(s) known to git
| dcbd8dd2edeeccf3f4f5c14c858590462451158f | 1 | sipXtapi/sipXtapi-svn-mirror,sipXtapi/sipXtapi-svn-mirror,sipXtapi/sipXtapi-svn-mirror,sipXtapi/sipXtapi-svn-mirror,sipXtapi/sipXtapi-svn-mirror,sipXtapi/sipXtapi-svn-mirror,sipXtapi/sipXtapi-svn-mirror | /*
*
*
* Copyright (C) 2006 SIPfoundry Inc.
* Licensed by SIPfoundry under the LGPL license.
*
* Copyright (C) 2006 Pingtel Corp.
* Licensed to SIPfoundry under a Contributor Agreement.
*
* $
*/
package org.sipfoundry.sipxconfig.site.permission;
import org.apache.tapestry.components.IPrimaryKeyConverter;... | sipXconfig/web/src/org/sipfoundry/sipxconfig/site/permission/PermissionConverter.java | XCF-1121 missing file: permission UI CRUD
git-svn-id: f26ccc5efe72c2bd8e1c40f599fe313f2692e4de@7256 a612230a-c5fa-0310-af8b-88eea846685b
| sipXconfig/web/src/org/sipfoundry/sipxconfig/site/permission/PermissionConverter.java | XCF-1121 missing file: permission UI CRUD | |
Java | unlicense | error: pathspec 'JAVA/UniquePalindromes.java' did not match any file(s) known to git
| 3aa0467f43848ab4c2b17b6b7d0f29927dea1b5c | 1 | lemming-life/Snippets,lemming-life/Snippets,lemming-life/Snippets,lemming-life/Snippets,lemming-life/Snippets,lemming-life/Snippets,lemming-life/Snippets,lemming-life/Snippets,lemming-life/Snippets |
// Author: http://lemming.life
// Language: Java
// Description: Given a string, identifies and counts the unique number of palindromes in the string's substrings.
// Build
// javac UniquePalindromes.java
// Run:
// java UniquePalindromes
// Example input: aabaa
// All strings:
// a, aa, ab, aab, aaba, aabaa
// a, ... | JAVA/UniquePalindromes.java | Added Java UniquePalindromes.java
| JAVA/UniquePalindromes.java | Added Java UniquePalindromes.java | |
Java | unlicense | error: pathspec 'src/com/diguage/books/thinking/io/DirList2.java' did not match any file(s) known to git
| cb1e192401715df0bc8e71ef50cd28b18aeddf1d | 1 | diguage/ThinkingInJava | package com.diguage.books.thinking.io;
import java.io.File;
import java.io.FilenameFilter;
import java.util.Arrays;
import java.util.regex.Pattern;
/**
* 使用内部类来完成文件名称的过滤
* <p/>
* Coder:D瓜哥,http://www.diguage.com/
* <p/>
* Date: 2014-07-09 15:25
*/
public class DirList2 {
public static FilenameFilter filter(... | src/com/diguage/books/thinking/io/DirList2.java | io.DirLIst2
| src/com/diguage/books/thinking/io/DirList2.java | io.DirLIst2 | |
Java | apache-2.0 | 3cf8db82f5807bc773f6b1b2ed92420202735e4c | 0 | mglukhikh/intellij-community,mglukhikh/intellij-community,xfournet/intellij-community,mglukhikh/intellij-community,ibinti/intellij-community,xfournet/intellij-community,FHannes/intellij-community,youdonghai/intellij-community,ThiagoGarciaAlves/intellij-community,vvv1559/intellij-community,allotria/intellij-community,as... | /*
* Copyright 2000-2016 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | platform/platform-impl/src/com/intellij/ide/customize/CustomizePluginsStepPanel.java | /*
* Copyright 2000-2016 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | cleanup
| platform/platform-impl/src/com/intellij/ide/customize/CustomizePluginsStepPanel.java | cleanup | |
Java | apache-2.0 | 895de81029c76ec602d4c16dce467d77b0f78f41 | 0 | mwringe/hawkular-metrics,spadgett/hawkular-metrics,jshaughn/hawkular-metrics,spadgett/hawkular-metrics,jotak/hawkular-metrics,burmanm/hawkular-metrics,mwringe/hawkular-metrics,pilhuhn/rhq-metrics,ppalaga/hawkular-metrics,jotak/hawkular-metrics,pilhuhn/rhq-metrics,ppalaga/hawkular-metrics,140293816/Hawkular-fork,spadget... | /*
* Copyright 2014-2015 Red Hat, Inc. and/or its affiliates
* and other contributors as indicated by the @author tags.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://w... | api/metrics-api-jaxrs/src/main/java/org/hawkular/metrics/api/jaxrs/MetricHandler.java | /*
* Copyright 2014-2015 Red Hat, Inc. and/or its affiliates
* and other contributors as indicated by the @author tags.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://w... | First, a Javadoc update and minor code changes
| api/metrics-api-jaxrs/src/main/java/org/hawkular/metrics/api/jaxrs/MetricHandler.java | First, a Javadoc update and minor code changes | |
Java | apache-2.0 | a695533a24f634f0652da11836a7359c26bc8a15 | 0 | FHannes/intellij-community,signed/intellij-community,semonte/intellij-community,semonte/intellij-community,FHannes/intellij-community,da1z/intellij-community,semonte/intellij-community,ThiagoGarciaAlves/intellij-community,ibinti/intellij-community,mglukhikh/intellij-community,apixandru/intellij-community,da1z/intellij-... | package com.jetbrains.jsonSchema;
import com.intellij.openapi.application.ApplicationManager;
import com.intellij.openapi.components.*;
import com.intellij.openapi.fileTypes.ex.FileTypeManagerEx;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.vfs.VirtualFile;
import com.intellij.util.xmlb.ann... | json/src/com/jetbrains/jsonSchema/JsonSchemaMappingsProjectConfiguration.java | package com.jetbrains.jsonSchema;
import com.intellij.openapi.application.ApplicationManager;
import com.intellij.openapi.components.*;
import com.intellij.openapi.fileTypes.ex.FileTypeManagerEx;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.vfs.VirtualFile;
import com.intellij.util.xmlb.ann... | json schema listener, do not process events after the project is closed
| json/src/com/jetbrains/jsonSchema/JsonSchemaMappingsProjectConfiguration.java | json schema listener, do not process events after the project is closed | |
Java | apache-2.0 | d963359df4c2be1304febc5d27bc83bc1dbbc358 | 0 | vvv1559/intellij-community,TangHao1987/intellij-community,izonder/intellij-community,ftomassetti/intellij-community,samthor/intellij-community,semonte/intellij-community,michaelgallacher/intellij-community,nicolargo/intellij-community,holmes/intellij-community,ryano144/intellij-community,fitermay/intellij-community,sun... | /*
* Copyright 2000-2012 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | platform/platform-impl/src/com/intellij/openapi/components/impl/stores/BaseFileConfigurableStoreImpl.java | /*
* Copyright 2000-2012 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | cleanup
| platform/platform-impl/src/com/intellij/openapi/components/impl/stores/BaseFileConfigurableStoreImpl.java | cleanup | |
Java | apache-2.0 | 416f7bb83b38dda5bb6e7f8b5594458b1ae3a6bd | 0 | jgaupp/arx,kbabioch/arx,TheRealRasu/arx,bitraten/arx,COWYARD/arx,jgaupp/arx,fstahnke/arx,RaffaelBild/arx,kbabioch/arx,COWYARD/arx,tijanat/arx,bitraten/arx,kentoa/arx,kentoa/arx,arx-deidentifier/arx,TheRealRasu/arx,fstahnke/arx,arx-deidentifier/arx,tijanat/arx,RaffaelBild/arx | /*
* ARX: Powerful Data Anonymization
* Copyright (C) 2012 - 2014 Florian Kohlmayer, Fabian Prasser
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
... | src/main/org/deidentifier/arx/framework/lattice/Node.java | /*
* ARX: Powerful Data Anonymization
* Copyright (C) 2012 - 2014 Florian Kohlmayer, Fabian Prasser
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
... | Improve class Node | src/main/org/deidentifier/arx/framework/lattice/Node.java | Improve class Node | |
Java | apache-2.0 | 3bf9743d5954781d5b10132059029a48648fde13 | 0 | ThiagoGarciaAlves/intellij-community,xfournet/intellij-community,idea4bsd/idea4bsd,idea4bsd/idea4bsd,vvv1559/intellij-community,signed/intellij-community,semonte/intellij-community,da1z/intellij-community,ThiagoGarciaAlves/intellij-community,FHannes/intellij-community,asedunov/intellij-community,idea4bsd/idea4bsd,FHann... | package com.intellij.remoteServer.util;
import com.intellij.openapi.application.ApplicationManager;
import com.intellij.openapi.components.ServiceManager;
import com.intellij.openapi.diagnostic.Logger;
import com.intellij.openapi.progress.ProgressIndicator;
import com.intellij.openapi.progress.ProgressManager;
import ... | plugins/git4idea/remote-servers-git/src/com/intellij/remoteServer/util/CloudGitDeploymentRuntime.java | package com.intellij.remoteServer.util;
import com.intellij.openapi.application.ApplicationManager;
import com.intellij.openapi.application.ModalityState;
import com.intellij.openapi.components.ServiceManager;
import com.intellij.openapi.diagnostic.Logger;
import com.intellij.openapi.progress.ProgressIndicator;
import... | show cloudgit commit dialog in a write-safe context (EA-89532 - assert: FileDocumentManagerImpl.saveAllDocuments)
| plugins/git4idea/remote-servers-git/src/com/intellij/remoteServer/util/CloudGitDeploymentRuntime.java | show cloudgit commit dialog in a write-safe context (EA-89532 - assert: FileDocumentManagerImpl.saveAllDocuments) | |
Java | apache-2.0 | 26c3ad065b1001138b8ce1011fd61d787195730b | 0 | cthiebaud/jaxrs-analyzer,cthiebaud/jaxrs-analyzer,sdaschner/jaxrs-analyzer | /*
* Copyright (C) 2015 Sebastian Daschner, sebastian-daschner.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE2.0
*
* Unless requi... | src/main/java/com/sebastian_daschner/jaxrs_analyzer/analysis/bytecode/ResourceMethodContentAnalyzer.java | /*
* Copyright (C) 2015 Sebastian Daschner, sebastian-daschner.com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE2.0
*
* Unless requi... | fixed minor merge-bug
| src/main/java/com/sebastian_daschner/jaxrs_analyzer/analysis/bytecode/ResourceMethodContentAnalyzer.java | fixed minor merge-bug | |
Java | apache-2.0 | b79c0aa5bec3cf294dbc58ff66dbaa8686229654 | 0 | peterl1084/framework,Flamenco/vaadin,Darsstar/framework,magi42/vaadin,jdahlstrom/vaadin.react,magi42/vaadin,mittop/vaadin,cbmeeks/vaadin,bmitc/vaadin,synes/vaadin,shahrzadmn/vaadin,Scarlethue/vaadin,travisfw/vaadin,kironapublic/vaadin,mstahv/framework,Peppe/vaadin,cbmeeks/vaadin,Peppe/vaadin,Peppe/vaadin,asashour/frame... | /*
* Copyright 2000-2013 Vaadin Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed... | client/src/com/vaadin/client/ApplicationConnection.java | /*
* Copyright 2000-2013 Vaadin Ltd.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed... | Show loading indicator immediately in init as before (#11850)
f7ee755e cherry-picked from the master branch.
Merge: no
Change-Id: Ibe91db13b301aaf0a2b5e6e5fb08f566bf5cadab
| client/src/com/vaadin/client/ApplicationConnection.java | Show loading indicator immediately in init as before (#11850) | |
Java | apache-2.0 | 302cb86d8e5f05567c6c5a42e5e4124cb3575331 | 0 | fhieber/incubator-joshua,kpu/joshua,thammegowda/incubator-joshua,fhieber/incubator-joshua,thammegowda/incubator-joshua,fhieber/incubator-joshua,fhieber/incubator-joshua,thammegowda/incubator-joshua,fhieber/incubator-joshua,gwenniger/joshua,thammegowda/incubator-joshua,lukeorland/joshua,thammegowda/incubator-joshua,luke... | /* This file is part of the Joshua Machine Translation System.
*
* Joshua is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version... | src/joshua/decoder/NbestMinRiskReranker.java | /* This file is part of the Joshua Machine Translation System.
*
* Joshua is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1
* of the License, or (at your option) any later version... | bugfix: skipping blank lines
| src/joshua/decoder/NbestMinRiskReranker.java | bugfix: skipping blank lines | |
Java | apache-2.0 | 61ab54d99d32ffbb4b6045cb2becd4997c502de4 | 0 | cmbntr/httpclient,atlassian/httpclient,UlrichColby/httpcomponents-client,ok2c/httpclient,apache/httpcomponents-client,cmbntr/httpclient,atlassian/httpclient | /*
* ====================================================================
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
... | httpclient-cache/src/main/java/org/apache/http/impl/client/cache/IOUtils.java | /*
* ====================================================================
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
... | HTTPCLIENT-1135: RandomAccessFile mode w is not valid
git-svn-id: 897293da6115b9493049ecf64199cf2f9a0ac287@1180373 13f79535-47bb-0310-9956-ffa450edef68
| httpclient-cache/src/main/java/org/apache/http/impl/client/cache/IOUtils.java | HTTPCLIENT-1135: RandomAccessFile mode w is not valid | |
Java | apache-2.0 | efc3bd73c3fd8e28d688d32c257f577dddcaee8d | 0 | tarasane/h2o-3,michalkurka/h2o-3,PawarPawan/h2o-v3,h2oai/h2o-dev,ChristosChristofidis/h2o-3,bospetersen/h2o-3,jangorecki/h2o-3,nilbody/h2o-3,bospetersen/h2o-3,jangorecki/h2o-3,YzPaul3/h2o-3,YzPaul3/h2o-3,mathemage/h2o-3,junwucs/h2o-3,h2oai/h2o-dev,h2oai/h2o-3,printedheart/h2o-3,h2oai/h2o-dev,nilbody/h2o-3,jangorecki/h2... | package hex;
import hex.schemas.ModelBuilderSchema;
import water.*;
import water.exceptions.H2OIllegalArgumentException;
import water.exceptions.H2OKeyNotFoundArgumentException;
import water.fvec.*;
import water.util.FrameUtils;
import water.util.Log;
import water.util.MRUtils;
import water.util.ReflectionUtils;
impo... | h2o-core/src/main/java/hex/ModelBuilder.java | package hex;
import hex.schemas.ModelBuilderSchema;
import water.*;
import water.exceptions.H2OIllegalArgumentException;
import water.exceptions.H2OKeyNotFoundArgumentException;
import water.fvec.*;
import water.util.FrameUtils;
import water.util.Log;
import water.util.MRUtils;
import water.util.ReflectionUtils;
impo... | Fix typo.
| h2o-core/src/main/java/hex/ModelBuilder.java | Fix typo. | |
Java | apache-2.0 | 07a96cf84d909eb93d79753d9e5a0e0943298429 | 0 | jagguli/intellij-community,adedayo/intellij-community,blademainer/intellij-community,MichaelNedzelsky/intellij-community,lucafavatella/intellij-community,Lekanich/intellij-community,ol-loginov/intellij-community,michaelgallacher/intellij-community,ol-loginov/intellij-community,jagguli/intellij-community,pwoodworth/inte... | package com.jetbrains.python.inspections;
import com.intellij.codeInspection.*;
import com.intellij.psi.PsiElement;
import com.jetbrains.python.psi.PyElementVisitor;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* Created by IntelliJ IDEA.
* User: dcheryasov
* Date: Nov 1... | python/src/com/jetbrains/python/inspections/PyInspectionVisitor.java | package com.jetbrains.python.inspections;
import com.jetbrains.python.psi.PyElementVisitor;
import com.intellij.psi.PsiElement;
import com.intellij.codeInspection.*;
import org.jetbrains.annotations.Nullable;
import org.jetbrains.annotations.NotNull;
/**
* Created by IntelliJ IDEA.
* User: dcheryasov
* Date: Nov 1... | Inspections - pass onTheFly into ProblemDescriptors & use it to create LAZY refs in batch run.
| python/src/com/jetbrains/python/inspections/PyInspectionVisitor.java | Inspections - pass onTheFly into ProblemDescriptors & use it to create LAZY refs in batch run. | |
Java | apache-2.0 | 4c25275e66e766e4cb28ac02e82e7d8e08245408 | 0 | allotria/intellij-community,ahb0327/intellij-community,asedunov/intellij-community,vladmm/intellij-community,izonder/intellij-community,FHannes/intellij-community,ryano144/intellij-community,Lekanich/intellij-community,jexp/idea2,wreckJ/intellij-community,amith01994/intellij-community,pwoodworth/intellij-community,Leka... | package com.intellij.codeInsight.javadoc;
import com.intellij.codeInsight.CodeInsightBundle;
import com.intellij.codeInsight.TargetElementUtil;
import com.intellij.codeInsight.hint.ParameterInfoController;
import com.intellij.codeInsight.lookup.Lookup;
import com.intellij.codeInsight.lookup.LookupItem;
import com.inte... | codeInsight/impl/com/intellij/codeInsight/javadoc/JavaDocManager.java | package com.intellij.codeInsight.javadoc;
import com.intellij.codeInsight.CodeInsightBundle;
import com.intellij.codeInsight.TargetElementUtil;
import com.intellij.codeInsight.hint.ParameterInfoController;
import com.intellij.codeInsight.lookup.Lookup;
import com.intellij.codeInsight.lookup.LookupItem;
import com.inte... | fix Ctrl-Q presentation for 'unnamed' elements
| codeInsight/impl/com/intellij/codeInsight/javadoc/JavaDocManager.java | fix Ctrl-Q presentation for 'unnamed' elements | |
Java | apache-2.0 | 133ac7eeaa5e42457fa8e0fb007438390e2979d9 | 0 | dslomov/intellij-community,youdonghai/intellij-community,supersven/intellij-community,ryano144/intellij-community,adedayo/intellij-community,caot/intellij-community,apixandru/intellij-community,slisson/intellij-community,tmpgit/intellij-community,slisson/intellij-community,vvv1559/intellij-community,ftomassetti/intelli... | package com.intellij.tasks.jira;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonObject;
import com.intellij.openapi.diagnostic.Logger;
import com.intellij.openapi.util.Comparing;
import com.intellij.openapi.util.io.FileUtil;
import com.intellij.openapi.util.io.StreamUtil;
i... | plugins/tasks/tasks-core/src/com/intellij/tasks/jira/JiraRepository.java | package com.intellij.tasks.jira;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonObject;
import com.intellij.openapi.diagnostic.Logger;
import com.intellij.openapi.util.Comparing;
import com.intellij.openapi.util.io.FileUtil;
import com.intellij.openapi.util.io.StreamUtil;
i... | Add notification about unsupported version of JIRA
| plugins/tasks/tasks-core/src/com/intellij/tasks/jira/JiraRepository.java | Add notification about unsupported version of JIRA | |
Java | apache-2.0 | d7deab0b7c5669fd88292cab8d259a06b8958a0f | 0 | soygul/nbusy-android,nbusy/nbusy-android | package com.nbusy.sdk.titan.jsonrpc.neptulon;
import android.net.SSLCertificateSocketFactory;
import java.io.IOException;
import java.io.InputStream;
import java.security.KeyStore;
import java.security.KeyStoreException;
import java.security.NoSuchAlgorithmException;
import java.security.cert.Certificate;
import java... | app/src/main/java/com/nbusy/sdk/titan/jsonrpc/neptulon/NeptulonClient.java | package com.nbusy.sdk.titan.jsonrpc.neptulon;
import android.net.SSLCertificateSocketFactory;
import android.net.SSLSessionCache;
import java.io.IOException;
import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLSocket;
/**
* Neptulon client implementation: https://github.com/neptulon/neptulon
*/
public class ... | cert certificate trust
| app/src/main/java/com/nbusy/sdk/titan/jsonrpc/neptulon/NeptulonClient.java | cert certificate trust | |
Java | apache-2.0 | 23bd130a48c425ca534e33d868c9b5595e9294c0 | 0 | mglukhikh/intellij-community,xfournet/intellij-community,ThiagoGarciaAlves/intellij-community,da1z/intellij-community,xfournet/intellij-community,xfournet/intellij-community,allotria/intellij-community,xfournet/intellij-community,da1z/intellij-community,mglukhikh/intellij-community,allotria/intellij-community,allotria/... | /*
* Copyright 2000-2017 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | platform/lang-impl/src/com/intellij/ide/util/gotoByName/GotoActionModel.java | /*
* Copyright 2000-2017 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | do not convert empty icon into disabled one
(cherry picked from commit 129e442d2ecfd2b1b92bb047a0d47db805dd8629)
| platform/lang-impl/src/com/intellij/ide/util/gotoByName/GotoActionModel.java | do not convert empty icon into disabled one | |
Java | apache-2.0 | 102f19892ac0618fd1e973dbe11b18d8d1d8f186 | 0 | getsocial-im/getsocial-android-sdk | /*
* Copyright 2015-2017 GetSocial B.V.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law o... | example/src/main/java/im/getsocial/demo/fragment/UserManagementFragment.java | /*
* Copyright 2015-2017 GetSocial B.V.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law o... | Release demo app for GetSocial SDK version 7.4.5
| example/src/main/java/im/getsocial/demo/fragment/UserManagementFragment.java | Release demo app for GetSocial SDK version 7.4.5 | |
Java | apache-2.0 | ba9c83c41cbb110d0ef79120691aba3bc26ad6c8 | 0 | cuba-platform/cuba,cuba-platform/cuba,dimone-kun/cuba,dimone-kun/cuba,cuba-platform/cuba,dimone-kun/cuba | /*
* Copyright (c) 2008 Haulmont Technology Ltd. All Rights Reserved.
* Haulmont Technology proprietary and confidential.
* Use is subject to license terms.
* Author: Nikolay Gorodnov
* Created: 06.08.2010 15:08:26
*
* $Id$
*/
package com.haulmont.cuba.toolkit.gwt.client.ui;
import com.google.gwt.... | modules/web-toolkit/src/com/haulmont/cuba/toolkit/gwt/client/ui/VGroupBox.java | /*
* Copyright (c) 2008 Haulmont Technology Ltd. All Rights Reserved.
* Haulmont Technology proprietary and confidential.
* Use is subject to license terms.
* Author: Nikolay Gorodnov
* Created: 06.08.2010 15:08:26
*
* $Id$
*/
package com.haulmont.cuba.toolkit.gwt.client.ui;
import com.google.gwt.... | GroupBox fixed
| modules/web-toolkit/src/com/haulmont/cuba/toolkit/gwt/client/ui/VGroupBox.java | GroupBox fixed | |
Java | apache-2.0 | f5733769b96e3a4847ef86334662f60fc09b54e1 | 0 | allotria/intellij-community,xfournet/intellij-community,suncycheng/intellij-community,semonte/intellij-community,youdonghai/intellij-community,idea4bsd/idea4bsd,vvv1559/intellij-community,signed/intellij-community,da1z/intellij-community,signed/intellij-community,apixandru/intellij-community,ThiagoGarciaAlves/intellij-... | /*
* Copyright 2000-2014 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | platform/vcs-log/impl/src/com/intellij/vcs/log/statistics/VcsLogRepoSizeCollector.java | /*
* Copyright 2000-2014 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | [vcs-log] enhance roots statistic
| platform/vcs-log/impl/src/com/intellij/vcs/log/statistics/VcsLogRepoSizeCollector.java | [vcs-log] enhance roots statistic | |
Java | apache-2.0 | 0a689f9add213f50a7a4bbe3eb7abd05334f3c39 | 0 | lavajumper/bitcoinj-scrypt,danielmcclure/bitcoinj,HashEngineering/darkcoinj,tjth/bitcoinj-lotterycoin,yezune/darkcoinj,TrustPlus/trustpluscoinj,HashEngineering/maxcoinj,nikileshsa/bitcoinj,GroestlCoin/groestlcoinj,bitcoin-solutions/bitcoinj-alice,fsb4000/bitcoinj,yezune/darkcoinj,HashEngineering/namecoinj,HashEngineeri... | /**
* Copyright 2011 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to ... | core/src/main/java/com/google/bitcoin/core/Peer.java | /**
* Copyright 2011 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to ... | Add some debug logging to Peer. Updates issue 199.
| core/src/main/java/com/google/bitcoin/core/Peer.java | Add some debug logging to Peer. Updates issue 199. | |
Java | apache-2.0 | 98d720a1e33f6aa496cef9a731c58d6ef6ae6e7b | 0 | dimbleby/JGroups,vjuranek/JGroups,deepnarsay/JGroups,Sanne/JGroups,dimbleby/JGroups,belaban/JGroups,ibrahimshbat/JGroups,ligzy/JGroups,danberindei/JGroups,rhusar/JGroups,ibrahimshbat/JGroups,rpelisse/JGroups,dimbleby/JGroups,pferraro/JGroups,tristantarrant/JGroups,pruivo/JGroups,TarantulaTechnology/JGroups,kedzie/JGrou... |
package org.jgroups.stack;
import org.jgroups.Event;
import org.jgroups.conf.ClassConfigurator;
import org.jgroups.annotations.DeprecatedProperty;
import org.jgroups.annotations.ManagedAttribute;
import org.jgroups.annotations.Property;
import org.jgroups.jmx.ResourceDMBean;
import org.jgroups.logging.Log;
import o... | src/org/jgroups/stack/Protocol.java |
package org.jgroups.stack;
import org.jgroups.Event;
import org.jgroups.conf.ClassConfigurator;
import org.jgroups.annotations.DeprecatedProperty;
import org.jgroups.annotations.ManagedAttribute;
import org.jgroups.annotations.Property;
import org.jgroups.jmx.ResourceDMBean;
import org.jgroups.logging.Log;
import o... | deprecated name
| src/org/jgroups/stack/Protocol.java | deprecated name | |
Java | apache-2.0 | error: pathspec 'ListenerList.java' did not match any file(s) known to git
| 936e11073bb040b801e91d683f3875413f6d0747 | 1 | radium226/maven-github-wagon,radium226/maven-github-wagon | package com.github.radium.maven;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.Arrays;
import java.util.Set;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.google.common.base.Function;
import com.google.common.collect.Lists;
import com.goog... | ListenerList.java | Create ListenerList.java | ListenerList.java | Create ListenerList.java | |
Java | apache-2.0 | error: pathspec 'src/util/UtilHelper.java' did not match any file(s) known to git
| 843d08b26fb3800c925bc13c76c25dadf1858a47 | 1 | MINDS-i/Dashboard,MINDS-i/Dashboard,MINDS-i/Dashboard | package com.util;
import java.util.*;
/**
* @author Chris Park @ Infinetix Corp
* Date: 4-21-21
* Description: Singletone class containing useful utility functions for
* Minds-i Dashboard specific functionality and calculations.
*/
public class UtilHelper {
private static UtilHelper utilHelperInstance = null;... | src/util/UtilHelper.java | Create UtilHelper.java
Add functions:
-Calculate spherical distance between two coordinates
-Convert km to feet
| src/util/UtilHelper.java | Create UtilHelper.java | |
Java | apache-2.0 | error: pathspec 'test/models/AttachmentTest.java' did not match any file(s) known to git
| 349b0529a25ea1663729eee9b4a0984002ead7cb | 1 | bloodybear/yona,ihoneymon/yobi,Limseunghwan/oss,doortts/forked-for-history,bloodybear/yona,bloodybear/yona,doortts/forked-for-history,naver/yobi,ahb0327/yobi,bloodybear/yona,ChangsungKim/TestRepository01,yona-projects/yona,ahb0327/yobi,oolso/yobi,Limseunghwan/oss,ChangsungKim/TestRepository01,ihoneymon/yobi,doortts/for... | package models;
import static org.fest.assertions.Assertions.assertThat;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.security.NoSuchAlgorithmException;
import java.util.List;
import models.enumerati... | test/models/AttachmentTest.java | uploader: Add missed test should be in 9aed8db.
| test/models/AttachmentTest.java | uploader: Add missed test should be in 9aed8db. | |
Java | apache-2.0 | error: pathspec 'src/ext/wyone/core/TypeChecker.java' did not match any file(s) known to git
| a54b5fbe31bab209e62a68ac375f68bdf833f93e | 1 | hjwylde/whiley-compiler,Whiley/WhileyCompiler,hjwylde/whiley-compiler,hjwylde/whiley-compiler,hjwylde/whiley-compiler,hjwylde/whiley-compiler | package wyone.core;
import java.util.*;
import static wyone.core.Expr.*;
import static wyone.core.SpecFile.*;
import wyil.util.*;
import static wyil.util.SyntaxError.*;
public class TypeChecker {
private String filename;
public void check(SpecFile spec) {
filename = spec.filename;
for(Decl d : spec.declaration... | src/ext/wyone/core/TypeChecker.java | Minor updates working on type checker.
| src/ext/wyone/core/TypeChecker.java | Minor updates working on type checker. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.