commit stringlengths 40 40 | old_file stringlengths 4 236 | new_file stringlengths 4 236 | old_contents stringlengths 1 3.26k | new_contents stringlengths 16 4.43k | subject stringlengths 16 624 | message stringlengths 17 3.29k | lang stringclasses 5
values | license stringclasses 13
values | repos stringlengths 5 91.5k |
|---|---|---|---|---|---|---|---|---|---|
c38f2f5d68a307e87a724bf05ebddd643c49ef2b | falchion-container/src/test/java/net/unit8/falchion/ContainerTest.java | falchion-container/src/test/java/net/unit8/falchion/ContainerTest.java | package net.unit8.falchion;
import org.junit.Test;
import java.io.File;
import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;
/**
* @author syobochim
*/
public class ContainerTest {
@Test
public void createClasspathWithBaseDirAndAplVersion() throws Exception {
Container sut... | package net.unit8.falchion;
import org.junit.Test;
import java.io.File;
import static org.hamcrest.CoreMatchers.*;
import static org.junit.Assert.*;
/**
* @author syobochim
*/
public class ContainerTest {
@Test
public void createClasspathWithBaseDirAndAplVersion() throws Exception {
Container sut... | Change assert, because the order of filepath is not guaranteed. | Change assert, because the order of filepath is not guaranteed.
| Java | epl-1.0 | kawasima/falchion,kawasima/falchion |
3974b79b4884640066155789d70af60e3206f924 | org.metaborg.meta.lang.dynsem.interpreter/src/main/java/org/metaborg/meta/lang/dynsem/interpreter/utils/ListUtils.java | org.metaborg.meta.lang.dynsem.interpreter/src/main/java/org/metaborg/meta/lang/dynsem/interpreter/utils/ListUtils.java | package org.metaborg.meta.lang.dynsem.interpreter.utils;
import java.util.LinkedList;
import com.github.krukow.clj_lang.IPersistentStack;
import com.github.krukow.clj_lang.PersistentList;
import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
public class ListUtils {
@TruffleBoundary
public static <T> ... | package org.metaborg.meta.lang.dynsem.interpreter.utils;
import java.util.LinkedList;
import com.github.krukow.clj_lang.IPersistentStack;
import com.github.krukow.clj_lang.PersistentList;
import com.oracle.truffle.api.CompilerDirectives.TruffleBoundary;
public class ListUtils {
@TruffleBoundary
public static <T> ... | Handle empty list reversal corner case | Handle empty list reversal corner case
| Java | apache-2.0 | metaborg/dynsem,metaborg/dynsem |
55ad2b93718b5c2fd9766e2ff0cb867a4ff0110b | spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-batch/src/test/java/smoketest/batch/SampleBatchApplicationTests.java | spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-batch/src/test/java/smoketest/batch/SampleBatchApplicationTests.java | /*
* Copyright 2012-2019 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... | /*
* Copyright 2012-2019 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
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by a... | Remove accidentally committed debug code | Remove accidentally committed debug code
| Java | apache-2.0 | vpavic/spring-boot,mdeinum/spring-boot,wilkinsona/spring-boot,wilkinsona/spring-boot,dreis2211/spring-boot,mdeinum/spring-boot,spring-projects/spring-boot,spring-projects/spring-boot,mdeinum/spring-boot,aahlenst/spring-boot,dreis2211/spring-boot,htynkn/spring-boot,mdeinum/spring-boot,spring-projects/spring-boot,scottfr... |
9eddd80652c057194af85c093f9189d4b2d116bc | GitToolBox/src/main/java/zielu/gittoolbox/ui/statusBar/FetchAction.java | GitToolBox/src/main/java/zielu/gittoolbox/ui/statusBar/FetchAction.java | package zielu.gittoolbox.ui.statusBar;
import com.intellij.openapi.actionSystem.AnActionEvent;
import com.intellij.openapi.project.DumbAwareAction;
import git4idea.i18n.GitBundle;
import git4idea.repo.GitRepository;
import org.jetbrains.annotations.NotNull;
import zielu.gittoolbox.fetch.GtFetchUtil;
public class Fetc... | package zielu.gittoolbox.ui.statusBar;
import com.intellij.openapi.actionSystem.AnActionEvent;
import com.intellij.openapi.actionSystem.Presentation;
import com.intellij.openapi.project.DumbAwareAction;
import git4idea.GitLocalBranch;
import git4idea.GitRemoteBranch;
import git4idea.i18n.GitBundle;
import git4idea.rep... | Include branch name in fetch | Include branch name in fetch
| Java | apache-2.0 | zielu/GitToolBox,zielu/GitToolBox,zielu/GitToolBox |
76bc5c3d036471991a273771e0eea2d1bc6a696f | modules/cat-eye-engine/cat-eye-engine-container-unit/src/main/java/org/cat/eye/engine/container/unit/deployment/UnitBundleDeployerImpl.java | modules/cat-eye-engine/cat-eye-engine-container-unit/src/main/java/org/cat/eye/engine/container/unit/deployment/UnitBundleDeployerImpl.java | package org.cat.eye.engine.container.unit.deployment;
import org.cat.eye.engine.common.deployment.BundleClassLoader;
import org.cat.eye.engine.common.deployment.BundleDeployer;
import org.cat.eye.engine.common.deployment.management.BundleManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Created... | package org.cat.eye.engine.container.unit.deployment;
import org.cat.eye.engine.common.deployment.BundleDeployer;
import org.cat.eye.engine.common.deployment.management.BundleManager;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Created by Kotov on 30.11.2017.
*/
public class UnitBundleDeployerImp... | Access to computation context service through actors was implemented. | Access to computation context service through actors was implemented.
| Java | apache-2.0 | catkotov/cat-eye |
fc9e0863d1cb0b7ae4e9e3f2739a345fd8fa84e1 | xwiki-platform-core/xwiki-platform-extension/xwiki-platform-extension-repositories/xwiki-platform-extension-repository-aether/src/main/java/org/xwiki/extension/repository/aether/internal/AetherExtensionDependency.java | xwiki-platform-core/xwiki-platform-extension/xwiki-platform-extension-repositories/xwiki-platform-extension-repository-aether/src/main/java/org/xwiki/extension/repository/aether/internal/AetherExtensionDependency.java | /*
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This 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
* th... | /*
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This 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
* th... | Add support for classifier in Maven/Aether repository handler Set proper dependency id | XWIKI-7161: Add support for classifier in Maven/Aether repository
handler
Set proper dependency id
| Java | lgpl-2.1 | pbondoer/xwiki-platform,pbondoer/xwiki-platform,pbondoer/xwiki-platform,xwiki/xwiki-platform,xwiki/xwiki-platform,xwiki/xwiki-platform,xwiki/xwiki-platform,pbondoer/xwiki-platform,pbondoer/xwiki-platform,xwiki/xwiki-platform |
f8a670f3ab0e1022206ba5dfaccb85d42609f1d3 | app/io/sphere/sdk/play/metrics/MetricHttpClient.java | app/io/sphere/sdk/play/metrics/MetricHttpClient.java | package io.sphere.sdk.play.metrics;
import io.sphere.sdk.http.HttpClient;
import io.sphere.sdk.http.HttpRequest;
import io.sphere.sdk.http.HttpResponse;
import play.mvc.Http;
import java.util.List;
import java.util.Optional;
import java.util.concurrent.CompletionStage;
public class MetricHttpClient implements HttpCl... | package io.sphere.sdk.play.metrics;
import io.sphere.sdk.http.HttpClient;
import io.sphere.sdk.http.HttpRequest;
import io.sphere.sdk.http.HttpResponse;
import play.mvc.Http;
import java.util.List;
import java.util.Optional;
import java.util.concurrent.CompletionStage;
public class MetricHttpClient implements HttpCl... | Improve metric http client to deal with missing report data list. | Improve metric http client to deal with missing report data list.
| Java | apache-2.0 | commercetools/commercetools-sunrise-java,sphereio/sphere-sunrise,rfuertesp/pruebas2,sphereio/sphere-sunrise,commercetools/commercetools-sunrise-java,sphereio/sphere-sunrise,commercetools/commercetools-sunrise-java,rfuertesp/pruebas2,sphereio/commercetools-sunrise-java,sphereio/commercetools-sunrise-java,commercetools/c... |
7bab3773dc37c430d8e4ce833c29dc7799c15005 | src/org/nwapw/abacus/number/Function.java | src/org/nwapw/abacus/number/Function.java | package org.nwapw.abacus.number;
public abstract class Function {
protected abstract boolean matchesParams(Number[] params);
protected abstract Number applyInternal(Number[] params);
public Number apply(Number...params) {
if(!matchesParams(params)) return null;
return applyInternal(params... | package org.nwapw.abacus.number;
import java.util.HashMap;
public abstract class Function {
private static final HashMap<Class<? extends Number>, Integer> priorityMap =
new HashMap<Class<? extends Number>, Integer>() {{
put(NaiveNumber.class, 0);
}};
protected abstrac... | Add a map to promoting priorities. | Add a map to promoting priorities.
| Java | mit | DanilaFe/abacus,DanilaFe/abacus |
20bb19e6c3bdfff37626a6746d1624636eaedded | android/src/com/freshplanet/ane/AirAACPlayer/functions/CloseFunction.java | android/src/com/freshplanet/ane/AirAACPlayer/functions/CloseFunction.java | package com.freshplanet.ane.AirAACPlayer.functions;
import com.adobe.fre.FREContext;
import com.adobe.fre.FREFunction;
import com.adobe.fre.FREObject;
import com.freshplanet.ane.AirAACPlayer.Extension;
import com.freshplanet.ane.AirAACPlayer.ExtensionContext;
public class CloseFunction implements FREFunction
{
... | package com.freshplanet.ane.AirAACPlayer.functions;
import com.adobe.fre.FREContext;
import com.adobe.fre.FREFunction;
import com.adobe.fre.FREObject;
import com.freshplanet.ane.AirAACPlayer.Extension;
import com.freshplanet.ane.AirAACPlayer.ExtensionContext;
public class CloseFunction implements FREFunction
{
... | Add null url on close | Add null url on close
| Java | apache-2.0 | freshplanet/ANE-AACPlayer,freshplanet/ANE-AACPlayer,freshplanet/ANE-AACPlayer |
4a2ebc07a9d768cfb30b46c8a02a5a9a082bc669 | src/net/java/sip/communicator/impl/osdependent/macosx/MacOSXDockIcon.java | src/net/java/sip/communicator/impl/osdependent/macosx/MacOSXDockIcon.java | package net.java.sip.communicator.impl.osdependent.macosx;
import net.java.sip.communicator.impl.osdependent.*;
import com.apple.eawt.*;
/**
* MacOSX specific dock icon, which will add a dock icon listener in order to
* show the application each time user clicks on the dock icon.
*
* @author Yana Stamcheva
*/
@... | package net.java.sip.communicator.impl.osdependent.macosx;
import net.java.sip.communicator.impl.osdependent.*;
import net.java.sip.communicator.service.gui.*;
import com.apple.eawt.*;
/**
* MacOSX specific dock icon, which will add a dock icon listener in order to
* show the application each time user clicks on t... | Check if the UIService is already visible before setting it to visible. | Check if the UIService is already visible before setting it to visible.
| Java | apache-2.0 | ibauersachs/jitsi,bebo/jitsi,dkcreinoso/jitsi,bebo/jitsi,laborautonomo/jitsi,iant-gmbh/jitsi,dkcreinoso/jitsi,jitsi/jitsi,laborautonomo/jitsi,459below/jitsi,bhatvv/jitsi,procandi/jitsi,ibauersachs/jitsi,marclaporte/jitsi,ringdna/jitsi,procandi/jitsi,marclaporte/jitsi,HelioGuilherme66/jitsi,damencho/jitsi,bhatvv/jitsi,m... |
cf4cd85ba9723854d73a9e88a07043e95bbd5aac | src/main/java/org/mydalayer/parsing/builder/BaseBuilder.java | src/main/java/org/mydalayer/parsing/builder/BaseBuilder.java | package org.mydalayer.parsing.builder;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
import org.mydalayer.client.support.Configuration;
/**
*
* @author mydalayer#gmail.com
* @version 1.0.0
*/
public abstract class BaseBuilder {
protected final Configuration configuration;
public B... | package org.mydalayer.parsing.builder;
import org.mydalayer.client.support.Configuration;
import java.util.Arrays;
import java.util.HashSet;
import java.util.Set;
/**
*
* @author mydalayer#gmail.com
* @version 1.0.0
*/
public abstract class BaseBuilder {
protected final Configuration configuration;
public B... | Modify using Google Java code style and format | Modify using Google Java code style and format
| Java | mit | mydalayer/code |
8d51159e07495380c4e0c0f366836778b7880331 | app/src/main/java/org/wikipedia/gallery/MediaListItem.java | app/src/main/java/org/wikipedia/gallery/MediaListItem.java | package org.wikipedia.gallery;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import com.google.gson.annotations.SerializedName;
import org.apache.commons.lang3.StringUtils;
import java.io.Serializable;
@SuppressWarnings("unused")
public class MediaListItem implements Serializable {
@... | package org.wikipedia.gallery;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import com.google.gson.annotations.SerializedName;
import org.apache.commons.lang3.StringUtils;
import java.io.Serializable;
import java.util.Collections;
import java.util.List;
@SuppressWarnings("unused")
publi... | Add src set data class for media-list endpoint | Add src set data class for media-list endpoint
| Java | apache-2.0 | dbrant/apps-android-wikipedia,dbrant/apps-android-wikipedia,wikimedia/apps-android-wikipedia,wikimedia/apps-android-wikipedia,dbrant/apps-android-wikipedia,wikimedia/apps-android-wikipedia,dbrant/apps-android-wikipedia,dbrant/apps-android-wikipedia,wikimedia/apps-android-wikipedia |
f968d226c5130a641e7aded75f412b286ca1388d | src/test/java/org/clafer/ir/IrAddTest.java | src/test/java/org/clafer/ir/IrAddTest.java | package org.clafer.ir;
import org.clafer.ir.IrQuickTest.Solution;
import static org.clafer.ir.Irs.*;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.chocosolver.solver.constraints.Constraint;
import org.chocosolver.solver.constraints.ICF;
import org.chocosolver.solver.variables.IntVar;
/**
*
* @a... | package org.clafer.ir;
import org.clafer.ir.IrQuickTest.Solution;
import static org.clafer.ir.Irs.*;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.chocosolver.solver.constraints.Constraint;
import org.chocosolver.solver.constraints.ICF;
import org.chocosolver.solver.variables.IntVar;
/**
*
* @a... | Fix test for empty summation. | Fix test for empty summation.
| Java | mit | gsdlab/chocosolver,gsdlab/chocosolver |
c86c1f98e39139970f83ebd9f97ef49e3452ad99 | matelight/src/main/java/de/cketti/matelight/MateLight.java | matelight/src/main/java/de/cketti/matelight/MateLight.java | package de.cketti.matelight;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.net.InetSocketAddress;
import java.net.Socket;
public class MateLight {
private static final String HOST = "matelight.cbrp3... | package de.cketti.matelight;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.net.InetSocketAddress;
import java.net.Socket;
public class MateLight {
private static final String HOST = "ml.jaseg.net";
... | Change host name to ml.jaseg.net | Change host name to ml.jaseg.net
| Java | apache-2.0 | cketti/MateLightAndroid |
5e705c37855110ef12fc0af2448fd9ca2cfdd665 | Java/src/fp/grados/tipos/AlumnoImpl2.java | Java/src/fp/grados/tipos/AlumnoImpl2.java | package fp.grados.tipos;
import java.time.LocalDate;
import java.util.Comparator;
import java.util.Optional;
import java.util.SortedMap;
import java.util.TreeMap;
import java.util.stream.Collectors;
import java.util.stream.Stream;
public class AlumnoImpl2 extends AlumnoImpl implements Alumno {
public AlumnoImpl2(S... | package fp.grados.tipos;
import java.time.LocalDate;
import java.util.Comparator;
import java.util.Map;
import java.util.Optional;
import java.util.SortedMap;
import java.util.TreeMap;
import java.util.stream.Collectors;
import java.util.stream.Stream;
public class AlumnoImpl2 extends AlumnoImpl implements Alumno {
... | Fix ALL failures in Java | Fix ALL failures in Java
| Java | mit | javiersantos/FP1415,javiersantos/FP1415 |
05116fe90db0278f1e63cade2268569fd066a838 | src/main/java/com/coreoz/plume/file/services/cache/FileCacheServiceGuava.java | src/main/java/com/coreoz/plume/file/services/cache/FileCacheServiceGuava.java | package com.coreoz.plume.file.services.cache;
import java.util.concurrent.TimeUnit;
import java.util.function.Function;
import javax.inject.Singleton;
import com.google.common.cache.CacheBuilder;
import com.google.common.cache.CacheLoader;
import com.google.common.cache.LoadingCache;
@Singleton
public class FileCac... | package com.coreoz.plume.file.services.cache;
import java.util.concurrent.TimeUnit;
import java.util.function.Function;
import javax.inject.Singleton;
import com.google.common.cache.CacheBuilder;
import com.google.common.cache.CacheLoader;
import com.google.common.cache.LoadingCache;
@Singleton
public class FileCac... | Remove only unused files from cache | Remove only unused files from cache | Java | apache-2.0 | Coreoz/Plume-file |
f6ddefb74bcf8e488334a65fae891e0696abe470 | FAPE/src/fape/scripting/Exp1.java | FAPE/src/fape/scripting/Exp1.java | /*
* Author: Filip Dvořák <filip.dvorak@runbox.com>
*
* Copyright (c) 2013 Filip Dvořák <filip.dvorak@runbox.com>, all rights reserved
*
* Publishing, providing further or using this program is prohibited
* without previous written permission of the author. Publishing or providing
* further the contents of this... | /*
* Author: Filip Dvořák <filip.dvorak@runbox.com>
*
* Copyright (c) 2013 Filip Dvořák <filip.dvorak@runbox.com>, all rights reserved
*
* Publishing, providing further or using this program is prohibited
* without previous written permission of the author. Publishing or providing
* further the contents of this... | Make the problems/generated directory usage relative | Make the problems/generated directory usage relative
| Java | bsd-2-clause | athy/fape,athy/fape,athy/fape,athy/fape |
39faeae5dca2033a2a85705a6d0cac4dc905c5f3 | sli/dashboard/src/main/java/org/slc/sli/util/SecurityUtil.java | sli/dashboard/src/main/java/org/slc/sli/util/SecurityUtil.java | package org.slc.sli.util;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.security.core.userdetails.UserDetails;
import org.slc.sli.security.SLIPrincipal;
/**
* Class, which allows user to access security context
* @author svankina
*
*/
public clas... | package org.slc.sli.util;
import org.springframework.security.core.context.SecurityContextHolder;
import org.springframework.security.core.userdetails.UserDetails;
import org.slc.sli.security.SLIPrincipal;
/**
* Class, which allows user to access security context
* @author svankina
*
*/
public clas... | Make security util to work for mock dashboard server mode. | Make security util to work for mock dashboard server mode.
| Java | apache-2.0 | inbloom/secure-data-service,inbloom/secure-data-service,inbloom/secure-data-service,inbloom/secure-data-service,inbloom/secure-data-service |
026ede21b16e6df8b18acaa8a542fbe77fb213ef | src/main/java/com/fasterxml/sort/util/BlockingQueueReader.java | src/main/java/com/fasterxml/sort/util/BlockingQueueReader.java | package com.fasterxml.sort.util;
import java.io.IOException;
import java.io.InterruptedIOException;
import java.util.concurrent.BlockingQueue;
import com.fasterxml.sort.DataReader;
/**
* Base implementation for {@link DataReader} that uses a
* {@link BlockingQueue} for getting input.
* The only missing part is im... | package com.fasterxml.sort.util;
import java.io.IOException;
import java.io.InterruptedIOException;
import java.util.concurrent.BlockingQueue;
import com.fasterxml.sort.DataReader;
/**
* Base implementation for {@link DataReader} that uses a
* {@link BlockingQueue} for getting input.
* The only missing part is im... | Add support for end-marker token | Add support for end-marker token
| Java | apache-2.0 | cowtowncoder/java-merge-sort |
0ec760e3fbabbac7a0d5fb37b4cb659fd113c73d | alib/src/main/java/net/darkmist/alib/generics/GenericFudge.java | alib/src/main/java/net/darkmist/alib/generics/GenericFudge.java | package net.darkmist.alib.generics;
public class GenericFudge
{
@SuppressWarnings("unchecked")
static public <T> Class<? extends T> getClass(T obj)
{
return (Class<? extends T>)obj.getClass();
}
}
| package net.darkmist.alib.generics;
import java.util.Map;
/**
* Static methods to get around issues with generics...
*/
@SuppressWarnings("unchecked")
public class GenericFudge
{
/** Only static methods. */
private GenericFudge()
{
}
/**
* Fudge the return from getClass to include the generic.
*/
static... | Add method to allow ungenericed map to genericed map fudge | Add method to allow ungenericed map to genericed map fudge
| Java | lgpl-2.1 | schallee/alib4j |
1996083e58f308dfa42ff315ea15b7dba8326679 | apina-core/src/main/java/fi/evident/apina/model/settings/TranslationSettings.java | apina-core/src/main/java/fi/evident/apina/model/settings/TranslationSettings.java | package fi.evident.apina.model.settings;
import fi.evident.apina.utils.PatternSet;
import java.util.Collection;
import java.util.Set;
import java.util.TreeMap;
import java.util.TreeSet;
import static java.util.Collections.unmodifiableCollection;
/**
* Various settings guiding the translation.
*/
public final clas... | package fi.evident.apina.model.settings;
import fi.evident.apina.utils.PatternSet;
import java.util.Collection;
import java.util.Set;
import java.util.TreeMap;
import java.util.TreeSet;
import static java.util.Collections.unmodifiableCollection;
/**
* Various settings guiding the translation.
*/
public final clas... | Allow multiple types to be imported with single call | Allow multiple types to be imported with single call
Since both the command line client and the Gradle task support
specifying multiple imports from a module with a shorthand syntax, it
makes things simpler for callers to allow passing multiple types in a
single addImport-call.
| Java | mit | EvidentSolutions/apina,EvidentSolutions/apina,EvidentSolutions/apina |
de02fac521304f10cae20d442839a144017923ce | library/src/com/google/maps/android/data/kml/KmlMultiTrack.java | library/src/com/google/maps/android/data/kml/KmlMultiTrack.java | package com.google.maps.android.data.kml;
import com.google.maps.android.data.Geometry;
import java.util.ArrayList;
/**
* Created by thorin on 22/02/2017.
*/
public class KmlMultiTrack extends KmlMultiGeometry {
/**
* Creates a new MultiGeometry object
*
* @param tracks array of K... | package com.google.maps.android.data.kml;
import com.google.maps.android.data.Geometry;
import java.util.ArrayList;
/**
* Created by thorin on 22/02/2017.
*/
public class KmlMultiTrack extends KmlMultiGeometry {
/**
* Creates a new MultiGeometry object
*
* @param tracks array of K... | Throw IllegalArgumentException if constructor is called with a null argument | Throw IllegalArgumentException if constructor is called with a null argument
| Java | apache-2.0 | googlemaps/android-maps-utils,googlemaps/android-maps-utils,barbeau/android-maps-utils,googlemaps/android-maps-utils |
2db3ebe40285fe05996371a5829fe107a3c64a95 | core/src/org/jsecurity/util/Nameable.java | core/src/org/jsecurity/util/Nameable.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
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | /*
* 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 ... | Fix the build to test Hudson | Fix the build to test Hudson
git-svn-id: ec6ef1d57ec0831ce4cbff3b75527511e63bfbe3@736937 13f79535-47bb-0310-9956-ffa450edef68
| Java | apache-2.0 | feige712/shiro,apache/shiro,relateiq/shiro,apache/shiro,feige712/shiro |
ff71cb733dfa491e514459c29f252a7f6dcbf4d5 | participant-support/src/test/java/net/lshift/diffa/participant/changes/ChangeEventTest.java | participant-support/src/test/java/net/lshift/diffa/participant/changes/ChangeEventTest.java | /**
* Copyright (C) 2010-2011 LShift 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... | /**
* Copyright (C) 2010-2011 LShift 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... | Add some more data points to ChangeEvent check | Add some more data points to ChangeEvent check
| Java | apache-2.0 | aprescott/diffa,aprescott/diffa,0x6e6562/diffa,aprescott/diffa,lshift/diffa,0x6e6562/diffa,lshift/diffa,lshift/diffa,0x6e6562/diffa,aprescott/diffa,lshift/diffa,lshift/diffa,0x6e6562/diffa |
24d6f8483ac5460552dc51767132ffb2882b3f02 | docs-to-pdf-converter/src/DocToPDFConverter.java | docs-to-pdf-converter/src/DocToPDFConverter.java | import java.io.FileInputStream;
import org.docx4j.convert.in.Doc;
import org.docx4j.openpackaging.packages.WordprocessingMLPackage;
public class DocToPDFConverter extends DocxToPDFConverter {
public DocToPDFConverter(String inputFilePath, String outputFilePath) {
super(inputFilePath, outputFilePath);
}
@Overr... | import java.io.FileInputStream;
import java.io.OutputStream;
import java.io.PrintStream;
import org.docx4j.convert.in.Doc;
import org.docx4j.openpackaging.packages.WordprocessingMLPackage;
public class DocToPDFConverter extends DocxToPDFConverter {
public DocToPDFConverter(String inputFilePath, String outputFilePa... | Disable stdout when convert doc to docx | Disable stdout when convert doc to docx
| Java | mit | dvijeshpatel/docs-to-pdf-converter,yeokm1/docs-to-pdf-converter |
e02b31012d0d87faa9ed6360e4e2e65589061c73 | core/src/main/java/com/dtolabs/rundeck/core/storage/StorageTimestamperConverter.java | core/src/main/java/com/dtolabs/rundeck/core/storage/StorageTimestamperConverter.java | package com.dtolabs.rundeck.core.storage;
import com.dtolabs.rundeck.plugins.storage.StorageConverterPlugin;
import org.rundeck.storage.api.HasInputStream;
import org.rundeck.storage.api.Path;
import java.util.Date;
/**
* StorageTimestamperConverter sets modification and creation timestamp metadata for updated/crea... | package com.dtolabs.rundeck.core.storage;
import com.dtolabs.rundeck.plugins.storage.StorageConverterPlugin;
import org.rundeck.storage.api.HasInputStream;
import org.rundeck.storage.api.Path;
import java.util.Date;
/**
* StorageTimestamperConverter sets modification and creation timestamp metadata for updated/crea... | Include a modification time on resource creation | Include a modification time on resource creation
| Java | apache-2.0 | damageboy/rundeck,variacode/rundeck,jgpacker/rundeck,paul-krohn/rundeck,variacode95/rundeck,tjordanchat/rundeck,variacode/rundeck,patcadelina/rundeck,jamieps/rundeck,jgpacker/rundeck,rophy/rundeck,jgpacker/rundeck,damageboy/rundeck,rophy/rundeck,variacode/rundeck,paul-krohn/rundeck,rundeck/rundeck,jamieps/rundeck,damag... |
81a7e79238b535951f708f294287f83bf0c7f971 | service/device/call/api/src/main/java/org/eclipse/kapua/service/device/call/message/DeviceMessage.java | service/device/call/api/src/main/java/org/eclipse/kapua/service/device/call/message/DeviceMessage.java | /*******************************************************************************
* Copyright (c) 2011, 2016 Eurotech and/or its affiliates 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... | /*******************************************************************************
* Copyright (c) 2011, 2017 Eurotech and/or its affiliates 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... | Clear warning by using correct types | Clear warning by using correct types
Signed-off-by: Jens Reimann <d1bf62d29e711fdf0a5795916341a7b53d204e2a@redhat.com> | Java | epl-1.0 | stzilli/kapua,LeoNerdoG/kapua,LeoNerdoG/kapua,LeoNerdoG/kapua,cbaerikebc/kapua,cbaerikebc/kapua,stzilli/kapua,stzilli/kapua,stzilli/kapua,stzilli/kapua,LeoNerdoG/kapua,LeoNerdoG/kapua,cbaerikebc/kapua,cbaerikebc/kapua |
aea65f9ccbc6f34c21fc752568afde9d444eb6dc | src/test/java/com/zaxxer/hikari/TestFastStatementList.java | src/test/java/com/zaxxer/hikari/TestFastStatementList.java | package com.zaxxer.hikari;
import java.sql.Statement;
import java.util.ArrayList;
import org.junit.Assert;
import org.junit.Test;
import com.zaxxer.hikari.performance.StubStatement;
import com.zaxxer.hikari.util.FastStatementList;
public class TestFastStatementList
{
@Test
public void testOverflow()
{
... | package com.zaxxer.hikari;
import java.sql.Statement;
import java.util.ArrayList;
import org.junit.Assert;
import org.junit.Test;
import com.zaxxer.hikari.mocks.StubStatement;
import com.zaxxer.hikari.util.FastStatementList;
public class TestFastStatementList
{
@Test
public void testOverflow()
{
... | Delete performance benchmarks, they are now hosted as a separate github repository. | Delete performance benchmarks, they are now hosted as a separate github repository.
| Java | apache-2.0 | brettwooldridge/HikariCP,sridhar-newsdistill/HikariCP,guai/HikariCP,brettwooldridge/HikariCP,polpot78/HikariCP,yaojuncn/HikariCP,kschmit90/HikariCP,785468931/HikariCP,bobwenx/HikariCP,ligzy/HikariCP,udayshnk/HikariCP,hito-asa/HikariCP,squidsolutions/HikariCP,schlosna/HikariCP,Violantic/HikariCP,guai/HikariCP,ams2990/Hi... |
ea5beaf9616b7891e7ea375840accaeb3ed5c08b | src/main/java/com/github/pedrovgs/problem59/DeleteListNode.java | src/main/java/com/github/pedrovgs/problem59/DeleteListNode.java | /*
* Copyright (C) 2014 Pedro Vicente Gómez Sánchez.
*
* 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 ... | /*
* Copyright (C) 2014 Pedro Vicente Gómez Sánchez.
*
* 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 ... | Add solution to problem 59 | Add solution to problem 59
| Java | apache-2.0 | 007slm/Algorithms,Arkar-Aung/Algorithms,AppScientist/Algorithms,VeskoI/Algorithms,JeffreyWei/Algorithms,ajinkyakolhe112/Algorithms,mrgenco/Algorithms-1,zhdh2008/Algorithms,chengjinqian/Algorithms,jibaro/Algorithms,Ariloum/Algorithms,inexistence/Algorithms,pedrovgs/Algorithms,ArlenLiu/Algorithms,zmywly8866/Algorithms,sr... |
0aea740fef8b6d3e6543b4d138c1e4b6923a3d5d | src/test/java/com/github/pedrovgs/problem22/ReverseLinkedListTest.java | src/test/java/com/github/pedrovgs/problem22/ReverseLinkedListTest.java | /*
* Copyright (C) 2014 Pedro Vicente Gómez Sánchez.
*
* 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 ... | /*
* Copyright (C) 2014 Pedro Vicente Gómez Sánchez.
*
* 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 ... | Add some tests to problem 22 | Add some tests to problem 22
| Java | apache-2.0 | ArlenLiu/Algorithms,Arkar-Aung/Algorithms,AppScientist/Algorithms,pedrovgs/Algorithms,chengjinqian/Algorithms,VeskoI/Algorithms,sridhar-newsdistill/Algorithms,jibaro/Algorithms,Ariloum/Algorithms,mrgenco/Algorithms-1,JeffreyWei/Algorithms,inexistence/Algorithms,zhdh2008/Algorithms,zmywly8866/Algorithms,ajinkyakolhe112/... |
2f1f2c2b48ee14f4ad43e154ce8fb17a440f3d34 | sdk-server/src/main/java/com/digitalpetri/opcua/sdk/server/identity/AnonymousIdentityValidator.java | sdk-server/src/main/java/com/digitalpetri/opcua/sdk/server/identity/AnonymousIdentityValidator.java | /*
* digitalpetri OPC-UA SDK
*
* Copyright (C) 2015 Kevin Herron
*
* 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... | /*
* digitalpetri OPC-UA SDK
*
* Copyright (C) 2015 Kevin Herron
*
* 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... | Use a singleton object for anonymous identities | Use a singleton object for anonymous identities
| Java | agpl-3.0 | digitalpetri/ua-server-sdk,bencaldwell/ua-server-sdk |
e5a6f488acaa4b7723a2401dbbdff3f59695a7f3 | commons/src/main/java/org/eclipse/kapua/commons/model/id/IdGenerator.java | commons/src/main/java/org/eclipse/kapua/commons/model/id/IdGenerator.java | /*******************************************************************************
* Copyright (c) 2011, 2016 Eurotech and/or its affiliates
*
* 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 distributi... | /*******************************************************************************
* Copyright (c) 2011, 2016 Eurotech and/or its affiliates
*
* 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 distributi... | Apply code formatter and code style | Apply code formatter and code style | Java | epl-1.0 | stzilli/kapua,stzilli/kapua,LeoNerdoG/kapua,stzilli/kapua,stzilli/kapua,LeoNerdoG/kapua,LeoNerdoG/kapua,stzilli/kapua,LeoNerdoG/kapua,LeoNerdoG/kapua |
157f43c5517cda5211470e9c483ce1a80be38269 | uitest/src/com/vaadin/tests/components/ui/TestUITheme.java | uitest/src/com/vaadin/tests/components/ui/TestUITheme.java | package com.vaadin.tests.components.ui;
import com.vaadin.annotations.Theme;
import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractTestUI;
import com.vaadin.ui.Label;
@Theme("tests-tickets")
public class TestUITheme extends AbstractTestUI {
@Override
protected void setup(VaadinRe... | package com.vaadin.tests.components.ui;
import com.vaadin.annotations.Theme;
import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractTestUI;
import com.vaadin.ui.Label;
@Theme("tests-tickets")
public class TestUITheme extends AbstractTestUI {
@Override
protected void setup(VaadinRe... | Update test to not use red for success. | Update test to not use red for success. | Java | apache-2.0 | peterl1084/framework,synes/vaadin,jdahlstrom/vaadin.react,shahrzadmn/vaadin,Scarlethue/vaadin,asashour/framework,synes/vaadin,Flamenco/vaadin,sitexa/vaadin,shahrzadmn/vaadin,cbmeeks/vaadin,magi42/vaadin,bmitc/vaadin,mstahv/framework,magi42/vaadin,jdahlstrom/vaadin.react,fireflyc/vaadin,oalles/vaadin,kironapublic/vaadin... |
a6948dd55e3a44d0db8cb59ca754489382ee1f9a | lazybot-core/src/main/java/org/royjacobs/lazybot/hipchat/server/Paths.java | lazybot-core/src/main/java/org/royjacobs/lazybot/hipchat/server/Paths.java | package org.royjacobs.lazybot.hipchat.server;
public class Paths {
public static String PATH_CAPABILITIES = "capabilities";
public static String PATH_INSTALL = "install";
public static String PATH_WEBHOOK_ROOM_MESSAGE = "webhooks/room_message";
public static String PATH_GLANCES = "glances";
}
| package org.royjacobs.lazybot.hipchat.server;
public class Paths {
public static String PATH_CAPABILITIES = "";
public static String PATH_INSTALL = "install";
public static String PATH_WEBHOOK_ROOM_MESSAGE = "webhooks/room_message";
public static String PATH_GLANCES = "glances";
}
| Set capabilities path to root | Set capabilities path to root
| Java | mit | Idoneus/buildbot,Idoneus/buildbot,RoyJacobs/lazybot,RoyJacobs/lazybot |
ef2a064db4600729c8ab0a0ebe34f11370d45eb7 | integration-tests/src/test/java/org/realityforge/arez/integration/AbstractArezIntegrationTest.java | integration-tests/src/test/java/org/realityforge/arez/integration/AbstractArezIntegrationTest.java | package org.realityforge.arez.integration;
import org.realityforge.arez.ArezTestUtil;
import org.realityforge.braincheck.BrainCheckTestUtil;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
@SuppressWarnings( "Duplicates" )
public abstract class AbstractArezIntegrationTest
{
@B... | package org.realityforge.arez.integration;
import java.util.ArrayList;
import java.util.stream.Collectors;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import org.realityforge.arez.Arez;
import org.realityforge.arez.ArezTestUtil;
import org.realityforge.arez.Observer;
import org.realityforge.arez... | Make sure tests fail if unexpected observer errors occur | Make sure tests fail if unexpected observer errors occur
| Java | apache-2.0 | realityforge/arez,realityforge/arez,realityforge/arez |
fff42ea27f01cd8831859bcf26e30c2609a4028e | dss-document/src/test/java/eu/europa/ec/markt/dss/validation102853/tsl/TrustedListCertificateSourceTest.java | dss-document/src/test/java/eu/europa/ec/markt/dss/validation102853/tsl/TrustedListCertificateSourceTest.java | package eu.europa.ec.markt.dss.validation102853.tsl;
import org.junit.Assert;
import org.junit.Test;
import eu.europa.ec.markt.dss.validation102853.https.CommonsDataLoader;
public class TrustedListCertificateSourceTest {
@Test
public void test1() throws Exception {
TrustedListsCertificateSource source = new... | package eu.europa.ec.markt.dss.validation102853.tsl;
import java.net.UnknownHostException;
import org.junit.Assert;
import org.junit.Test;
import eu.europa.ec.markt.dss.validation102853.https.CommonsDataLoader;
public class TrustedListCertificateSourceTest {
@Test
public void test1() throws Exception {
try {
... | Test should not break when no internet connection | Test should not break when no internet connection | Java | lgpl-2.1 | esig/dss,zsoltii/dss,zsoltii/dss,alisdev/dss,openlimit-signcubes/dss,esig/dss,openlimit-signcubes/dss,alisdev/dss |
d431ebba6f923ae801c47c02a19e107a61210845 | elasticsearch/src/test/java/org/elasticsearch/xpack/prelert/integration/PrelertYamlTestSuiteIT.java | elasticsearch/src/test/java/org/elasticsearch/xpack/prelert/integration/PrelertYamlTestSuiteIT.java | /*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
package org.elasticsearch.xpack.prelert.integration;
import com.carrotsearch.... | /*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
package org.elasticsearch.xpack.prelert.integration;
import com.carrotsearch.... | Fix compilation after upstream changes | Fix compilation after upstream changes
Original commit: elastic/x-pack-elasticsearch@b1cb074651dec52a1e4beaa2788b3461d2172c53
| Java | apache-2.0 | robin13/elasticsearch,uschindler/elasticsearch,coding0011/elasticsearch,GlenRSmith/elasticsearch,robin13/elasticsearch,HonzaKral/elasticsearch,robin13/elasticsearch,coding0011/elasticsearch,robin13/elasticsearch,strapdata/elassandra,HonzaKral/elasticsearch,gfyoung/elasticsearch,strapdata/elassandra,vroyer/elassandra,gf... |
dbb06320bb162514e6a0334e7855b5cc5749eb5b | python/educational-python/student-python/src/com/jetbrains/edu/learning/PyStudyToolWindowConfigurator.java | python/educational-python/student-python/src/com/jetbrains/edu/learning/PyStudyToolWindowConfigurator.java | package com.jetbrains.edu.learning;
import com.intellij.openapi.actionSystem.DefaultActionGroup;
import com.intellij.openapi.project.Project;
import com.jetbrains.edu.courseFormat.Course;
import org.jetbrains.annotations.NotNull;
public class PyStudyToolWindowConfigurator extends StudyBaseToolWindowConfigurator {
... | package com.jetbrains.edu.learning;
import com.intellij.openapi.actionSystem.DefaultActionGroup;
import com.intellij.openapi.project.Project;
import com.jetbrains.edu.courseFormat.Course;
import org.jetbrains.annotations.NotNull;
public class PyStudyToolWindowConfigurator extends StudyBaseToolWindowConfigurator {
... | Fix study actions order on the toolbar | Fix study actions order on the toolbar
| Java | apache-2.0 | apixandru/intellij-community,suncycheng/intellij-community,suncycheng/intellij-community,signed/intellij-community,vvv1559/intellij-community,ibinti/intellij-community,FHannes/intellij-community,FHannes/intellij-community,ThiagoGarciaAlves/intellij-community,michaelgallacher/intellij-community,hurricup/intellij-communi... |
fca2057402dc0a6accfad39b49f7172cbe92e27c | bndtools.utils/src/org/bndtools/utils/workspace/WorkspaceUtils.java | bndtools.utils/src/org/bndtools/utils/workspace/WorkspaceUtils.java | package org.bndtools.utils.workspace;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IWorkspaceRoot;
import org.eclipse.core.resources.ResourcesPlugin;
import aQute.bnd.build.Project;
public class WorkspaceUtils {
public static IProject findOpenProject(IWorkspaceRoot wsroot, Proje... | package org.bndtools.utils.workspace;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IWorkspaceRoot;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.IPath;
import aQute.bnd.build.Project;
public class WorkspaceUtils {
public static IProject findO... | Handle mapping bnd project name to renamed eclipse project | utils: Handle mapping bnd project name to renamed eclipse project
If you rename a project in eclipse, it does not change the folder name
just the project name in .project. This change deals with such a rename
when bndtools needs to find the eclipse project for a bnd project.
Signed-off-by: BJ Hargrave <3d26bb3930946e... | Java | apache-2.0 | timothyjward/bndtools,bndtools/bndtools,bndtools/bndtools,grfield/bndtools,psoreide/bnd,pkriens/bndtools,bjhargrave/bndtools,seanbright/bndtools,seanbright/bndtools,wodencafe/bndtools,wodencafe/bndtools,timothyjward/bndtools,seanbright/bndtools,bndtools/bndtools,timothyjward/bndtools,lostiniceland/bndtools,lostinicelan... |
617c60810c26c1dc39333a9e3acee3e2447106b2 | org.eclipse.dawnsci.analysis.api/src/org/eclipse/dawnsci/analysis/api/tree/TreeUtils.java | org.eclipse.dawnsci.analysis.api/src/org/eclipse/dawnsci/analysis/api/tree/TreeUtils.java | /*-
* Copyright 2015 Diamond Light Source Ltd.
*
* 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.eclips... | /*-
* Copyright 2015 Diamond Light Source Ltd.
*
* 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.eclips... | Change path to end with separator if it refers to a group | Change path to end with separator if it refers to a group | Java | epl-1.0 | xen-0/dawnsci,jonahkichwacoders/dawnsci,jamesmudd/dawnsci,jamesmudd/dawnsci,jonahkichwacoders/dawnsci,willrogers/dawnsci,eclipse/dawnsci,Anthchirp/dawnsci,Anthchirp/dawnsci,colinpalmer/dawnsci,colinpalmer/dawnsci,PeterC-DLS/org.eclipse.dataset,belkassaby/dawnsci,DawnScience/dawnsci,willrogers/dawnsci,PeterC-DLS/org.ecl... |
7b88d410c1e8eb1f635a08af7089f14c840e9149 | python/testSrc/com/jetbrains/python/PyConsoleIndentTest.java | python/testSrc/com/jetbrains/python/PyConsoleIndentTest.java | package com.jetbrains.python;
import com.intellij.openapi.util.io.FileUtil;
import com.intellij.testFramework.UsefulTestCase;
import com.jetbrains.python.console.PyConsoleIndentUtil;
import java.io.File;
import java.io.IOException;
/**
* @author traff
*/
public class PyConsoleIndentTest extends UsefulTestCase {
... | package com.jetbrains.python;
import com.intellij.openapi.util.io.FileUtil;
import com.intellij.openapi.util.text.StringUtil;
import com.intellij.testFramework.UsefulTestCase;
import com.jetbrains.python.console.PyConsoleIndentUtil;
import java.io.File;
import java.io.IOException;
/**
* @author traff
*/
public cla... | Convert line separators in test. | Convert line separators in test.
| Java | apache-2.0 | robovm/robovm-studio,fengbaicanhe/intellij-community,allotria/intellij-community,amith01994/intellij-community,diorcety/intellij-community,idea4bsd/idea4bsd,apixandru/intellij-community,diorcety/intellij-community,pwoodworth/intellij-community,youdonghai/intellij-community,ftomassetti/intellij-community,vladmm/intellij... |
3bca0ad516906dad18a0c9cfe69283687f11edbd | python/src/com/jetbrains/python/psi/impl/PyDecoratorListImpl.java | python/src/com/jetbrains/python/psi/impl/PyDecoratorListImpl.java | package com.jetbrains.python.psi.impl;
import com.intellij.lang.ASTNode;
import com.jetbrains.python.PyElementTypes;
import com.jetbrains.python.psi.PyDecoratorList;
import com.jetbrains.python.psi.PyExpression;
import com.jetbrains.python.psi.stubs.PyDecoratorListStub;
import com.jetbrains.python.psi.PyDecorator;
imp... | package com.jetbrains.python.psi.impl;
import com.intellij.lang.ASTNode;
import com.jetbrains.python.PyElementTypes;
import com.jetbrains.python.psi.PyDecorator;
import com.jetbrains.python.psi.PyDecoratorList;
import com.jetbrains.python.psi.PyElementVisitor;
import com.jetbrains.python.psi.stubs.PyDecoratorListStub;... | Use information from stub for finding decorator in decorators list | Use information from stub for finding decorator in decorators list
| Java | apache-2.0 | akosyakov/intellij-community,izonder/intellij-community,asedunov/intellij-community,dslomov/intellij-community,kool79/intellij-community,ftomassetti/intellij-community,fitermay/intellij-community,adedayo/intellij-community,da1z/intellij-community,allotria/intellij-community,FHannes/intellij-community,salguarnieri/intel... |
d7fb6470fd0fba1c18e7f33e9c21f5ca6bf77cad | src/test/java/org/trello4j/TrelloURLTest.java | src/test/java/org/trello4j/TrelloURLTest.java | package org.trello4j;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
import org.trello4j.model.Action;
/**
* Created with IntelliJ IDEA.
* User: joel
* Date: 2012-04-15
* Time: 11:00 AM
*/
public class TrelloURLTest {
/**
* Should build url with filter.
*
* @throws Exce... | package org.trello4j;
import static org.junit.Assert.assertEquals;
import org.junit.Test;
import org.trello4j.model.Action;
/**
* Created with IntelliJ IDEA.
* User: joel
* Date: 2012-04-15
* Time: 11:00 AM
*/
public class TrelloURLTest {
/**
* Should build url with filter.
*
* @throws Exce... | Test for API url's without path parameters. | Test for API url's without path parameters.
Signed-off-by: joelso <18eaca8d2012d90d448985477d4cb18b3fab3fa4@gmail.com>
| Java | apache-2.0 | dtrott/trello4j,ForNeVeR/trello4j,johanmynhardt/trello4j,Pedramrn/trello4j,smozely/trello4j,joelso/trello4j |
77a8196b7bb3733197587dee3c0bf12da22d45da | core/src/test/java/org/eclipse/gemini/blueprint/internal/service/collection/threading/BaseThreadingTest.java | core/src/test/java/org/eclipse/gemini/blueprint/internal/service/collection/threading/BaseThreadingTest.java | /******************************************************************************
* Copyright (c) 2006, 2010 VMware Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Apache License v2.0 which accompanies this distr... | /******************************************************************************
* Copyright (c) 2006, 2010 VMware Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Apache License v2.0 which accompanies this distr... | Support for junit 4.7+ maven test runner, previously this test would not have been run and without this change it receives a No runnable methods found error. | Support for junit 4.7+ maven test runner, previously this test would not have been run and without this change it receives a No runnable methods found error.
| Java | apache-2.0 | eclipse/gemini.blueprint,eclipse/gemini.blueprint,rritoch/gemini.blueprint,rritoch/gemini.blueprint,BisnodeInformatics/gemini.blueprint,BisnodeInformatics/gemini.blueprint |
1dd661f61907c1acf973c84a6fbf643425ddcb31 | proxy/src/main/java/net/md_5/bungee/connection/PingHandler.java | proxy/src/main/java/net/md_5/bungee/connection/PingHandler.java | package net.md_5.bungee.connection;
import io.netty.buffer.ByteBuf;
import io.netty.buffer.Unpooled;
import io.netty.channel.Channel;
import lombok.RequiredArgsConstructor;
import net.md_5.bungee.api.Callback;
import net.md_5.bungee.api.ServerPing;
import net.md_5.bungee.api.config.ServerInfo;
import net.md_5.bungee.p... | package net.md_5.bungee.connection;
import io.netty.channel.Channel;
import lombok.RequiredArgsConstructor;
import net.md_5.bungee.api.Callback;
import net.md_5.bungee.api.ServerPing;
import net.md_5.bungee.api.config.ServerInfo;
import net.md_5.bungee.packet.PacketFFKick;
import net.md_5.bungee.packet.PacketHandler;
... | Use a byte array in the ping handler for simplicity | Use a byte array in the ping handler for simplicity
| Java | bsd-3-clause | TCPR/BungeeCord,PrisonPvP/BungeeCord,GamesConMCGames/Bungeecord,Xetius/BungeeCord,Yive/BungeeCord,GingerGeek/BungeeCord,Xetius/BungeeCord,ewized/BungeeCord,XMeowTW/BungeeCord,dentmaged/BungeeCord,ewized/BungeeCord,mariolars/BungeeCord,Yive/BungeeCord,LetsPlayOnline/BungeeJumper,BlueAnanas/BungeeCord,BlueAnanas/BungeeCo... |
df4345e0a8fa410ebc2577dfbbb50c6033637c70 | app/src/main/java/com/studio4plus/homerplayer/ui/Speaker.java | app/src/main/java/com/studio4plus/homerplayer/ui/Speaker.java | package com.studio4plus.homerplayer.ui;
import android.content.Context;
import android.speech.tts.TextToSpeech;
import java.util.Locale;
class Speaker implements TextToSpeech.OnInitListener {
private final Locale locale;
private final TextToSpeech tts;
private boolean ttsReady;
private String pendin... | package com.studio4plus.homerplayer.ui;
import android.content.Context;
import android.speech.tts.TextToSpeech;
import java.util.HashMap;
import java.util.Locale;
class Speaker implements TextToSpeech.OnInitListener {
// TTS is usually much louder than a regular audio book recording.
private static final St... | Read audio book titles with a softer voice. | Read audio book titles with a softer voice.
| Java | mit | msimonides/homerplayer,treejames/homerplayer |
6fd50e57448f4a144b13f7cce4d6b1eaef879618 | commons/src/test/java/org/eclipse/kapua/commons/setting/AbstractKapuaSettingTest.java | commons/src/test/java/org/eclipse/kapua/commons/setting/AbstractKapuaSettingTest.java | /*******************************************************************************
* Copyright (c) 2011, 2016 Eurotech and/or its affiliates 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... | /*******************************************************************************
* Copyright (c) 2011, 2017 Eurotech and/or its affiliates 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... | Fix warning about missing type parameter | Fix warning about missing type parameter
Signed-off-by: Jens Reimann <d1bf62d29e711fdf0a5795916341a7b53d204e2a@redhat.com> | Java | epl-1.0 | cbaerikebc/kapua,LeoNerdoG/kapua,stzilli/kapua,stzilli/kapua,stzilli/kapua,cbaerikebc/kapua,LeoNerdoG/kapua,stzilli/kapua,cbaerikebc/kapua,LeoNerdoG/kapua,LeoNerdoG/kapua,stzilli/kapua,cbaerikebc/kapua,LeoNerdoG/kapua |
d8126eca81cda15f09ae03fdb4be810227a61c5f | src/test/java/com/zaxxer/hikari/JdbcDriverTest.java | src/test/java/com/zaxxer/hikari/JdbcDriverTest.java | /*
* Copyright (C) 2014 Brett Wooldridge
*
* 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 agree... | /*
* Copyright (C) 2014 Brett Wooldridge
*
* 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 agree... | Add support for DriverManager and JDBC URL-based pool configuration. | Add support for DriverManager and JDBC URL-based pool configuration.
| Java | apache-2.0 | polpot78/HikariCP,zhuyihao/HikariCP,guai/HikariCP,junlapong/HikariCP,hito-asa/HikariCP,ligzy/HikariCP,atschx/HikariCP,schlosna/HikariCP,ams2990/HikariCP,nitincchauhan/HikariCP,mwegrz/HikariCP,yaojuncn/HikariCP,guai/HikariCP,openbouquet/HikariCP,kschmit90/HikariCP,squidsolutions/HikariCP,Violantic/HikariCP,brettwooldrid... |
959d18089fb357efed4231d8ad0b689ef42452e4 | src/main/java/io/cfp/domain/common/UserAuthentication.java | src/main/java/io/cfp/domain/common/UserAuthentication.java | package io.cfp.domain.common;
import io.cfp.entity.Role;
import io.cfp.entity.User;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.authority.SimpleGrantedAuthority;
import java.util.Collection;
import java.ut... | package io.cfp.domain.common;
import io.cfp.entity.Role;
import io.cfp.entity.User;
import org.springframework.security.core.Authentication;
import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.authority.SimpleGrantedAuthority;
import java.util.Collection;
import java.ut... | Convert roles to GrantedAuthorities in constructor to ease up things | Convert roles to GrantedAuthorities in constructor to ease up things
| Java | agpl-3.0 | mimah/callForPapers,mimah/callForPapers,cfpio/callForPapers,mimah/callForPapers,mimah/callForPapers,cfpio/callForPapers,cfpio/callForPapers |
6de530f0203fdca1fc1c79fc5b6332424557f453 | src/main/java/org/dynmap/Log.java | src/main/java/org/dynmap/Log.java | package org.dynmap;
import java.util.logging.Level;
import java.util.logging.Logger;
public class Log {
protected static Logger log = Logger.getLogger("Dynmap");
protected static String prefix = "";
public static boolean verbose = false;
public static void setLogger(Logger logger, String pre) {
... | package org.dynmap;
import java.util.logging.Level;
import java.util.logging.Logger;
public class Log {
private static Logger log = Logger.getLogger("Dynmap");
private static String prefix = "";
public static boolean verbose = false;
public static void setLogger(Logger logger, String pre) {
lo... | Add API for setting logger parent | Add API for setting logger parent | Java | apache-2.0 | instantdelay/DynmapCore,mikeprimm/DynmapCore,mikeprimm/DynmapCore,KovuTheHusky/DynmapCore,webbukkit/DynmapCore,webbukkit/DynmapCore,instantdelay/DynmapCore,webbukkit/DynmapCore,KovuTheHusky/DynmapCore,mikeprimm/DynmapCore,KovuTheHusky/DynmapCore,webbukkit/DynmapCore,instantdelay/DynmapCore,KovuTheHusky/DynmapCore,insta... |
0e37a9c69f3ddc2c68424ea36c6d945319ba2bae | app/src/main/java/com/studio4plus/homerplayer/HomerPlayerApplication.java | app/src/main/java/com/studio4plus/homerplayer/HomerPlayerApplication.java | package com.studio4plus.homerplayer;
import android.app.Application;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
public class HomerPlayerApplication extends Application {
private static final String AUDIOBOOKS_DIRECTORY = "AudioBooks";
private Applicat... | package com.studio4plus.homerplayer;
import android.app.Application;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
public class HomerPlayerApplication extends Application {
private static final String AUDIOBOOKS_DIRECTORY = "AudioBooks";
private Applicat... | Initialize the ApplicationModule for Dagger. | Initialize the ApplicationModule for Dagger.
| Java | mit | msimonides/homerplayer,treejames/homerplayer |
b965341288bfe4bc748e1e9053d8847b72fa16dc | src/main/com/mongodb/MapReduceOutput.java | src/main/com/mongodb/MapReduceOutput.java | // MapReduceOutput.java
package com.mongodb;
/**
* Represents the result of a map/reduce operation
* @author antoine
*/
public class MapReduceOutput {
MapReduceOutput( DBCollection from , BasicDBObject raw ){
_raw = raw;
if ( raw.containsKey( "results" ) ) {
_coll = null;
... | // MapReduceOutput.java
package com.mongodb;
/**
* Represents the result of a map/reduce operation
* @author antoine
*/
public class MapReduceOutput {
MapReduceOutput( DBCollection from , BasicDBObject raw ){
_raw = raw;
if ( raw.containsKey( "results" ) ) {
_coll = null;
... | Set collection name to 'null' rather than a placeholder for inline results | Set collection name to 'null' rather than a placeholder for inline
results
| Java | apache-2.0 | PSCGroup/mongo-java-driver,jyemin/mongo-java-driver,kevinsawicki/mongo-java-driver,kevinsawicki/mongo-java-driver,wanggc/mongo-java-driver,rozza/mongo-java-driver,wanggc/mongo-java-driver,jyemin/mongo-java-driver,gianpaj/mongo-java-driver,kevinsawicki/mongo-java-driver,davydotcom/mongo-java-driver,davydotcom/mongo-java... |
6ef4de473ebf97dadfac790001fe9ce2d674a9de | src/java/org/robotframework/RunnerFactory.java | src/java/org/robotframework/RunnerFactory.java | /* Copyright 2008-2012 Nokia Siemens Networks Oyj
*
* 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 l... | /* Copyright 2008-2012 Nokia Siemens Networks Oyj
*
* 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 l... | Revert change 00342e052b17 to fix sshlibrary on standalone jar. | Revert change 00342e052b17 to fix sshlibrary on standalone jar.
Update issue 1311
Status: Done
Revert change 00342e052b17 to fix sshlibrary on standalone jar.
| Java | apache-2.0 | xiaokeng/robotframework,userzimmermann/robotframework,JackNokia/robotframework,un33k/robotframework,moto-timo/robotframework,edbrannin/robotframework,dkentw/robotframework,Colorfulstan/robotframework,jaloren/robotframework,SivagnanamCiena/robotframework,yahman72/robotframework,snyderr/robotframework,eric-stanley/robotf... |
323faf98686e671fc817f8f253b720750be9e82f | plugins/IntentionPowerPak/test/com/siyeh/ipp/opassign/assignment/StringOpAssign.java | plugins/IntentionPowerPak/test/com/siyeh/ipp/opassign/assignment/StringOpAssign.java | package com.siyeh.ipp.opassign.assignment;
class StringOpassign {
void foo(String s) {
s += 1<caret>.0;
}
} | /*
* 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... | Fix test data once again | Fix test data once again
| Java | apache-2.0 | slisson/intellij-community,lucafavatella/intellij-community,amith01994/intellij-community,allotria/intellij-community,akosyakov/intellij-community,Lekanich/intellij-community,clumsy/intellij-community,orekyuu/intellij-community,signed/intellij-community,alphafoobar/intellij-community,MER-GROUP/intellij-community,kool79... |
b05f2de02222f0a70e0ed5bd443ae51f0a772e43 | src/main/java/hello/Application.java | src/main/java/hello/Application.java | package hello;
import java.util.Arrays;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.Bean;
... | package hello;
import java.util.Arrays;
import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.Bean;
... | Remove Spring Boot example code. | Remove Spring Boot example code.
| Java | mit | tdd-pingis/tdd-pingpong,tdd-pingis/tdd-pingpong,tdd-pingis/tdd-pingpong,tdd-pingis/tdd-pingpong,Heliozoa/tdd-pingpong,Heliozoa/tdd-pingpong,Heliozoa/tdd-pingpong,Heliozoa/tdd-pingpong |
04ad06ca111358f4510d2849d2b3475d55ee5f02 | android/app/src/main/java/com/reactnativenavigation/events/EventBus.java | android/app/src/main/java/com/reactnativenavigation/events/EventBus.java | package com.reactnativenavigation.events;
import java.lang.ref.WeakReference;
import java.util.ArrayList;
import java.util.List;
import java.util.ListIterator;
public enum EventBus {
instance;
private final List<WeakReference<Subscriber>> subscribers = new ArrayList<>();
public void register(Subscriber ... | package com.reactnativenavigation.events;
import java.lang.ref.WeakReference;
import java.util.ArrayList;
import java.util.List;
import java.util.ListIterator;
public enum EventBus {
instance;
private final List<WeakReference<Subscriber>> subscribers = new ArrayList<>();
public void register(Subscriber ... | Fix concurrent modification exception when switching root | Fix concurrent modification exception when switching root
| Java | mit | brianjd/react-native-navigation,ceyhuno/react-native-navigation,3sidedcube/react-native-navigation,pqkluan/react-native-navigation,chicojasl/react-native-navigation,brianjd/react-native-navigation,lakhman/react-native-navigation,MediaMonksMobile/react-native-navigation,chicojasl/react-native-navigation,MediaMonksMobile... |
8a4aea90aafaca4d4f28873c915ad1f4043dc14b | src/main/java/techreborn/world/DungeonLoot.java | src/main/java/techreborn/world/DungeonLoot.java | package techreborn.world;
import net.minecraft.item.ItemStack;
import net.minecraft.util.WeightedRandomChestContent;
import net.minecraftforge.common.ChestGenHooks;
import techreborn.items.ItemIngots;
public class DungeonLoot {
public static void init()
{
generate(ItemIngots.getIngotByName("steel"), 5);
}
p... | package techreborn.world;
import java.util.Arrays;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.util.WeightedRandomChestContent;
import net.minecraftforge.common.ChestGenHooks;
import techreborn.items.ItemIngots;
public class DungeonLoot {
public static void init()
{
... | Clean up for Dungeon loot code | Clean up for Dungeon loot code
| Java | mit | TechReborn/TechReborn,drcrazy/TechReborn,Dimmerworld/TechReborn |
7a7ffc50167b2603189d8a86eb321cd0fe6f35af | bndtools.core/src/bndtools/ResourceIndexerTracker.java | bndtools.core/src/bndtools/ResourceIndexerTracker.java | package bndtools;
import java.io.File;
import java.io.OutputStream;
import java.io.Writer;
import java.util.Map;
import java.util.Set;
import org.osgi.framework.BundleContext;
import org.osgi.service.indexer.ResourceIndexer;
import org.osgi.util.tracker.ServiceTracker;
public class ResourceIndexerTracker extends Ser... | package bndtools;
import java.io.File;
import java.io.OutputStream;
import java.io.Writer;
import java.util.Map;
import java.util.Set;
import org.osgi.framework.BundleContext;
import org.osgi.service.indexer.ResourceIndexer;
import org.osgi.util.tracker.ServiceTracker;
public class ResourceIndexerTracker extends Ser... | Fix the build: latest bnd includes the most recent repoindex | Fix the build: latest bnd includes the most recent repoindex
Signed-off-by: Ferry Huberts <66e11f9f5d965b69497c7e73d5e808f8b13c1218@pelagic.nl>
| Java | apache-2.0 | psoreide/bnd,bndtools/bndtools,lostiniceland/bndtools,grfield/bndtools,pkriens/bndtools,njbartlett/bndtools,wodencafe/bndtools,pkriens/bndtools,grfield/bndtools,wodencafe/bndtools,lostiniceland/bndtools,pkriens/bndtools,wodencafe/bndtools,timothyjward/bndtools,lostiniceland/bndtools,pkriens/bndtools,grfield/bndtools,lo... |
28230a8b1cb859762c569273c4ccd8f3460897b6 | gerrit-server/src/main/java/com/google/gerrit/server/project/GetParent.java | gerrit-server/src/main/java/com/google/gerrit/server/project/GetParent.java | // Copyright (C) 2012 The Android Open Source Project
//
// 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 ... | // Copyright (C) 2012 The Android Open Source Project
//
// 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 ... | Return via REST 'All-Projects' as parent name for projects under root | Return via REST 'All-Projects' as parent name for projects under root
At the moment asking for the parent name of projects directly under the
'All-Projects' root project may return an empty string. Instead make
sure that in this case always 'All-Projects' is returned as name of the
parent project.
Change-Id: Ie65361d... | Java | apache-2.0 | quyixia/gerrit,joshuawilson/merrit,supriyantomaftuh/gerrit,GerritCodeReview/gerrit,WANdisco/gerrit,joshuawilson/merrit,Saulis/gerrit,anminhsu/gerrit,midnightradio/gerrit,Distrotech/gerrit,pkdevbox/gerrit,gracefullife/gerrit,bootstraponline-archive/gerrit-mirror,thesamet/gerrit,Distrotech/gerrit,renchaorevee/gerrit,ckam... |
a78662432e667cc14436a9e23013b2382e5f58bb | java/client/src/org/openqa/selenium/logging/profiler/HttpProfilerLogEntry.java | java/client/src/org/openqa/selenium/logging/profiler/HttpProfilerLogEntry.java | // Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The SFC licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you m... | // Licensed to the Software Freedom Conservancy (SFC) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The SFC licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you m... | Break dependency on profiler to the json package | Break dependency on profiler to the json package
This lays more of the groundwork for the core package to
no longer be split (required for Java 9 modules) without
us having to do a lot of additional work or move classes
around.
| Java | apache-2.0 | jsakamoto/selenium,asolntsev/selenium,davehunt/selenium,davehunt/selenium,joshbruning/selenium,SeleniumHQ/selenium,asashour/selenium,5hawnknight/selenium,joshbruning/selenium,Dude-X/selenium,oddui/selenium,valfirst/selenium,krmahadevan/selenium,SeleniumHQ/selenium,joshbruning/selenium,krmahadevan/selenium,asashour/sele... |
f76771ff06ef0c3c48af2c673021222486f763a3 | src/com/vectrace/MercurialEclipse/commands/HgMergeClient.java | src/com/vectrace/MercurialEclipse/commands/HgMergeClient.java | /*******************************************************************************
* Copyright (c) 2008 VecTrace (Zingo Andersen) 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 distribu... | /*******************************************************************************
* Copyright (c) 2008 VecTrace (Zingo Andersen) 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 distribu... | Add --config "ui.merge=internal:fail" to merge call | Add --config "ui.merge=internal:fail" to merge call
| Java | epl-1.0 | leinier/mercurialeclipse,naidu/mercurialeclipse,boa0332/mercurialeclipse,tectronics/mercurialeclipse |
2dff861e437d44e06ebc868be99c681b5a906d81 | server/src/main/java/com/google/samples/apps/iosched/server/schedule/reservations/model/Reservation.java | server/src/main/java/com/google/samples/apps/iosched/server/schedule/reservations/model/Reservation.java | /*
* Copyright 2017 Google 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 applic... | /*
* Copyright 2017 Google 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 applic... | Add results to LoadSessionServlet model. | Add results to LoadSessionServlet model.
Each reservation may contain many results. Since clients may
be depending on these results we will want to keep them
constant when loading sessions from the CMS. This means that
results must be included in the model that is used to update
the reservation.
Change-Id: I8318b3866... | Java | apache-2.0 | WeRockStar/iosched,jarekankowski/iosched,WeRockStar/iosched,jarekankowski/iosched,WeRockStar/iosched,jarekankowski/iosched |
8fa560544db7cb626d2b226f7ad04f8fc69b1244 | org/xbill/DNS/WireParseException.java | org/xbill/DNS/WireParseException.java | // Copyright (c) 1999-2004 Brian Wellington (bwelling@xbill.org)
package org.xbill.DNS;
import java.io.*;
/**
* An exception thrown when a DNS message is invalid.
*
* @author Brian Wellington
*/
public class WireParseException extends IOException {
public
WireParseException() {
super();
}
public
WireParseExc... | // Copyright (c) 1999-2004 Brian Wellington (bwelling@xbill.org)
package org.xbill.DNS;
import java.io.*;
/**
* An exception thrown when a DNS message is invalid.
*
* @author Brian Wellington
*/
public class WireParseException extends IOException {
public
WireParseException() {
super();
}
public
WireParseExc... | Add a constructor that takes a cause Exception. | Add a constructor that takes a cause Exception.
git-svn-id: becfadaebdf67c7884f0d18099f2460615305e2e@1638 c76caeb1-94fd-44dd-870f-0c9d92034fc1
| Java | bsd-2-clause | jitsi/dnsjava,yplo6403/dnsjava,mohamad-z/dnsjava,slackwareer/javadns,dnsjava/dnsjava,yplo6403/dnsjava,jitsi/dnsjava,mohamad-z/dnsjava,draekko/dnsjava,tks-dp/dnsjava,ieugen/dnsjava,draekko/dnsjava,tks-dp/dnsjava,wmudge/dnsjava,wmudge/dnsjava |
fffcd6d89bf17d6ec829859f4e5703c5294dd1a2 | src/main/java/com/github/pedrovgs/problem70/ReverseOrderOfBinaryNumber.java | src/main/java/com/github/pedrovgs/problem70/ReverseOrderOfBinaryNumber.java | /*
* Copyright (C) 2014 Pedro Vicente Gómez Sánchez.
*
* 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 ... | /*
* Copyright (C) 2014 Pedro Vicente Gómez Sánchez.
*
* 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 ... | Add solution to problem 70 | Add solution to problem 70
| Java | apache-2.0 | zmywly8866/Algorithms,jibaro/Algorithms,inexistence/Algorithms,007slm/Algorithms,mrgenco/Algorithms-1,AppScientist/Algorithms,sridhar-newsdistill/Algorithms,Arkar-Aung/Algorithms,ajinkyakolhe112/Algorithms,Ariloum/Algorithms,pedrovgs/Algorithms,JeffreyWei/Algorithms,chengjinqian/Algorithms,zhdh2008/Algorithms,VeskoI/Al... |
6319f6ba94d2bc750d0b49f37ae59f6d1de62d0a | Runtime/src/com/kotcrab/vis/runtime/component/VariablesComponent.java | Runtime/src/com/kotcrab/vis/runtime/component/VariablesComponent.java | /*
* Copyright 2014-2015 See AUTHORS file.
*
* 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... | /*
* Copyright 2014-2015 See AUTHORS file.
*
* 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... | Add getInt, getFloat, getBoolean to variables | Add getInt, getFloat, getBoolean to variables
| Java | apache-2.0 | StQuote/VisEditor,billy1380/VisEditor,piotr-j/VisEditor,piotr-j/VisEditor,kotcrab/vis-editor,intrigus/VisEditor,kotcrab/VisEditor,kotcrab/vis-editor |
9fdfd37e9dff9c76e407fb7daa35a1192d555c0a | src/main/java/com/forgeessentials/multiworld/MultiworldException.java | src/main/java/com/forgeessentials/multiworld/MultiworldException.java | package com.forgeessentials.multiworld;
public class MultiworldException extends Exception
{
private static final long serialVersionUID = 1L;
public static enum Type
{
ALREADY_EXISTS("A world with that name already exists"),
NO_PROVIDER("No world provider %s found!"),
NO_WORLDTYPE("No w... | package com.forgeessentials.multiworld;
public class MultiworldException extends Exception
{
private static final long serialVersionUID = 1L;
public static enum Type
{
ALREADY_EXISTS("A world with that name already exists"),
NO_PROVIDER("There is no provider by that name"),
NO_WORLDTYPE... | Fix client crash caused by %s in the exception message. | [multiworld] Fix client crash caused by %s in the exception message. | Java | epl-1.0 | CityOfLearning/ForgeEssentials,Techjar/ForgeEssentials,aschmois/ForgeEssentialsMain,ForgeEssentials/ForgeEssentialsMain,planetguy32/ForgeEssentials,liachmodded/ForgeEssentials |
41dde73589308e628aeaed1a86fbea918123819b | src/test/java/com/pardot/rhombus/functional/CassandraConnectionITCase.java | src/test/java/com/pardot/rhombus/functional/CassandraConnectionITCase.java | package com.pardot.rhombus.functional;
import static org.junit.Assert.*;
import com.datastax.driver.core.exceptions.InvalidConfigurationInQueryException;
import com.pardot.rhombus.helpers.TestHelpers;
import org.junit.Test;
import com.datastax.driver.core.Session;
import com.pardot.rhombus.ConnectionManager;
impor... | package com.pardot.rhombus.functional;
import static org.junit.Assert.*;
import com.datastax.driver.core.exceptions.InvalidConfigurationInQueryException;
import com.datastax.driver.core.exceptions.InvalidQueryException;
import com.pardot.rhombus.helpers.TestHelpers;
import org.junit.Test;
import com.datastax.driver.... | Fix test case to work with newest version of datastax java driver | Fix test case to work with newest version of datastax java driver
| Java | mit | Pardot/Rhombus,ybrs/Rhombus,ybrs/Rhombus,Pardot/Rhombus |
88c37546bf387b070e91571b590b02bdfe85d73b | src/main/java/com/mangofactory/swagger/configuration/JacksonScalaSupport.java | src/main/java/com/mangofactory/swagger/configuration/JacksonScalaSupport.java | package com.mangofactory.swagger.configuration;
import com.fasterxml.jackson.module.scala.DefaultScalaModule;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter... | package com.mangofactory.swagger.configuration;
import com.fasterxml.jackson.module.scala.DefaultScalaModule;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.http.converter.json.MappingJackson2HttpMessageConverter... | Remove @Component - client spring config should configure this bean if its required | Remove @Component - client spring config should configure this bean if its required
| Java | apache-2.0 | yelhouti/springfox,erikthered/springfox,arshadalisoomro/springfox,springfox/springfox,arshadalisoomro/springfox,namkee/springfox,maksimu/springfox,wjc133/springfox,qq291462491/springfox,ammmze/swagger-springmvc,wjc133/springfox,RobWin/springfox,namkee/springfox,wjc133/springfox,erikthered/springfox,namkee/springfox,tho... |
4e55bd01170075814fdad589f111a47d324889ca | core/src/main/java/org/springframework/security/config/SecurityConfigurationException.java | core/src/main/java/org/springframework/security/config/SecurityConfigurationException.java | package org.springframework.security.config;
/**
* @author Luke Taylor
* @version $Id$
*/
public class SecurityConfigurationException extends RuntimeException {
public SecurityConfigurationException(String s) {
super(s);
}
public SecurityConfigurationException(String s, Throwable throwable) {
... | package org.springframework.security.config;
import org.springframework.security.SpringSecurityException;
/**
* @author Luke Taylor
* @author Ben Alex
* @version $Id$
*/
public class SecurityConfigurationException extends SpringSecurityException {
public SecurityConfigurationException(String s) {
sup... | Make extend Spring Security's exception, for consistency with all other Spring Security exceptions. | Make extend Spring Security's exception, for consistency with all other Spring Security exceptions.
| Java | apache-2.0 | izeye/spring-security,kazuki43zoo/spring-security,eddumelendez/spring-security,xingguang2013/spring-security,spring-projects/spring-security,rwinch/spring-security,thomasdarimont/spring-security,chinazhaoht/spring-security,SanjayUser/SpringSecurityPro,mrkingybc/spring-security,ractive/spring-security,djechelon/spring-s... |
81cb6067be3bfd2d3adffdc10ce1a6851e152e8c | blueprint/blueprint-bundle/src/main/java/org/apache/aries/blueprint/uberbundle/UberActivator.java | blueprint/blueprint-bundle/src/main/java/org/apache/aries/blueprint/uberbundle/UberActivator.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
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | /*
* 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 ... | Fix problem with the proxy activator when using the blueprint bundle | Fix problem with the proxy activator when using the blueprint bundle
git-svn-id: 212869a37fe990abe2323f86150f3c4d5a6279c2@1033177 13f79535-47bb-0310-9956-ffa450edef68
| Java | apache-2.0 | rotty3000/aries,alien11689/aries,rotty3000/aries,alien11689/aries,graben/aries,graben/aries,apache/aries,apache/aries,graben/aries,alien11689/aries,apache/aries,rotty3000/aries,graben/aries,apache/aries,rotty3000/aries,alien11689/aries |
a66cef5dca6c552bc6d8ae76ffaea910366db759 | src/main/java/io/bit3/jsass/context/ImportStack.java | src/main/java/io/bit3/jsass/context/ImportStack.java | package io.bit3.jsass.context;
import io.bit3.jsass.importer.Import;
import java.util.HashMap;
import java.util.Map;
import java.util.Stack;
/**
* Stack for tracking currently evaluated file.
*/
public class ImportStack {
/**
* A registry where each import will be registered by an incrementing ID.
*/
pr... | package io.bit3.jsass.context;
import io.bit3.jsass.importer.Import;
import java.util.Deque;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.Map;
/**
* Stack for tracking currently evaluated file.
*/
public class ImportStack {
/**
* A registry where each import will be registered by a... | Use a Deque instead of Stack. | Use a Deque instead of Stack.
java.util.Stack is synchronized which is not necessary here.
| Java | mit | Altometrics/jsass,Altometrics/jsass,bit3/jsass,bit3/jsass,bit3/jsass,Altometrics/jsass |
b5240dbdee98a01845a5ffa095aeb16e1ce8b2b1 | Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/FrameworkLogger.java | Tools/Source/FrameworkTasks/org/tianocore/framework/tasks/FrameworkLogger.java | /*++
Copyright (c) 2006, Intel Corporation
All rights reserved. This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-licen... | /*++
Copyright (c) 2006, Intel Corporation
All rights reserved. This program and the accompanying materials
are licensed and made available under the terms and conditions of the BSD License
which accompanies this distribution. The full text of the license may be found at
http://opensource.org/licenses/bsd-licen... | Update for the interface has changed. | Update for the interface has changed.
git-svn-id: 5648d1bec6962b0a6d1d1b40eba8cf5cdb62da3d@1455 6f19259b-4bc3-4df7-8a09-765794883524
| Java | bsd-2-clause | MattDevo/edk2,MattDevo/edk2,MattDevo/edk2,MattDevo/edk2,MattDevo/edk2,MattDevo/edk2,MattDevo/edk2,MattDevo/edk2 |
61152ed517a58d386ecd0cd4d4a5a4f36eb826e4 | src/main/java/com/github/pedrovgs/problem27/ReverseSentence.java | src/main/java/com/github/pedrovgs/problem27/ReverseSentence.java | /*
* Copyright (C) 2014 Pedro Vicente Gómez Sánchez.
*
* 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 ... | /*
* Copyright (C) 2014 Pedro Vicente Gómez Sánchez.
*
* 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 ... | Implement iterative solution to problem 27 | Implement iterative solution to problem 27
| Java | apache-2.0 | JeffreyWei/Algorithms,chengjinqian/Algorithms,ArlenLiu/Algorithms,VeskoI/Algorithms,AppScientist/Algorithms,zhdh2008/Algorithms,ajinkyakolhe112/Algorithms,Arkar-Aung/Algorithms,mrgenco/Algorithms-1,inexistence/Algorithms,jibaro/Algorithms,Ariloum/Algorithms,007slm/Algorithms,zmywly8866/Algorithms,pedrovgs/Algorithms,sr... |
f3456ce098d3357d09a0adf8d289e847101a507c | testsuite/src/test/java/io/netty/testsuite/transport/socket/nio/oio/NioOioDatagramMulticastTest.java | testsuite/src/test/java/io/netty/testsuite/transport/socket/nio/oio/NioOioDatagramMulticastTest.java | package io.netty.testsuite.transport.socket.nio.oio;
import java.util.concurrent.Executor;
import io.netty.channel.socket.DatagramChannelFactory;
import io.netty.channel.socket.nio.NioDatagramChannelFactory;
import io.netty.channel.socket.oio.OioDatagramChannelFactory;
import io.netty.testsuite.transport.socket.Abstr... | package io.netty.testsuite.transport.socket.nio.oio;
import java.util.concurrent.Executor;
import io.netty.channel.socket.DatagramChannelFactory;
import io.netty.channel.socket.nio.NioDatagramChannel;
import io.netty.channel.socket.nio.NioDatagramChannelFactory;
import io.netty.channel.socket.oio.OioDatagramChannelFa... | Make sure multicast tests pass on all os'es | Make sure multicast tests pass on all os'es
| Java | apache-2.0 | louiscryan/netty,Alwayswithme/netty,Scottmitch/netty,kvr000/netty,nkhuyu/netty,slandelle/netty,chinayin/netty,danny200309/netty,hepin1989/netty,wuyinxian124/netty,orika/netty,hyangtack/netty,yonglehou/netty-1,xiongzheng/netty,ngocdaothanh/netty,JungMinu/netty,nayato/netty,windie/netty,yawkat/netty,drowning/netty,wuyinx... |
01b213d5e9c759cc7757c10ebf1b6280bee5e161 | core/src/main/java/com/dtolabs/rundeck/core/CoreException.java | core/src/main/java/com/dtolabs/rundeck/core/CoreException.java | /*
* Copyright 2010 DTO Labs, Inc. (http://dtolabs.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/LICENSE-2.0
*
* Unless required by... | /*
* Copyright 2010 DTO Labs, Inc. (http://dtolabs.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/LICENSE-2.0
*
* Unless required by... | Change to extend RTE not ant exception | Change to extend RTE not ant exception
| Java | apache-2.0 | jgpacker/rundeck,damageboy/rundeck,jgpacker/rundeck,rundeck/rundeck,patcadelina/rundeck,variacode/rundeck,rophy/rundeck,paul-krohn/rundeck,variacode/rundeck,tjordanchat/rundeck,variacode95/rundeck,variacode/rundeck,damageboy/rundeck,patcadelina/rundeck,paul-krohn/rundeck,variacode/rundeck,tjordanchat/rundeck,jamieps/ru... |
d5fc3840885bfd038b10ae9f8453a7600ebb6465 | jpos/src/main/org/jpos/iso/ISOException.java | jpos/src/main/org/jpos/iso/ISOException.java | package org.jpos.iso;
/**
* Signals that an ISO exception of some sort has occurred.
*
* @author apr@cs.com.uy
* @version $Id$
*/
public
class ISOException extends Exception {
/**
* Constructs an <code>ISOException</code> with no detail message.
*/
public ISOException() {
super();
... | package org.jpos.iso;
import java.io.PrintStream;
import org.jpos.util.Loggeable;
/**
* Signals that an ISO exception of some sort has occurred.
*
* @author <a href="mailto:apr@cs.com.uy">Alejandro P. Revilla</a>
* @version $Revision$ $Date$
*/
public class ISOException extends Exception implements Loggeable {... | Support nested exceptions, implement Loggeable | Support nested exceptions, implement Loggeable
| Java | agpl-3.0 | poynt/jPOS,sebastianpacheco/jPOS,juanibdn/jPOS,yinheli/jPOS,poynt/jPOS,atancasis/jPOS,yinheli/jPOS,barspi/jPOS,bharavi/jPOS,chhil/jPOS,imam-san/jPOS-1,c0deh4xor/jPOS,alcarraz/jPOS,sebastianpacheco/jPOS,chhil/jPOS,yinheli/jPOS,jpos/jPOS,imam-san/jPOS-1,juanibdn/jPOS,poynt/jPOS,fayezasar/jPOS,bharavi/jPOS,bharavi/jPOS,c0... |
232212c0f0a3b1fbcc09dd0d017caa6abcd8a9ea | platform/platform-impl/src/com/intellij/remote/RemoteConnectionType.java | platform/platform-impl/src/com/intellij/remote/RemoteConnectionType.java | package com.intellij.remote;
import com.intellij.openapi.diagnostic.Logger;
/**
* This class denotes the type of the source to obtain remote credentials.
*
* @author traff
*/
public enum RemoteConnectionType {
/**
* Currently selected SDK (e.g. <Project default>)
*/
DEFAULT_SDK,
/**
* Web deploy... | package com.intellij.remote;
import com.intellij.openapi.diagnostic.Logger;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
/**
* This class denotes the type of the source to obtain remote credentials.
*
* @author traff
*/
public enum RemoteConnectionType {
/**
* Curren... | Return NONE connection type for null. | Return NONE connection type for null.
| Java | apache-2.0 | fitermay/intellij-community,fengbaicanhe/intellij-community,amith01994/intellij-community,wreckJ/intellij-community,ibinti/intellij-community,gnuhub/intellij-community,suncycheng/intellij-community,ibinti/intellij-community,apixandru/intellij-community,da1z/intellij-community,vvv1559/intellij-community,Lekanich/intelli... |
b20701e5e14e28d25b6af5a74e599f0c8d9ca6a3 | dropwizard/src/main/java/com/example/helloworld/resources/JsonResource.java | dropwizard/src/main/java/com/example/helloworld/resources/JsonResource.java |
package com.example.helloworld.resources;
import java.util.HashMap;
import java.util.Map;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
@Path("/json")
@Produces(MediaType.APPLICATION_JSON)
public class JsonResource
{
private final Map<String, Stri... |
package com.example.helloworld.resources;
import java.util.HashMap;
import java.util.Map;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
@Path("/json")
@Produces(MediaType.APPLICATION_JSON)
public class JsonResource
{
// Response message class (cop... | Improve DropWizard test to use JSON generation similar to Servlet test -- more efficient that way | Improve DropWizard test to use JSON generation similar to Servlet test -- more efficient that way
| Java | bsd-3-clause | jamming/FrameworkBenchmarks,ratpack/FrameworkBenchmarks,steveklabnik/FrameworkBenchmarks,Rydgel/FrameworkBenchmarks,zapov/FrameworkBenchmarks,kostya-sh/FrameworkBenchmarks,zdanek/FrameworkBenchmarks,khellang/FrameworkBenchmarks,thousandsofthem/FrameworkBenchmarks,seem-sky/FrameworkBenchmarks,donovanmuller/FrameworkBenc... |
8c0e6beb43cc372347e55f42e3842756ca783ead | zxingorg/src/main/java/com/google/zxing/web/LegacyJavadocRedirectServlet.java | zxingorg/src/main/java/com/google/zxing/web/LegacyJavadocRedirectServlet.java | /*
* Copyright 2014 ZXing 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 applicable law or agreed ... | /*
* Copyright 2014 ZXing 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 applicable law or agreed ... | Fix corner case for javadoc redirector | Fix corner case for javadoc redirector
| Java | apache-2.0 | kailIII/zxing,qingsong-xu/zxing,menglifei/zxing,ptrnov/zxing,RatanPaul/zxing,DONIKAN/zxing,Fedhaier/zxing,Akylas/zxing,lvbaosong/zxing,qianchenglenger/zxing,lvbaosong/zxing,menglifei/zxing,wangxd1213/zxing,YLBFDEV/zxing,JasOXIII/zxing,tanelihuuskonen/zxing,GeekHades/zxing,jianwoo/zxing,roadrunner1987/zxing,yuanhuihui/z... |
35a6f8394d1b7a6e826fbaccb63fa95a1050c732 | src/test/java/org/jscookie/test/integration/encoding/EncodingServlet.java | src/test/java/org/jscookie/test/integration/encoding/EncodingServlet.java | package org.jscookie.test.integration.encoding;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.jscookie.Cookie... | package org.jscookie.test.integration.encoding;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.jscookie.Cookie... | Make it clear when a cookie is not found | Make it clear when a cookie is not found | Java | mit | sumit784/java-cookie,js-cookie/java-cookie,sumit784/java-cookie |
070d46478a279fb3de25b9d8645bdf04ee5a566a | src/main/java/org/apache/commons/compress/archivers/StreamingNotSupportedException.java | src/main/java/org/apache/commons/compress/archivers/StreamingNotSupportedException.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
* to you under the Apache License, Version 2.0 (the
* "License"); you ... | /*
* 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 ... | Add missing serial version ID (default). | Add missing serial version ID (default).
git-svn-id: fb13a56e2874bbe7f090676f40e1dce4dcf67111@1572570 13f79535-47bb-0310-9956-ffa450edef68
| Java | apache-2.0 | mohanaraosv/commons-compress,krosenvold/commons-compress,apache/commons-compress,krosenvold/commons-compress,lookout/commons-compress,mohanaraosv/commons-compress,krosenvold/commons-compress,apache/commons-compress,mohanaraosv/commons-compress,lookout/commons-compress,lookout/commons-compress,apache/commons-compress |
00d7fddfe311dda3321f7c1517c67c547b39c5b4 | src/test/org/apache/commons/net/ftp/parser/AllTests.java | src/test/org/apache/commons/net/ftp/parser/AllTests.java | /*
* Created on Apr 5, 2004
*
* To change the template for this generated file go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
package org.apache.commons.net.ftp.parser;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* @author scohen
*
* To change the template ... | /*
* Created on Apr 5, 2004
*
* To change the template for this generated file go to
* Window - Preferences - Java - Code Generation - Code and Comments
*/
package org.apache.commons.net.ftp.parser;
import junit.framework.Test;
import junit.framework.TestSuite;
/**
* @author scohen
*
* To change the template ... | Add Netware parser test to all test suite | Add Netware parser test to all test suite
git-svn-id: 8e7fc3cb9b5e494b5390f56e4b66b18dc2b2e92b@394701 13f79535-47bb-0310-9956-ffa450edef68
| Java | apache-2.0 | mohanaraosv/commons-net,apache/commons-net,codolutions/commons-net,codolutions/commons-net,mohanaraosv/commons-net,apache/commons-net |
61fdd2b074127bb57924f065fef0cf9f21431146 | qa/src/test/java/org/eclipse/kapua/qa/steps/BasicSteps.java | qa/src/test/java/org/eclipse/kapua/qa/steps/BasicSteps.java | /*******************************************************************************
* Copyright (c) 2017 Red Hat Inc 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 av... | /*******************************************************************************
* Copyright (c) 2017 Red Hat Inc 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 av... | Add a message for the wait multiplier | Add a message for the wait multiplier | Java | epl-1.0 | stzilli/kapua,stzilli/kapua,LeoNerdoG/kapua,LeoNerdoG/kapua,stzilli/kapua,stzilli/kapua,LeoNerdoG/kapua,LeoNerdoG/kapua,stzilli/kapua,LeoNerdoG/kapua |
d40f34ac6d3680a0b5f7c8d88a38b2542d49402c | src/test/java/com/mdaniline/spring/autoproperties/AutoPropertiesRegistrarTest.java | src/test/java/com/mdaniline/spring/autoproperties/AutoPropertiesRegistrarTest.java | package com.mdaniline.spring.autoproperties;
import com.mdaniline.spring.autoproperties.testclasses.TestBasicProperties;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.springframework.beans.factory.support.BeanDefinitionRegistry;
import org.springframework.beans.factory.support.Defa... | package com.mdaniline.spring.autoproperties;
import com.mdaniline.spring.autoproperties.testclasses.TestBasicProperties;
import org.junit.Before;
import org.junit.Test;
import org.springframework.beans.factory.support.BeanDefinitionRegistry;
import org.springframework.beans.factory.support.DefaultListableBeanFactory;
... | Remove unnecessary dependency from unit test | Remove unnecessary dependency from unit test
| Java | mit | mdaniline/spring-autoproperties |
ba4b8f01d435964e4da349872b0e7554f3c3f205 | java/src/main/java/gherkin/formatter/StepPrinter.java | java/src/main/java/gherkin/formatter/StepPrinter.java | package gherkin.formatter;
import java.util.List;
public class StepPrinter {
public void writeStep(NiceAppendable out, Format textFormat, Format argFormat, String stepName, List<Argument> arguments) {
int textStart = 0;
for (Argument argument : arguments) {
if (argument.getOffset() != ... | package gherkin.formatter;
import java.util.List;
public class StepPrinter {
public void writeStep(NiceAppendable out, Format textFormat, Format argFormat, String stepName, List<Argument> arguments) {
int textStart = 0;
for (Argument argument : arguments) {
// can be -1 if the argument... | Fix for exception when an argument is missing (vs just being empty) | Fix for exception when an argument is missing (vs just being empty) | Java | mit | rydnr/gherkin,rydnr/gherkin,fstrozzi/bio-gherkin,fstrozzi/bio-gherkin,fstrozzi/bio-gherkin,rydnr/gherkin,fstrozzi/bio-gherkin,rydnr/gherkin,rydnr/gherkin,fstrozzi/bio-gherkin |
d5fc249f555f4ccb7956a0b6eedb8c770435e7dc | src/main/java/com/github/pedrovgs/problem76/InsertionSort.java | src/main/java/com/github/pedrovgs/problem76/InsertionSort.java | /*
* Copyright (C) 2014 Pedro Vicente Gómez Sánchez.
*
* 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 ... | /*
* Copyright (C) 2014 Pedro Vicente Gómez Sánchez.
*
* 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 ... | Add solution to problem 76 | Add solution to problem 76
| Java | apache-2.0 | VeskoI/Algorithms,Arkar-Aung/Algorithms,ajinkyakolhe112/Algorithms,pedrovgs/Algorithms,JeffreyWei/Algorithms,chengjinqian/Algorithms,Ariloum/Algorithms,007slm/Algorithms,ArlenLiu/Algorithms,mrgenco/Algorithms-1,zmywly8866/Algorithms,sridhar-newsdistill/Algorithms,inexistence/Algorithms,AppScientist/Algorithms,jibaro/Al... |
ce6be6e107bed83a5e4646d8c7792bcac75758e9 | src/com/github/andlyticsproject/Style.java | src/com/github/andlyticsproject/Style.java | package com.github.andlyticsproject;
import android.content.res.AssetManager;
import android.graphics.Typeface;
import android.widget.TextView;
public class Style {
private static Style instance;
private static Typeface tf;
private Style(AssetManager mgr){
tf = Typeface.createFromAsset(mgr, "fon... | package com.github.andlyticsproject;
import android.content.res.AssetManager;
import android.graphics.Typeface;
import android.widget.TextView;
public class Style {
private static Style instance;
private static Typeface tf;
private Style(AssetManager mgr){
}
public static Style getInstance(Ass... | Fix for fonts (Class might be removed in the future b/c unnecessary | Fix for fonts (Class might be removed in the future b/c unnecessary
| Java | apache-2.0 | d4rken/andlytics,nelenkov/andlytics,TheNephilim88/andlytics,ArcadiaConsulting/appstorestats,willlunniss/andlytics,willlunniss/andlytics,AndyScherzinger/andlytics,AndyScherzinger/andlytics,TheNephilim88/andlytics |
6db279583ef43b4378e02371cfab2cf1249a2059 | api/src/org/apache/cloudstack/api/Parameter.java | api/src/org/apache/cloudstack/api/Parameter.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
// to you under the Apache License, Version 2.0 (the
// "License"); you may... | // 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 may... | Remove resourceType, use only entityType | api: Remove resourceType, use only entityType
Signed-off-by: Rohit Yadav <0fa72ca37c4b5fa62675187ce32ea6c9f842fd52@apache.org>
| Java | apache-2.0 | DaanHoogland/cloudstack,DaanHoogland/cloudstack,DaanHoogland/cloudstack,resmo/cloudstack,mufaddalq/cloudstack-datera-driver,mufaddalq/cloudstack-datera-driver,resmo/cloudstack,wido/cloudstack,mufaddalq/cloudstack-datera-driver,mufaddalq/cloudstack-datera-driver,DaanHoogland/cloudstack,GabrielBrascher/cloudstack,mufadda... |
fa8f81b2a392b6f87f3821bad4f5fe71e417d645 | rxbinding/src/androidTest/java/com/jakewharton/rxbinding/view/RxViewGroupTest.java | rxbinding/src/androidTest/java/com/jakewharton/rxbinding/view/RxViewGroupTest.java | package com.jakewharton.rxbinding.view;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.rule.UiThreadTestRule;
import android.support.test.runner.AndroidJUnit4;
import android.test.UiThreadTest;
import android.view.View;
import android.widget.LinearLayou... | package com.jakewharton.rxbinding.view;
import android.content.Context;
import android.support.test.InstrumentationRegistry;
import android.support.test.annotation.UiThreadTest;
import android.support.test.rule.UiThreadTestRule;
import android.support.test.runner.AndroidJUnit4;
import android.view.View;
import android... | Use the right UiThreadTest annotation. | Use the right UiThreadTest annotation.
| Java | apache-2.0 | dlew/RxBinding,xfumihiro/RxBinding,rharter/RxBinding,MaTriXy/RxBinding,lockerfish/RxBinding,skoric/RxBinding,skoric/RxBinding,vanniktech/RxBinding,JakeWharton/RxBinding,dsvoronin/RxBinding,vipulshah2010/RxBinding,vipulshah2010/RxBinding,dsvoronin/RxBinding,Edward608/RxBinding,viacheslavokolitiy/RxBinding-1,hzsweers/RxB... |
21fd4d15d077d02fa26b829811ce3eef27eea44b | src/main/java/com/github/pedrovgs/app/problem20/MultiplicationWithoutMultiply.java | src/main/java/com/github/pedrovgs/app/problem20/MultiplicationWithoutMultiply.java | /*
* Copyright (C) 2014 Pedro Vicente Gómez Sánchez.
*
* 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 ... | /*
* Copyright (C) 2014 Pedro Vicente Gómez Sánchez.
*
* 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 ... | Add solution to problem 20 | Add solution to problem 20
| Java | apache-2.0 | sridhar-newsdistill/Algorithms,Ariloum/Algorithms,JeffreyWei/Algorithms,pedrovgs/Algorithms,ArlenLiu/Algorithms,ajinkyakolhe112/Algorithms,Arkar-Aung/Algorithms,AppScientist/Algorithms,zmywly8866/Algorithms,chengjinqian/Algorithms,007slm/Algorithms,VeskoI/Algorithms,inexistence/Algorithms,mrgenco/Algorithms-1,zhdh2008/... |
2693e16e31bc67439c25e2609790c24c6863fbfb | console/src/main/java/org/eclipse/kapua/app/console/shared/model/GwtMessage.java | console/src/main/java/org/eclipse/kapua/app/console/shared/model/GwtMessage.java | /*******************************************************************************
* Copyright (c) 2011, 2016 Eurotech and/or its affiliates 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... | /*******************************************************************************
* Copyright (c) 2011, 2016 Eurotech and/or its affiliates 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... | Fix NPE in Data View for metrics containing . in name | Fix NPE in Data View for metrics containing . in name
Signed-off-by: Claudio Mezzasalma <acdb73fa11473662b10f45613ec005f8be976786@eurotech.com>
| Java | epl-1.0 | stzilli/kapua,stzilli/kapua,LeoNerdoG/kapua,LeoNerdoG/kapua,stzilli/kapua,LeoNerdoG/kapua,LeoNerdoG/kapua,stzilli/kapua,LeoNerdoG/kapua,stzilli/kapua |
c0470d7f93fab4bff5364a2d5e55250075cd79df | selenium/src/java/org/openqa/selenium/internal/selenesedriver/NewSession.java | selenium/src/java/org/openqa/selenium/internal/selenesedriver/NewSession.java | /*
Copyright 2007-2009 WebDriver committers
Copyright 2007-2009 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 require... | /*
Copyright 2007-2009 WebDriver committers
Copyright 2007-2009 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 require... | Make the selenium-backed webdriver emulate the normal webdriver's xpath mode | SimonStewart: Make the selenium-backed webdriver emulate the normal webdriver's xpath mode
r10674
| Java | apache-2.0 | rrussell39/selenium,lummyare/lummyare-test,sebady/selenium,rovner/selenium,joshbruning/selenium,aluedeke/chromedriver,rrussell39/selenium,twalpole/selenium,clavery/selenium,JosephCastro/selenium,MCGallaspy/selenium,juangj/selenium,pulkitsinghal/selenium,chrsmithdemos/selenium,HtmlUnit/selenium,bayandin/selenium,gemini-... |
3c3fc9bff5c4417f7aa48e29d27ea1a963967c0a | examples/java-calculator-testng/src/test/java/cucumber/examples/java/calculator/RunCukesByFeatureAndCompositionTest.java | examples/java-calculator-testng/src/test/java/cucumber/examples/java/calculator/RunCukesByFeatureAndCompositionTest.java | package cucumber.examples.java.calculator;
import cucumber.api.CucumberOptions;
import cucumber.api.testng.TestNGCucumberRunner;
import cucumber.api.testng.CucumberFeatureWrapper;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.DataProvider;
import org... | package cucumber.examples.java.calculator;
import cucumber.api.CucumberOptions;
import cucumber.api.testng.TestNGCucumberRunner;
import cucumber.api.testng.CucumberFeatureWrapper;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.DataProvider;
import org... | Add alwaysRun=true to the TestNG example's AfterClass method | Add alwaysRun=true to the TestNG example's AfterClass method
| Java | mit | HendrikSP/cucumber-jvm,paoloambrosio/cucumber-jvm,andyb-ge/cucumber-jvm,cucumber/cucumber-jvm,dkowis/cucumber-jvm,DPUkyle/cucumber-jvm,danielwegener/cucumber-jvm,danielwegener/cucumber-jvm,HendrikSP/cucumber-jvm,joansmith/cucumber-jvm,cucumber/cucumber-jvm,joansmith/cucumber-jvm,cucumber/cucumber-jvm,danielwegener/cucu... |
8a6be9b269e04139a90ec63b6bf43c1a92988354 | sandbox/rest/src/test/java/brooklyn/cli/ExampleApp.java | sandbox/rest/src/test/java/brooklyn/cli/ExampleApp.java | package brooklyn.cli;
import brooklyn.entity.Entity;
import brooklyn.entity.basic.AbstractApplication;
import java.util.Map;
/**
* Simple brooklyn app used for testing
*/
public class ExampleApp extends AbstractApplication {
public ExampleApp(Map flags, Entity owner) {
super(flags);
}
}
| package brooklyn.cli;
import brooklyn.entity.Entity;
import brooklyn.entity.basic.AbstractApplication;
import java.util.Map;
/**
* Simple brooklyn app used for testing
*/
public class ExampleApp extends AbstractApplication {
public ExampleApp() {
super();
}
public ExampleApp(Map flags, Entity... | Add empty constructor to the sample app used for testing | Add empty constructor to the sample app used for testing
| Java | apache-2.0 | bmwshop/brooklyn,neykov/incubator-brooklyn,aledsage/legacy-brooklyn,neykov/incubator-brooklyn,andreaturli/legacy-brooklyn,neykov/incubator-brooklyn,andreaturli/legacy-brooklyn,bmwshop/brooklyn,aledsage/legacy-brooklyn,aledsage/legacy-brooklyn,andreaturli/legacy-brooklyn,bmwshop/brooklyn,andreaturli/legacy-brooklyn,neyk... |
ed6bcfc4fa30882b9f4cfce01d90a20e83f04e68 | rave-components/rave-core-api/src/main/java/org/apache/rave/rest/interceptor/JsonResponseWrapperInterceptor.java | rave-components/rave-core-api/src/main/java/org/apache/rave/rest/interceptor/JsonResponseWrapperInterceptor.java | package org.apache.rave.rest.interceptor;
import org.apache.cxf.interceptor.Fault;
import org.apache.cxf.message.Message;
import org.apache.cxf.phase.AbstractPhaseInterceptor;
import org.apache.cxf.phase.Phase;
import org.apache.rave.rest.model.JsonResponseWrapper;
/**
* Created with IntelliJ IDEA.
* User: erinnp
... | /*
* 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 ... | Add apache headers to interceptor | Add apache headers to interceptor
git-svn-id: 2c5eef89e506a7ff64d405e714ba3c778b83051b@1506125 13f79535-47bb-0310-9956-ffa450edef68
| Java | apache-2.0 | kidaa/rave,kidaa/rave,apache/rave,apache/rave,kidaa/rave,apache/rave,apache/rave,apache/rave |
9fa9e437bd27df2b3d8dde0e2524786299bbe352 | examples/java/src/cucumber/demo/Hello.java | examples/java/src/cucumber/demo/Hello.java | package cucumber.demo;
public class Hello {
public String greet(String who, String from) {
return "Hi, " + who + ". I'm " + from;
}
public boolean isFriend(String who) {
return true;
}
public String getPhoneNumber(String who) {
return "99999";
}
} | package cucumber.demo;
public class Hello {
public String greet(String who, String from) {
return "Hi, " + who + ". I'm " + from;
}
public boolean isFriend(String who) {
return true;
}
public String getPhoneNumber(String who) {
throw new RuntimeException("My phone ... | Make java example fail. More fun. | Make java example fail. More fun.
| Java | mit | jarib/cucumber,cucumber/cucumber-ruby,shadow000902/cucumber-ruby,danascheider/cucumber-ruby,shivashankar2020/mands,songkick/cucumber,shadow000902/cucumber-ruby,jasonkarns/cucumber-ruby,tom025/cucumber,shivashankar2020/mands,martinma4/cucumber-ruby,brasmusson/cucumber,dg-ratiodata/cucumber-ruby,tom025/cucumber,sideci-sa... |
4d8b061a60a35f9ca49147b1e7f2ab5ccdfece84 | python/src/com/jetbrains/python/actions/CreatePythonFileAction.java | python/src/com/jetbrains/python/actions/CreatePythonFileAction.java | package com.jetbrains.python.actions;
import com.intellij.ide.actions.CreateFileFromTemplateDialog;
import com.intellij.ide.actions.CreateFromTemplateAction;
import com.intellij.openapi.project.DumbAware;
import com.intellij.openapi.project.Project;
import com.intellij.psi.PsiDirectory;
import com.intellij.psi.PsiFile... | package com.jetbrains.python.actions;
import com.intellij.ide.actions.CreateFileFromTemplateAction;
import com.intellij.ide.actions.CreateFileFromTemplateDialog;
import com.intellij.openapi.project.DumbAware;
import com.intellij.openapi.project.Project;
import com.intellij.psi.PsiDirectory;
import com.jetbrains.python... | Create JavaEE Web Page action | Create JavaEE Web Page action
| Java | apache-2.0 | orekyuu/intellij-community,ol-loginov/intellij-community,michaelgallacher/intellij-community,dslomov/intellij-community,dslomov/intellij-community,vvv1559/intellij-community,fengbaicanhe/intellij-community,semonte/intellij-community,ahb0327/intellij-community,kool79/intellij-community,pwoodworth/intellij-community,salg... |
3cdaafba7a31bcd6d3bf1f3902796c628529b57c | client/src/main/java/com/opentable/jaxrs/JaxRsClientConfiguration.java | client/src/main/java/com/opentable/jaxrs/JaxRsClientConfiguration.java | package com.opentable.jaxrs;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.env.PropertyResolver;
import com.opentable.spring.SpecializedConfigFactory;
@Configuration
public class JaxRsClientConfiguration {
@Bean
... | package com.opentable.jaxrs;
import com.fasterxml.jackson.databind.ObjectMapper;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.env.PropertyResolver;
import com.opentable.spring.SpecializedConfigFactory;
@Configuration... | Enable Jackson on jaxrs clients | Enable Jackson on jaxrs clients
| Java | apache-2.0 | sannessa/otj-jaxrs,opentable/otj-jaxrs |
7e9f4507b644020a704357e0180474b4646bba33 | plugins/javaFX/src/org/jetbrains/plugins/javaFX/sceneBuilder/SceneBuilderEditorProvider.java | plugins/javaFX/src/org/jetbrains/plugins/javaFX/sceneBuilder/SceneBuilderEditorProvider.java | package org.jetbrains.plugins.javaFX.sceneBuilder;
import com.intellij.openapi.fileEditor.FileEditor;
import com.intellij.openapi.fileEditor.FileEditorPolicy;
import com.intellij.openapi.fileEditor.FileEditorProvider;
import com.intellij.openapi.project.DumbAware;
import com.intellij.openapi.project.Project;
import co... | package org.jetbrains.plugins.javaFX.sceneBuilder;
import com.intellij.openapi.fileEditor.FileEditor;
import com.intellij.openapi.fileEditor.FileEditorPolicy;
import com.intellij.openapi.fileEditor.FileEditorProvider;
import com.intellij.openapi.project.DumbAware;
import com.intellij.openapi.project.Project;
import co... | Disable assertions in Scene Builder because of false positives (IDEA-162542) | Javafx: Disable assertions in Scene Builder because of false positives (IDEA-162542)
| Java | apache-2.0 | ThiagoGarciaAlves/intellij-community,xfournet/intellij-community,allotria/intellij-community,mglukhikh/intellij-community,ThiagoGarciaAlves/intellij-community,mglukhikh/intellij-community,allotria/intellij-community,mglukhikh/intellij-community,mglukhikh/intellij-community,mglukhikh/intellij-community,xfournet/intellij... |
fae29623bc71c6583cfc4da80b27c9453d28104a | service/security/certificate/api/src/main/java/org/eclipse/kapua/service/certificate/CertificatePredicates.java | service/security/certificate/api/src/main/java/org/eclipse/kapua/service/certificate/CertificatePredicates.java | /*******************************************************************************
* Copyright (c) 2017 Eurotech and/or its affiliates 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 distr... | /*******************************************************************************
* Copyright (c) 2017 Eurotech and/or its affiliates 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 distr... | Add Status in Certificate Predicates | Add Status in Certificate Predicates
Signed-off-by: Claudio Mezzasalma <acdb73fa11473662b10f45613ec005f8be976786@eurotech.com>
| Java | epl-1.0 | stzilli/kapua,stzilli/kapua,LeoNerdoG/kapua,LeoNerdoG/kapua,LeoNerdoG/kapua,LeoNerdoG/kapua,stzilli/kapua,LeoNerdoG/kapua,stzilli/kapua,stzilli/kapua |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.