lang stringclasses 1
value | license stringclasses 13
values | stderr stringlengths 0 350 | commit stringlengths 40 40 | returncode int64 0 128 | repos stringlengths 7 45.1k | new_contents stringlengths 0 1.87M | new_file stringlengths 6 292 | old_contents stringlengths 0 1.87M | message stringlengths 6 9.26k | old_file stringlengths 6 292 | subject stringlengths 0 4.45k |
|---|---|---|---|---|---|---|---|---|---|---|---|
Java | agpl-3.0 | 7767482ab21581c001e9d01689785b1db1c69145 | 0 | printedheart/opennars,printedheart/opennars,printedheart/opennars,printedheart/opennars,printedheart/opennars,printedheart/opennars | package nars.inference;
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.TreeSet;
import nars.core.EventEmitter.Observer;
import nars.core.Events.ConceptBeliefRemove;
import nars.core.Events.Tas... | nars_java/nars/inference/Executive.java | package nars.inference;
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.Comparator;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import java.util.TreeSet;
import nars.core.EventEmitter.Observer;
import nars.core.Events.ConceptBeliefRemove;
import nars.core.Events.Tas... | commit. a fix of match (so not only negative adjustment). TODO: Temporal | nars_java/nars/inference/Executive.java | commit. a fix of match (so not only negative adjustment). TODO: Temporal | |
Java | agpl-3.0 | 53f509f62cb4072a341eedda2ae83fe256c1556f | 0 | duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test,duaneking/rockstar_test | 3a088684-2e61-11e5-9284-b827eb9e62be | hello.java | 3a02e3a0-2e61-11e5-9284-b827eb9e62be | 3a088684-2e61-11e5-9284-b827eb9e62be | hello.java | 3a088684-2e61-11e5-9284-b827eb9e62be | |
Java | lgpl-2.1 | 2d99054226ae728cffe7d407dfff1b2b800089cc | 0 | 0x0000-dot-ru/jcommune,NCNecros/jcommune,illerax/jcommune,shevarnadze/jcommune,a-nigredo/jcommune,shevarnadze/jcommune,NCNecros/jcommune,Relvl/jcommune,Vitalij-Voronkoff/jcommune,0x0000-dot-ru/jcommune,a-nigredo/jcommune,SurfVaporizer/jcommune,oatkachenko/jcommune,Noctrunal/jcommune,jtalks-org/jcommune,vps2/jcommune,mi... | /**
* Copyright (C) 2011 JTalks.org Team
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
* This library ... | jcommune-service/src/main/java/org/jtalks/jcommune/service/transactional/TransactionalExternalLinkService.java | /**
* Copyright (C) 2011 JTalks.org Team
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
* This library ... | #JC-1251 Added service javadoc.
| jcommune-service/src/main/java/org/jtalks/jcommune/service/transactional/TransactionalExternalLinkService.java | #JC-1251 Added service javadoc. | |
Java | lgpl-2.1 | 8e6007983fd1e43f1051f4fb1711f10d0d1b4a88 | 0 | zwobit/exist,wolfgangmm/exist,ljo/exist,dizzzz/exist,ambs/exist,jessealama/exist,hungerburg/exist,jensopetersen/exist,wolfgangmm/exist,hungerburg/exist,olvidalo/exist,RemiKoutcherawy/exist,joewiz/exist,opax/exist,patczar/exist,lcahlander/exist,jessealama/exist,wshager/exist,eXist-db/exist,windauer/exist,dizzzz/exist,wo... | /*
* eXist Open Source Native XML Database
* Copyright (C) 2001, Wolfgang M. Meier (meier@ifs.tu-darmstadt.de)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public License
* as published by the Free Software Foundation; either versio... | src/org/exist/JettyStart.java | /*
* eXist Open Source Native XML Database
* Copyright (C) 2001, Wolfgang M. Meier (meier@ifs.tu-darmstadt.de)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public License
* as published by the Free Software Foundation; either versio... | [bugfix] Made error more readable when jetty port cannot be claimed.
svn path=/trunk/eXist/; revision=8617
| src/org/exist/JettyStart.java | [bugfix] Made error more readable when jetty port cannot be claimed. | |
Java | unlicense | 745f3f28210701f4eb3c165a272f8f029bcdf79b | 0 | indy256/codelibrary,indy256/codelibrary,indy256/codelibrary,indy256/codelibrary | package strings;
import java.util.Random;
// https://en.wikipedia.org/wiki/Knuth–Morris–Pratt_algorithm
public class Kmp {
public static int[] prefixFunction(String s) {
int[] p = new int[s.length()];
int k = 0;
for (int i = 1; i < s.length(); i++) {
while (k > 0 && s.charAt(k) != s.charAt(i))
k = p[k ... | java/src/strings/Kmp.java | package strings;
import java.util.Random;
// https://en.wikipedia.org/wiki/Knuth–Morris–Pratt_algorithm
public class Kmp {
public static int[] prefixFunction(String s) {
int[] p = new int[s.length()];
int k = 0;
for (int i = 1; i < s.length(); i++) {
while (k > 0 && s.charAt(k) != s.charAt(i))
k = p[k ... | update
| java/src/strings/Kmp.java | update | |
Java | apache-2.0 | a86724e6575eff7d0998034fd9f9410f139cfff3 | 0 | changbai1980/maven,cstamas/maven,rogerchina/maven,Mounika-Chirukuri/maven,xasx/maven,josephw/maven,xasx/maven,olamy/maven,vedmishr/demo1,barthel/maven,changbai1980/maven,Mounika-Chirukuri/maven,apache/maven,mcculls/maven,aheritier/maven,lbndev/maven,mizdebsk/maven,atanasenko/maven,cstamas/maven,Mounika-Chirukuri/maven,... | package org.apache.maven.tools.repoclean.translate;
/*
* Copyright 2001-2005 The Apache Software Foundation.
*
* 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... | sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/translate/PomV3ToV4Translator.java | package org.apache.maven.tools.repoclean.translate;
/*
* Copyright 2001-2005 The Apache Software Foundation.
*
* 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... | turn off report conversion
git-svn-id: 2c527eb49caa05e19d6b2be874bf74fa9d7ea670@226782 13f79535-47bb-0310-9956-ffa450edef68
| sandbox/repoclean/src/main/java/org/apache/maven/tools/repoclean/translate/PomV3ToV4Translator.java | turn off report conversion | |
Java | apache-2.0 | 19f28ca7e8aec324bdefcc18b4781d70f53fb15c | 0 | zqian/sakai,tl-its-umich-edu/sakai,kwedoff1/sakai,udayg/sakai,hackbuteer59/sakai,introp-software/sakai,pushyamig/sakai,udayg/sakai,bzhouduke123/sakai,introp-software/sakai,puramshetty/sakai,buckett/sakai-gitflow,OpenCollabZA/sakai,joserabal/sakai,ouit0408/sakai,hackbuteer59/sakai,rodriguezdevera/sakai,lorenamgUMU/sakai... | /**********************************************************************************
* $URL$
* $Id$
***********************************************************************************
*
* Copyright (c) 2004, 2005, 2006 The Sakai Foundation.
*
* Licensed under the Educational Community License, Version 1.0 (the"Li... | samigo/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SavePartListener.java | /**********************************************************************************
* $URL$
* $Id$
***********************************************************************************
*
* Copyright (c) 2004, 2005, 2006 The Sakai Foundation.
*
* Licensed under the Educational Community License, Version 1.0 (the"Li... | use log.debug instead of log.warn for debug messages
git-svn-id: 574bb14f304dbe16c01253ed6697ea749724087f@16943 66ffb92e-73f9-0310-93c1-f5514f145a0a
| samigo/samigo-app/src/java/org/sakaiproject/tool/assessment/ui/listener/author/SavePartListener.java | use log.debug instead of log.warn for debug messages | |
Java | apache-2.0 | e5289b24ff4a9e9c2af43bb3faf28314c6fc8725 | 0 | OpenNTF/SmartNSF | package org.openntf.xrest.xsp.exec.impl;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.openntf.xrest.xsp.dsl.DSLBuilder;
import org.openntf.xrest.xsp.exec.Context;
import org.openntf.xrest.xsp.exec.ExecutorException;
import org.openntf.xrest.xsp.exec.RouteProcessorExecutor;... | server/org.openntf.xrest.xsp/src/org/openntf/xrest/xsp/exec/impl/AbstractRouteProcessorExecutor.java | package org.openntf.xrest.xsp.exec.impl;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import org.openntf.xrest.xsp.dsl.DSLBuilder;
import org.openntf.xrest.xsp.exec.Context;
import org.openntf.xrest.xsp.exec.ExecutorException;
import org.openntf.xrest.xsp.exec.RouteProcessorExecutor;... | fix typo | server/org.openntf.xrest.xsp/src/org/openntf/xrest/xsp/exec/impl/AbstractRouteProcessorExecutor.java | fix typo | |
Java | apache-2.0 | 44d0f92ac4eab5baf24535013f84be112c695a62 | 0 | dcsch/typecast | /*
============================================================================
The Apache Software License, Version 1.1
============================================================================
Copyright (C) 1999-2003 The Apache Software Foundation. All rights reserved.
Redistribution and ... | src/net/java/dev/typecast/ot/OTFont.java | /*
============================================================================
The Apache Software License, Version 1.1
============================================================================
Copyright (C) 1999-2003 The Apache Software Foundation. All rights reserved.
Redistribution and ... | Restructured table loading so that prerequesite tables are loaded first, which are then referenced whilst loading tables that need information from them. This eliminates the need for a separate 'init' stage for those tables.
| src/net/java/dev/typecast/ot/OTFont.java | Restructured table loading so that prerequesite tables are loaded first, which are then referenced whilst loading tables that need information from them. This eliminates the need for a separate 'init' stage for those tables. | |
Java | apache-2.0 | 9cb22033d12be5f52a26376a2b833ead97aafc1c | 0 | Jasig/cas,leleuj/cas,apereo/cas,pdrados/cas,leleuj/cas,fogbeam/cas_mirror,pdrados/cas,philliprower/cas,rkorn86/cas,apereo/cas,leleuj/cas,apereo/cas,fogbeam/cas_mirror,apereo/cas,Jasig/cas,Jasig/cas,pdrados/cas,apereo/cas,rkorn86/cas,philliprower/cas,philliprower/cas,rkorn86/cas,pdrados/cas,philliprower/cas,leleuj/cas,f... | package org.apereo.cas.aup;
import org.apereo.cas.authentication.CoreAuthenticationTestUtils;
import org.apereo.cas.authentication.Credential;
import org.apereo.cas.ticket.registry.TicketRegistrySupport;
import org.apereo.cas.util.CollectionUtils;
import org.apereo.cas.web.support.WebUtils;
import org.junit.Test;
impo... | support/cas-server-support-aup-core/src/test/java/org/apereo/cas/aup/DefaultAcceptableUsagePolicyRepositoryTests.java | package org.apereo.cas.aup;
import org.apereo.cas.authentication.CoreAuthenticationTestUtils;
import org.apereo.cas.authentication.Credential;
import org.apereo.cas.ticket.registry.TicketRegistrySupport;
import org.apereo.cas.util.CollectionUtils;
import org.apereo.cas.web.support.WebUtils;
import org.junit.Test;
impo... | fix tests
| support/cas-server-support-aup-core/src/test/java/org/apereo/cas/aup/DefaultAcceptableUsagePolicyRepositoryTests.java | fix tests | |
Java | apache-2.0 | 075768380ac72b5b1c743baf4264ac79a43254f5 | 0 | this/carbon-uuf,wso2/carbon-uuf,wso2/carbon-uuf,this/carbon-uuf,sajithar/carbon-uuf,wso2/carbon-uuf,this/carbon-uuf,wso2/carbon-uuf,this/carbon-uuf,sajithar/carbon-uuf | /*
* Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) 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
*
* ... | components/uuf-renderablecreator-hbs/src/main/java/org/wso2/carbon/uuf/renderablecreator/hbs/helpers/runtime/I18nHelper.java | /*
* Copyright (c) 2016, WSO2 Inc. (http://www.wso2.org) 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
*
* ... | add weighted multi language support to i18n helper
| components/uuf-renderablecreator-hbs/src/main/java/org/wso2/carbon/uuf/renderablecreator/hbs/helpers/runtime/I18nHelper.java | add weighted multi language support to i18n helper | |
Java | apache-2.0 | 32dd5c8dc0ad3afbbb8a12bb0901a2e90f27829d | 0 | Anoukh/carbon-analytics,tishan89/carbon-analytics,mohanvive/carbon-analytics,ramindu90/carbon-analytics-common,grainier/carbon-analytics,Anoukh/carbon-analytics,minudika/carbon-analytics,tishan89/carbon-analytics,wso2/carbon-analytics,Nethmi-Pathirana/carbon-analytics,minudika/carbon-analytics,tishan89/carbon-analytics... | package org.wso2.carbon.event.simulator.core.service;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.wso2.carbon.event.simulator.core.exception.FileOperationsException;
import org.wso2.carbon.event.simulator.core.exception.InsufficientAttributesException;
import org.wso2.carbon.event.simulator.cor... | components/org.wso2.carbon.event.simulator.core/src/main/java/org/wso2/carbon/event/simulator/core/service/EventSimulatorMap.java | package org.wso2.carbon.event.simulator.core.service;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.wso2.carbon.event.simulator.core.exception.FileOperationsException;
import org.wso2.carbon.event.simulator.core.exception.InsufficientAttributesException;
import org.wso2.carbon.event.simulator.cor... | refactored according to PR feedback
| components/org.wso2.carbon.event.simulator.core/src/main/java/org/wso2/carbon/event/simulator/core/service/EventSimulatorMap.java | refactored according to PR feedback | |
Java | apache-2.0 | 7d7e206192143e26c76e65e23c7384d720a4372d | 0 | AntonVasilyuk/Aduma,AntonVasilyuk/Aduma,AntonVasilyuk/Aduma,AntonVasilyuk/Aduma | package ru.job4j;
import org.junit.Test;
import java.util.NoSuchElementException;
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.*;
/**
* Task 4.1.1
* Test working iterator array
*
* @author Anton Vasilyuk on 03.06.2017.
* @version 1.0
* @since 0.1
*/
public class IteratorArrayTest {
... | chapter_003/iteratorArray/src/test/java/ru/job4j/IteratorArrayTest.java | package ru.job4j;
import org.junit.Test;
import static org.hamcrest.Matchers.is;
import static org.junit.Assert.*;
/**
* Task 4.1.1
* Test working iterator array
*
* @author Anton Vasilyuk on 03.06.2017.
* @version 1.0
* @since 0.1
*/
public class IteratorArrayTest {
/**.
* Test working iterator
... | add file for chapter_003_4.1.1
| chapter_003/iteratorArray/src/test/java/ru/job4j/IteratorArrayTest.java | add file for chapter_003_4.1.1 | |
Java | apache-2.0 | f0b2d1a9d45421256f604610a7bfc0e46f6162d9 | 0 | mi9rom/VaadHLDemo,mi9rom/VaadHLDemo,mi9rom/VaadHLDemo | /*
* Copyright 2015 Mirosław Romaniuk (mi9rom@gmail.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 appl... | src/com/vaadHL/example/jpa/FormTst.java | /*
* Copyright 2015 Mirosław Romaniuk (mi9rom@gmail.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 appl... | "Abell" test | src/com/vaadHL/example/jpa/FormTst.java | "Abell" test | |
Java | apache-2.0 | 45c3b417f9ebfab7ce5bfead930e222b7e23124d | 0 | mariacioffi/azkaban,sunghyuk/azkaban,weikang2002/azkaban,inoviaazkaban/azkaban,erwa/azkaban,researchgate/azkaban,HappyRay/azkaban,jackrjli/azkaban,hluu/azkaban2,kaneda/azkaban,azkaban/azkaban,HappyRay/azkaban,logiclord/azkaban,reallocf/azkaban,davidzchen/azkaban,wangqiaoshi/azkaban,mariacioffi/azkaban,azkaban/azkaban,k... | /*
* Copyright 2012 LinkedIn Corp.
*
* 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 t... | src/java/azkaban/execapp/JobRunner.java | /*
* Copyright 2012 LinkedIn Corp.
*
* 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 t... | logs from different jobs may appear in the same log file due to Layout thread safety issue.
Using EnhancedPatternLayout for each and every job should fix this.
| src/java/azkaban/execapp/JobRunner.java | logs from different jobs may appear in the same log file due to Layout thread safety issue. Using EnhancedPatternLayout for each and every job should fix this. | |
Java | apache-2.0 | 31f0e1d2c94adbd789f27a17058266032051e16d | 0 | pedrofvteixeira/pentaho-kettle,hudak/pentaho-kettle,tkafalas/pentaho-kettle,skofra0/pentaho-kettle,Advent51/pentaho-kettle,TatsianaKasiankova/pentaho-kettle,bmorrise/pentaho-kettle,Advent51/pentaho-kettle,pedrofvteixeira/pentaho-kettle,emartin-pentaho/pentaho-kettle,lgrill-pentaho/pentaho-kettle,aminmkhan/pentaho-kettl... | // CHECKSTYLE:FileLength:OFF
/*! ******************************************************************************
*
* Pentaho Data Integration
*
* Copyright (C) 2002-2017 by Pentaho : http://www.pentaho.com
*
*******************************************************************************
*
* Licensed under the Ap... | ui/src/org/pentaho/di/ui/core/widget/TableView.java | // CHECKSTYLE:FileLength:OFF
/*! ******************************************************************************
*
* Pentaho Data Integration
*
* Copyright (C) 2002-2016 by Pentaho : http://www.pentaho.com
*
*******************************************************************************
*
* Licensed under the Ap... | PDI-16032 - Clicking on Row Numbers in certain steps causes new ones to be created
| ui/src/org/pentaho/di/ui/core/widget/TableView.java | PDI-16032 - Clicking on Row Numbers in certain steps causes new ones to be created | |
Java | apache-2.0 | afce6290c898c333d07f1146f156cab2c91b295c | 0 | vbonamy/esup-uportal,ASU-Capstone/uPortal,drewwills/uPortal,jl1955/uPortal5,GIP-RECIA/esup-uportal,pspaude/uPortal,joansmith/uPortal,drewwills/uPortal,MichaelVose2/uPortal,drewwills/uPortal,EsupPortail/esup-uportal,pspaude/uPortal,mgillian/uPortal,EdiaEducationTechnology/uPortal,jonathanmtran/uPortal,MichaelVose2/uPort... | /**
* Copyright 2002 The JA-SIG Collaborative. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this lis... | source/org/jasig/portal/channels/webproxy/CWebProxy.java | /**
* Copyright 2002 The JA-SIG Collaborative. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this lis... | Included URL of proxied page in error message.
git-svn-id: 477788cc2a8229a747c5b8073e47c1d0f6ec0604@8084 f5dbab47-78f9-eb45-b975-e544023573eb
| source/org/jasig/portal/channels/webproxy/CWebProxy.java | Included URL of proxied page in error message. | |
Java | apache-2.0 | 4be4c4a843c3b60a5e8ee699bb9c00f47d697227 | 0 | shannah/cn1-teavm-builds,mpoindexter/teavm,mpoindexter/teavm,mpoindexter/teavm,shannah/cn1-teavm-builds,jtulach/teavm,konsoletyper/teavm,avdim/teavm,jtulach/teavm,shannah/cn1-teavm-builds,konsoletyper/teavm,jtulach/teavm,jtulach/teavm,shannah/cn1-teavm-builds,shannah/cn1-teavm-builds,avdim/teavm,konsoletyper/teavm,avdi... | /*
* Copyright 2014 Alexey Andreev.
*
* 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... | teavm-classlib/src/main/java/org/teavm/classlib/java/util/TTreeMap.java | /*
* Copyright 2014 Alexey Andreev.
*
* 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... | Rewrite TreeMap | teavm-classlib/src/main/java/org/teavm/classlib/java/util/TTreeMap.java | Rewrite TreeMap | |
Java | apache-2.0 | d184d35ef4800d9e7549cef7b258d4616b5a272e | 0 | iamironz/binaryprefs | package com.ironz.binaryprefs;
import android.content.SharedPreferences;
import com.ironz.binaryprefs.exception.ExceptionHandler;
import com.ironz.binaryprefs.files.FileAdapter;
import com.ironz.binaryprefs.name.KeyNameProvider;
import com.ironz.binaryprefs.util.Bits;
import java.util.*;
final class BinaryPreference... | library/src/main/java/com/ironz/binaryprefs/BinaryPreferencesEditor.java | package com.ironz.binaryprefs;
import android.content.SharedPreferences;
import com.ironz.binaryprefs.exception.ExceptionHandler;
import com.ironz.binaryprefs.files.FileAdapter;
import com.ironz.binaryprefs.name.KeyNameProvider;
import com.ironz.binaryprefs.util.Bits;
import java.util.*;
final class BinaryPreference... | small fixed for pattern method
| library/src/main/java/com/ironz/binaryprefs/BinaryPreferencesEditor.java | small fixed for pattern method | |
Java | apache-2.0 | 1d894a15160cba0a835b2b33cd6a3c96773b1eca | 0 | apache/tomcat,apache/tomcat,Nickname0806/Test_Q4,apache/tomcat,Nickname0806/Test_Q4,Nickname0806/Test_Q4,apache/tomcat,Nickname0806/Test_Q4,apache/tomcat | /*
* 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 ... | java/org/apache/catalina/util/LifecycleBase.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 ... | Further fix to regression in r1725599
Trigger a call to stop() if a component puts itself into the FAILED
state during start().
git-svn-id: 79cef5a5a257cc9dbe40a45ac190115b4780e2d0@1725694 13f79535-47bb-0310-9956-ffa450edef68
| java/org/apache/catalina/util/LifecycleBase.java | Further fix to regression in r1725599 Trigger a call to stop() if a component puts itself into the FAILED state during start(). | |
Java | apache-2.0 | 7fdd7fe92a4748161df5dda3267789af1f820883 | 0 | finmath/finmath-lib,finmath/finmath-lib | /*
* (c) Copyright Christian P. Fries, Germany. Contact: email@christian-fries.de.
*
* Created on 09.02.2004
*/
package net.finmath.montecarlo.interestrate;
import net.finmath.montecarlo.interestrate.products.AbstractLIBORMonteCarloProduct;
import net.finmath.stochastic.RandomVariable;
import net.finmath.stochasti... | src/main/java/net/finmath/montecarlo/interestrate/CalibrationProduct.java | /*
* (c) Copyright Christian P. Fries, Germany. Contact: email@christian-fries.de.
*
* Created on 09.02.2004
*/
package net.finmath.montecarlo.interestrate;
import net.finmath.montecarlo.interestrate.products.AbstractLIBORMonteCarloProduct;
import net.finmath.stochastic.RandomVariable;
import net.finmath.stochasti... | Added name. | src/main/java/net/finmath/montecarlo/interestrate/CalibrationProduct.java | Added name. | |
Java | apache-2.0 | c83f5919085272101ef8ba7d53088b53f2dd701f | 0 | callMeDimit/commons-digester,callMeDimit/commons-digester,callMeDimit/commons-digester,mohanaraosv/commons-digester,apache/commons-digester,mohanaraosv/commons-digester,apache/commons-digester,mohanaraosv/commons-digester,apache/commons-digester | package org.apache.commons.digester3.binder;
/*
* 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... | src/main/java/org/apache/commons/digester3/binder/DefaultRulesBinder.java | package org.apache.commons.digester3.binder;
/*
* 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... | fixed PMD violation: These nested if statements could be combined
git-svn-id: 871f264856ddff118359d15337bbbf32ea57c748@1187569 13f79535-47bb-0310-9956-ffa450edef68
| src/main/java/org/apache/commons/digester3/binder/DefaultRulesBinder.java | fixed PMD violation: These nested if statements could be combined | |
Java | apache-2.0 | 6d581ccb9dd146646d0f8cb23b0a8ffcce6f687c | 0 | josephw/maven,atanasenko/maven,wangyuesong0/maven,kidaa/maven-1,changbai1980/maven,wangyuesong0/maven,trajano/maven,apache/maven,dsyer/maven,Mounika-Chirukuri/maven,skitt/maven,Tibor17/maven,gorcz/maven,Distrotech/maven,mcculls/maven,lbndev/maven,barthel/maven,ChristianSchulte/maven,ChristianSchulte/maven,cstamas/maven... | package org.apache.maven.plugin;
/*
* Copyright 2001-2004 The Apache Software Foundation. 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 ... | maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginManager.java | package org.apache.maven.plugin;
/*
* Copyright 2001-2004 The Apache Software Foundation.
*
* 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/LICEN... | o don't need to block out xstream anymore, it's not a core dep any longer
git-svn-id: 2c527eb49caa05e19d6b2be874bf74fa9d7ea670@163218 13f79535-47bb-0310-9956-ffa450edef68
| maven-core/src/main/java/org/apache/maven/plugin/DefaultPluginManager.java | o don't need to block out xstream anymore, it's not a core dep any longer | |
Java | bsd-3-clause | 8531559baad1751c586a82c516c1f1706367a8a9 | 0 | wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy | /*
* Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free ... | graal/com.oracle.graal.replacements/src/com/oracle/graal/replacements/DefaultJavaLoweringProvider.java | /*
* Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free ... | UnsafeLoad: insert uncompress operation also for null constant
| graal/com.oracle.graal.replacements/src/com/oracle/graal/replacements/DefaultJavaLoweringProvider.java | UnsafeLoad: insert uncompress operation also for null constant | |
Java | bsd-3-clause | c4c056558c24b1992b7b02de07cef305baf379aa | 0 | NCIP/c3pr,NCIP/c3pr,NCIP/c3pr | package edu.duke.cabig.c3pr.domain;
import gov.nih.nci.cabig.ctms.domain.AbstractMutableDomainObject;
import org.hibernate.annotations.Cascade;
import org.hibernate.annotations.CascadeType;
import org.hibernate.annotations.GenericGenerator;
import org.hibernate.annotations.Parameter;
import javax.persistence.*;
/*... | codebase/projects/core/src/java/edu/duke/cabig/c3pr/domain/StratificationCriterionAnswerCombination.java | package edu.duke.cabig.c3pr.domain;
import gov.nih.nci.cabig.ctms.domain.AbstractMutableDomainObject;
import javax.persistence.Entity;
import javax.persistence.FetchType;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
import org.hibernate.annotations.Cascade... | refactor table name
| codebase/projects/core/src/java/edu/duke/cabig/c3pr/domain/StratificationCriterionAnswerCombination.java | refactor table name | |
Java | bsd-3-clause | cafb2b588d086d7051854b456f7b02bf79341318 | 0 | NCIP/camod,NCIP/camod,NCIP/camod,NCIP/camod | /**
* @author sguruswami
*
* $Id: ViewModelAction.java,v 1.69 2009-06-01 17:02:46 pandyas Exp $
*
* $Log: not supported by cvs2svn $
* Revision 1.68 2009/05/20 17:16:34 pandyas
* modified for gforge #17325 Upgrade caMOD to use caBIO 4.x and EVS 4.x to get data
*
* Revision 1.67 2009/03/25 16:24:58... | software/camod/src/gov/nih/nci/camod/webapp/action/ViewModelAction.java | /**
* @author sguruswami
*
* $Id: ViewModelAction.java,v 1.69 2009-06-01 17:02:46 pandyas Exp $
*
* $Log: not supported by cvs2svn $
* Revision 1.68 2009/05/20 17:16:34 pandyas
* modified for gforge #17325 Upgrade caMOD to use caBIO 4.x and EVS 4.x to get data
*
* Revision 1.67 2009/03/25 16:24:58... | Modified for JIRA# Bug CAMOD-975 Therapeutic approaches search page not shown - user gets blank page
SVN-Revision: 5678
| software/camod/src/gov/nih/nci/camod/webapp/action/ViewModelAction.java | Modified for JIRA# Bug CAMOD-975 Therapeutic approaches search page not shown - user gets blank page | |
Java | mit | e4ec9a4a06d8afaac8d5d2ab54786615fbc9a61e | 0 | gzsnail/acm-study | import java.io.*;
import java.util.*;
public class p2{
public static void main(String args[])throws Exception{
Scanner scin = new Scanner(System.in);
int a=0, b=0, c=0, t=0;
t = scin.nextInt();
do{
String str = scin.next();
for (int i=0; i<str.length();i++){
... | src/p2.java | import java.io.*;
import java.util.*;
public class p2{
public static void main(String args[])throws Exception{
Scanner scin = new Scanner(System.in);
int a=0, b=0, c=0, t=0;
t = scin.nextInt();
do{
String str = scin.nextString();
for (int i=0; i<str.length();... | Update p2.java | src/p2.java | Update p2.java | |
Java | mit | 34dbd43b01a6f9998bbd87333d5c51a276d8323c | 0 | fvoichick/ColoredPlayerNames | package com.finnv3.coloredplayernames;
import java.io.IOException;
import java.util.ArrayList;
import java.util.EnumMap;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Random;
import java.util.UUID;
import java.util.logging.Level;
import org.bukkit.ChatColor;
import org.bukkit... | src/com/finnv3/coloredplayernames/ColoredPlayerNames.java | package com.finnv3.coloredplayernames;
import java.io.IOException;
import java.util.ArrayList;
import java.util.EnumMap;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Random;
import java.util.UUID;
import java.util.logging.Level;
import org.bukkit.ChatColor;
import org.bukkit... | Caught strange cases to prevent runtime exceptions
| src/com/finnv3/coloredplayernames/ColoredPlayerNames.java | Caught strange cases to prevent runtime exceptions | |
Java | mit | c05a9fc381b337289f59ecaf2da2d4cd0f9d7931 | 0 | ronaldosvieira/tcc | package mind.need;
import entity.Animal;
import mind.goal.*;
import mind.sense.Perception;
public class Hunger extends Need {
private String diet;
public Hunger(Animal animal, double decayPerMinute, double value) {
super(animal, decayPerMinute, value);
diet = getAnimal().getSemantic().get("d... | src/mind/need/Hunger.java | package mind.need;
import entity.Animal;
import mind.goal.*;
import mind.sense.Perception;
public class Hunger extends Need {
public Hunger(Animal animal, double decayPerMinute, double value) {
super(animal, decayPerMinute, value);
}
public Hunger(Animal animal, double decayRate) {
super(... | Diet-based evaluation on hunger
| src/mind/need/Hunger.java | Diet-based evaluation on hunger | |
Java | cc0-1.0 | 1b08d617b53428b31a5ce9a61c3c500896dcc6db | 0 | ConnectSDK/Connect-SDK-Android-API-Sampler | //
// Connect SDK Sample App by LG Electronics
//
// To the extent possible under law, the person who associated CC0 with
// this sample app has waived all copyright and related or neighboring rights
// to the sample app.
//
// You should have received a copy of the CC0 legalcode along with this
// work. If not, ... | src/com/connectsdk/sampler/fragments/MediaPlayerFragment.java | //
// Connect SDK Sample App by LG Electronics
//
// To the extent possible under law, the person who associated CC0 with
// this sample app has waived all copyright and related or neighboring rights
// to the sample app.
//
// You should have received a copy of the CC0 legalcode along with this
// work. If not, ... | Use MediaInfo.Builder in the sampler app
| src/com/connectsdk/sampler/fragments/MediaPlayerFragment.java | Use MediaInfo.Builder in the sampler app | |
Java | agpl-3.0 | 0e99a684d6b325f15ad2d1182768a3bff240a1ae | 0 | Wikimedia-TW/han3_ji7_tsoo1_kian3_WM,sih4sing5hong5/han3_ji7_tsoo1_kian3 | package cc.core;
/**
* 僅限雙組合符號的正規化型態。
*
* @author Ihc
*/
public class 組字式部件正規化
{
/**
* 正規化部件結構。
*
* @param 部件
* 欲正規化的物件
*/
public void 正規化(ChineseCharacter 部件)
{
if (ChineseCharacterTzuCombinationType.isCombinationType(部件
.getCodePoint()))
{
ChineseCharacterTzu 字部件 = (ChineseCh... | src/cc/core/組字式部件正規化.java | package cc.core;
/**
* 僅限雙組合符號的正規化型態。
*
* @author Ihc
*/
public class 組字式部件正規化
{
/**
* 正規化部件結構。
*
* @param 部件
* 欲正規化的物件
*/
public void 正規化(ChineseCharacter 部件)
{
if (ChineseCharacterTzuCombinationType.isCombinationType(部件
.getCodePoint()))
{
ChineseCharacterTzu 字部件 = (ChineseCh... | 共以後愛改的所在加一个記號 丞宏
| src/cc/core/組字式部件正規化.java | 共以後愛改的所在加一个記號 丞宏 | |
Java | lgpl-2.1 | 9792b4b70a0aea37653ad19b5b8c978cd36fa0af | 0 | xwiki/xwiki-commons,xwiki/xwiki-commons | /*
* 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... | xwiki-commons-core/xwiki-commons-extension/xwiki-platform-extension-repositories/xwiki-platform-extension-repository-xwiki/xwiki-platform-extension-repository-xwiki-server-api/src/main/java/org/xwiki/extension/repository/xwiki/internal/resources/SearchRESTResource.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... | XWIKI-7252: Add summary in the simple search on XR | xwiki-commons-core/xwiki-commons-extension/xwiki-platform-extension-repositories/xwiki-platform-extension-repository-xwiki/xwiki-platform-extension-repository-xwiki-server-api/src/main/java/org/xwiki/extension/repository/xwiki/internal/resources/SearchRESTResource.java | XWIKI-7252: Add summary in the simple search on XR | |
Java | apache-2.0 | 0aeebffcb7f97fecbea423b006f3c0bd5389a3d0 | 0 | reportportal/service-authorization,reportportal/service-authorization | package com.epam.reportportal.auth.config;
import com.epam.reportportal.auth.OAuthSuccessHandler;
import com.epam.reportportal.auth.ReportPortalClient;
import com.epam.reportportal.auth.ReportPortalUser;
import com.epam.reportportal.auth.basic.BasicPasswordAuthenticationProvider;
import com.epam.reportportal.auth.basi... | src/main/java/com/epam/reportportal/auth/config/SecurityConfiguration.java | package com.epam.reportportal.auth.config;
import com.epam.reportportal.auth.OAuthSuccessHandler;
import com.epam.reportportal.auth.ReportPortalClient;
import com.epam.reportportal.auth.ReportPortalUser;
import com.epam.reportportal.auth.basic.BasicPasswordAuthenticationProvider;
import com.epam.reportportal.auth.basi... | code style refactoring
| src/main/java/com/epam/reportportal/auth/config/SecurityConfiguration.java | code style refactoring | |
Java | apache-2.0 | 18418da6462ec716d8d53e75945783649f2e020e | 0 | watson-developer-cloud/java-sdk,watson-developer-cloud/java-sdk,watson-developer-cloud/java-sdk,watson-developer-cloud/java-sdk | /*
* (C) Copyright IBM Corp. 2019, 2021.
*
* 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 t... | assistant/src/test/java/com/ibm/watson/assistant/v1/AssistantServiceIT.java | /*
* (C) Copyright IBM Corp. 2019, 2021.
*
* 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 t... | test(assistant-v1): update ITs
| assistant/src/test/java/com/ibm/watson/assistant/v1/AssistantServiceIT.java | test(assistant-v1): update ITs | |
Java | apache-2.0 | f0f325feeef138113dbfdb69a4ecb51856b30310 | 0 | jaamsim/jaamsim,jaamsim/jaamsim,jaamsim/jaamsim,jaamsim/jaamsim | /*
* JaamSim Discrete Event Simulation
* Copyright (C) 2012 Ausenco Engineering Canada Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at you... | src/main/java/com/jaamsim/collada/ColParser.java | /*
* JaamSim Discrete Event Simulation
* Copyright (C) 2012 Ausenco Engineering Canada Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at you... | JS: Collada importer 'fix'. Generate normals that have a negative index
The collada spec says nothing of negative indices, but if one is
encountered for a normal, treat that as missing and generate a new one.
Signed-off-by: Matt Chudleigh <0ca390ed93f516590d05286882efa52bb3b35616@ausenco.com>
Signed-off-by: Harvey Ha... | src/main/java/com/jaamsim/collada/ColParser.java | JS: Collada importer 'fix'. Generate normals that have a negative index | |
Java | apache-2.0 | e872c8e2e9f57180e41455104dacfe1d63036153 | 0 | LucasPickering/terrain-gen | package me.lucaspickering.groundwar.world.generate;
import java.util.HashSet;
import java.util.Map;
import java.util.Random;
import java.util.Set;
import me.lucaspickering.groundwar.util.Funcs;
import me.lucaspickering.groundwar.util.InclusiveRange;
import me.lucaspickering.groundwar.util.TilePoint;
import me.lucaspi... | src/main/java/me/lucaspickering/groundwar/world/generate/PeakGenerator.java | package me.lucaspickering.groundwar.world.generate;
import java.util.HashSet;
import java.util.Map;
import java.util.Random;
import java.util.Set;
import me.lucaspickering.groundwar.util.Funcs;
import me.lucaspickering.groundwar.util.InclusiveRange;
import me.lucaspickering.groundwar.util.TilePoint;
import me.lucaspi... | Change peak elev
| src/main/java/me/lucaspickering/groundwar/world/generate/PeakGenerator.java | Change peak elev | |
Java | apache-2.0 | 4d88c7081a1d0631cb24df5ba5909de23e6f3ead | 0 | avafanasiev/groovy,aim-for-better/incubator-groovy,nobeans/incubator-groovy,nkhuyu/incubator-groovy,aim-for-better/incubator-groovy,samanalysis/incubator-groovy,armsargis/groovy,avafanasiev/groovy,adjohnson916/groovy-core,taoguan/incubator-groovy,apache/incubator-groovy,shils/groovy,mariogarcia/groovy-core,traneHead/gr... | /*
$Id$
Copyright 2003 (C) James Strachan and Bob Mcwhirter. All Rights Reserved.
Redistribution and use of this software and associated documentation
("Software"), with or without modification, are permitted provided
that the following conditions are met:
1. Redistributions of source code must retain copyrigh... | src/main/groovy/lang/MetaClass.java | /*
$Id$
Copyright 2003 (C) James Strachan and Bob Mcwhirter. All Rights Reserved.
Redistribution and use of this software and associated documentation
("Software"), with or without modification, are permitted provided
that the following conditions are met:
1. Redistributions of source code must retain copyrigh... | added test if coerce was really successfull to avoid endless loops
git-svn-id: aa43ce4553b005588bb3cc6c16966320b011facb@1779 a5544e8c-8a19-0410-ba12-f9af4593a198
| src/main/groovy/lang/MetaClass.java | added test if coerce was really successfull to avoid endless loops | |
Java | apache-2.0 | b93282dbfecf4959dc1753f59dd73da5e4046395 | 0 | grro/http2 | /*
* Copyright (c) 2015 Gregor Roth
*
* 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 ... | src/test/java/eu/redzoo/article/javaworld/http2/HighLevelHttp2ClientTest.java | /*
* Copyright (c) 2015 Gregor Roth
*
* 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 ... | test method renamed
| src/test/java/eu/redzoo/article/javaworld/http2/HighLevelHttp2ClientTest.java | test method renamed | |
Java | apache-2.0 | eef2afe829a7e1f7955dc67b9d50be8caf87cb1d | 0 | dmvolod/camel,haku/camel,dpocock/camel,zregvart/camel,snadakuduru/camel,tlehoux/camel,arnaud-deprez/camel,NetNow/camel,mike-kukla/camel,koscejev/camel,veithen/camel,chirino/camel,ramonmaruko/camel,dkhanolkar/camel,dmvolod/camel,dmvolod/camel,nboukhed/camel,qst-jdc-labs/camel,mgyongyosi/camel,dvankleef/camel,hqstevenson... | /**
* 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... | camel-core/src/main/java/org/apache/camel/builder/DeadLetterChannelBuilder.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... | Added missing fluent builders to DLC for Java DSL
git-svn-id: e3ccc80b644512be24afa6caf639b2d1f1969354@731256 13f79535-47bb-0310-9956-ffa450edef68
| camel-core/src/main/java/org/apache/camel/builder/DeadLetterChannelBuilder.java | Added missing fluent builders to DLC for Java DSL | |
Java | apache-2.0 | ed7f64895736463e16d2e55d22b17e7978a1d105 | 0 | nicolargo/intellij-community,signed/intellij-community,slisson/intellij-community,ibinti/intellij-community,petteyg/intellij-community,clumsy/intellij-community,xfournet/intellij-community,alphafoobar/intellij-community,dslomov/intellij-community,retomerz/intellij-community,petteyg/intellij-community,fnouama/intellij-c... | /*
* Copyright 2000-2009 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | plugins/git4idea/src/git4idea/vfs/GitRootTracker.java | /*
* Copyright 2000-2009 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agre... | Git IDEA-72767 find roots on a pooled thread.
| plugins/git4idea/src/git4idea/vfs/GitRootTracker.java | Git IDEA-72767 find roots on a pooled thread. | |
Java | apache-2.0 | 9dda995c81d676713a5309501ab3083721b092b7 | 0 | opensciencegrid/oim,opensciencegrid/oim,opensciencegrid/oim,opensciencegrid/oim,opensciencegrid/oim | package edu.iu.grid.oim.servlet;
import java.io.IOException;
import java.io.PrintWriter;
import java.sql.SQLException;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.Date;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpSe... | src/edu/iu/grid/oim/servlet/HomeServlet.java | package edu.iu.grid.oim.servlet;
import java.io.IOException;
import java.io.PrintWriter;
import java.sql.SQLException;
import java.sql.Timestamp;
import java.util.ArrayList;
import java.util.Date;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpSe... | updated the welcome note for user without certificate (patched on previous release)
| src/edu/iu/grid/oim/servlet/HomeServlet.java | updated the welcome note for user without certificate (patched on previous release) | |
Java | apache-2.0 | dfdb2229dddd71eb4f7b1e98116e7d7276cf7590 | 0 | getlantern/lantern-java,getlantern/lantern-java,getlantern/lantern-java,lqch14102/lantern,lqch14102/lantern,lqch14102/lantern,getlantern/lantern-java,lqch14102/lantern,lqch14102/lantern,getlantern/lantern-java,getlantern/lantern-java,getlantern/lantern-java,lqch14102/lantern,lqch14102/lantern,getlantern/lantern-java,lq... | package org.lantern.state;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.security.GeneralSecurityException;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang.StringUtils;
import org.codehaus.jackson.map.ObjectMapper;
import org... | src/main/java/org/lantern/state/Storage.java | package org.lantern.state;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.security.GeneralSecurityException;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang.StringUtils;
import org.codehaus.jackson.map.ObjectMapper;
import org... | make write synchronized, so that we do not get weird errors. Fixes #665
| src/main/java/org/lantern/state/Storage.java | make write synchronized, so that we do not get weird errors. Fixes #665 | |
Java | apache-2.0 | 4c14303142c7cf9c939ab9e135d6e85606815acb | 0 | cuba-platform/cuba,dimone-kun/cuba,dimone-kun/cuba,cuba-platform/cuba,dimone-kun/cuba,cuba-platform/cuba | /*
* Copyright (c) 2008 Haulmont Technology Ltd. All Rights Reserved.
* Haulmont Technology proprietary and confidential.
* Use is subject to license terms.
* Author: Dmitry Abramov
* Created: 26.12.2008 10:02:53
* $Id$
*/
package com.haulmont.cuba.gui.xml;
import java.util.regex.Matcher;
import ja... | modules/gui/src/com/haulmont/cuba/gui/xml/ParametersHelper.java | /*
* Copyright (c) 2008 Haulmont Technology Ltd. All Rights Reserved.
* Haulmont Technology proprietary and confidential.
* Use is subject to license terms.
* Author: Dmitry Abramov
* Created: 26.12.2008 10:02:53
* $Id$
*/
package com.haulmont.cuba.gui.xml;
import java.util.regex.Matcher;
import ja... | fix ParametersHelper
| modules/gui/src/com/haulmont/cuba/gui/xml/ParametersHelper.java | fix ParametersHelper | |
Java | bsd-3-clause | ea278c54baf29735bc13e796b6f673f5649924c9 | 0 | wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy | /*
* Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free ... | graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/calc/FloatRemNode.java | /*
* Copyright (c) 2011, 2014, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free ... | fix FloatRemNode canonicalization
| graal/com.oracle.graal.nodes/src/com/oracle/graal/nodes/calc/FloatRemNode.java | fix FloatRemNode canonicalization | |
Java | bsd-3-clause | c75e444faac547d651923ff8fa707af29bf5c92e | 0 | NCIP/nci-term-browser,NCIP/nci-term-browser,NCIP/nci-term-browser,NCIP/nci-term-browser | package gov.nih.nci.evs.browser.utils;
import java.util.*;
import java.sql.*;
import org.LexGrid.LexBIG.LexBIGService.CodedNodeSet.*;
import org.LexGrid.LexBIG.DataModel.Collections.*;
import org.LexGrid.LexBIG.DataModel.Core.*;
import org.LexGrid.LexBIG.Exceptions.*;
import org.LexGrid.LexBIG.Impl.*;
impor... | software/ncitbrowser/src/java/gov/nih/nci/evs/browser/utils/MappingSearchUtils.java | package gov.nih.nci.evs.browser.utils;
import java.util.*;
import java.sql.*;
import org.LexGrid.LexBIG.LexBIGService.CodedNodeSet.*;
import org.LexGrid.LexBIG.DataModel.Collections.*;
import org.LexGrid.LexBIG.DataModel.Core.*;
import org.LexGrid.LexBIG.Exceptions.*;
import org.LexGrid.LexBIG.Impl.*;
impor... | [#29301] Support the search and display of mapping data. [KLO, 022011]
SVN-Revision: 1972
| software/ncitbrowser/src/java/gov/nih/nci/evs/browser/utils/MappingSearchUtils.java | [#29301] Support the search and display of mapping data. [KLO, 022011] | |
Java | mit | 1734d388ef8a74abb8428b6871ae165b338c67bc | 0 | swstack/Bean-Android-SDK,colus001/Bean-Android-SDK,androidgrl/Bean-Android-SDK,androidgrl/Bean-Android-SDK,hongbinz/Bean-Android-SDK,PunchThrough/bean-sdk-android,hongbinz/Bean-Android-SDK,PunchThrough/bean-sdk-android,colus001/Bean-Android-SDK,PunchThrough/Bean-Android-SDK,swstack/Bean-Android-SDK,PunchThrough/Bean-An... | package com.punchthrough.bean.sdk.internal.utility;
import com.punchthrough.bean.sdk.internal.exception.NoEnumFoundException;
import org.apache.commons.codec.DecoderException;
import org.apache.commons.codec.binary.Hex;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.util.ArrayList;
import java.ut... | beansdk/src/main/java/com/punchthrough/bean/sdk/internal/utility/Misc.java | package com.punchthrough.bean.sdk.internal.utility;
import com.punchthrough.bean.sdk.internal.exception.NoEnumFoundException;
import org.apache.commons.codec.DecoderException;
import org.apache.commons.codec.binary.Hex;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import java.util.ArrayList;
import java.ut... | Add intToTwoBytes for reconstructing UInt16 from Java ints
| beansdk/src/main/java/com/punchthrough/bean/sdk/internal/utility/Misc.java | Add intToTwoBytes for reconstructing UInt16 from Java ints | |
Java | mit | e344c65a6b3ac89f8719f071c22579f642ef203f | 0 | kenzierocks/SpongeVanilla,kenzierocks/SpongeVanilla | /*
* This file is part of Sponge, licensed under the MIT License (MIT).
*
* Copyright (c) SpongePowered <https://www.spongepowered.org>
* Copyright (c) contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Softwar... | src/main/java/org/spongepowered/server/mixin/server/MixinMinecraftServer.java | /*
* This file is part of Sponge, licensed under the MIT License (MIT).
*
* Copyright (c) SpongePowered <https://www.spongepowered.org>
* Copyright (c) contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Softwar... | Temporarily disable scheduling tasks in the main thread for the shutdown thread
Fixes #196
| src/main/java/org/spongepowered/server/mixin/server/MixinMinecraftServer.java | Temporarily disable scheduling tasks in the main thread for the shutdown thread Fixes #196 | |
Java | mit | a4b278c385456e6ccf99fe7b8f286cd13c483609 | 0 | BranchMetrics/android-branch-deep-linking,BranchMetrics/Android-Deferred-Deep-Linking-SDK,BranchMetrics/android-branch-deep-linking,BranchMetrics/Android-Deferred-Deep-Linking-SDK,BranchMetrics/Android-Deferred-Deep-Linking-SDK,BranchMetrics/Android-Deferred-Deep-Linking-SDK,BranchMetrics/android-branch-deep-linking,Br... | package io.branch.referral;
import android.annotation.TargetApi;
import android.app.Activity;
import android.app.Application;
import android.content.Context;
import android.content.Intent;
import android.content.pm.ActivityInfo;
import android.content.pm.ApplicationInfo;
import android.content.pm.PackageInfo;
import a... | Branch-SDK/src/io/branch/referral/Branch.java | package io.branch.referral;
import android.annotation.TargetApi;
import android.app.Activity;
import android.app.Application;
import android.content.Context;
import android.content.Intent;
import android.content.pm.ActivityInfo;
import android.content.pm.ApplicationInfo;
import android.content.pm.PackageInfo;
import a... | Java doc error fix
| Branch-SDK/src/io/branch/referral/Branch.java | Java doc error fix | |
Java | mpl-2.0 | c616302f297a0108bd964c3c49b121e8e327cf08 | 0 | GreenDelta/olca-modules,GreenDelta/olca-modules,GreenDelta/olca-modules | package org.openlca.io.simapro.csv.input;
import org.openlca.core.database.IDatabase;
import org.openlca.core.database.ProcessDao;
import org.openlca.core.model.AllocationFactor;
import org.openlca.core.model.AllocationMethod;
import org.openlca.core.model.Category;
import org.openlca.core.model.Exchange;
import org.o... | olca-io/src/main/java/org/openlca/io/simapro/csv/input/ProcessHandler.java | package org.openlca.io.simapro.csv.input;
import org.openlca.core.database.IDatabase;
import org.openlca.core.database.ProcessDao;
import org.openlca.core.model.AllocationFactor;
import org.openlca.core.model.AllocationMethod;
import org.openlca.core.model.Category;
import org.openlca.core.model.Exchange;
import org.o... | :bug: wrong reference units of mapped flows in SimaPro import
| olca-io/src/main/java/org/openlca/io/simapro/csv/input/ProcessHandler.java | :bug: wrong reference units of mapped flows in SimaPro import | |
Java | lgpl-2.1 | d8fcf45143b5997ea081014cb9a68ce054e6d249 | 0 | liscju/checkstyle,ilanKeshet/checkstyle,attatrol/checkstyle,mkordas/checkstyle,AkshitaKukreja30/checkstyle,sirdis/checkstyle,StetsiukRoman/checkstyle,WilliamRen/checkstyle,checkstyle/checkstyle,llocc/checkstyle,universsky/checkstyle,romani/checkstyle,romani/checkstyle,liscju/checkstyle,WilliamRen/checkstyle,rmswimkktt/... | ////////////////////////////////////////////////////////////////////////////////
// checkstyle: Checks Java source code for adherence to a set of rules.
// Copyright (C) 2001-2004 Oliver Burn
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Publ... | src/checkstyle/com/puppycrawl/tools/checkstyle/checks/RegexpHeaderCheck.java | ////////////////////////////////////////////////////////////////////////////////
// checkstyle: Checks Java source code for adherence to a set of rules.
// Copyright (C) 2001-2004 Oliver Burn
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Publ... | rfe #1041590, allow header specification directly in checkstyle config file
| src/checkstyle/com/puppycrawl/tools/checkstyle/checks/RegexpHeaderCheck.java | rfe #1041590, allow header specification directly in checkstyle config file | |
Java | lgpl-2.1 | 5b975209666bc9e7ed0af6d59f2d8bef235e6d36 | 0 | Cazsius/Spice-of-Life-Carrot-Edition | package com.cazsius.solcarrot.tracking;
import com.cazsius.solcarrot.SOLCarrot;
import com.cazsius.solcarrot.SOLCarrotConfig;
import net.minecraft.entity.SharedMonsterAttributes;
import net.minecraft.entity.ai.attributes.AttributeModifier;
import net.minecraft.entity.ai.attributes.IAttributeInstance;
import net.minecr... | src/main/java/com/cazsius/solcarrot/tracking/MaxHealthHandler.java | package com.cazsius.solcarrot.tracking;
import com.cazsius.solcarrot.SOLCarrot;
import com.cazsius.solcarrot.SOLCarrotConfig;
import net.minecraft.entity.SharedMonsterAttributes;
import net.minecraft.entity.ai.attributes.AttributeModifier;
import net.minecraft.entity.ai.attributes.IAttributeInstance;
import net.minecr... | fixed max health sometimes desyncing
| src/main/java/com/cazsius/solcarrot/tracking/MaxHealthHandler.java | fixed max health sometimes desyncing | |
Java | lgpl-2.1 | ea9094305c12236e7c6f4340282d92da754f7068 | 0 | andreasprlic/biojava,andreasprlic/biojava,andreasprlic/biojava,heuermh/biojava,heuermh/biojava,lafita/biojava,lafita/biojava,lafita/biojava,JolantaWojcik/biojavaOwn,emckee2006/biojava,biojava/biojava,biojava/biojava,pwrose/biojava,sbliven/biojava-sbliven,biojava/biojava,sbliven/biojava-sbliven,fionakim/biojava,JolantaW... | package org.biojava3.core.sequence.location.template;
import java.util.List;
import org.biojava3.core.sequence.Strand;
import org.biojava3.core.sequence.location.SimpleLocation;
/**
* Sets of integers used to represent the location of features on sequence. A
* location can be a single set of bounds or composed of ... | biojava3-core/src/main/java/org/biojava3/core/sequence/location/template/Location.java | package org.biojava3.core.sequence.location.template;
import java.util.List;
import org.biojava3.core.sequence.Strand;
import org.biojava3.core.sequence.location.SimpleLocation;
/**
* Sets of integers used to represent the location of features on sequence. A
* location can be a single set of bounds or composed of ... | Documentation improvement
git-svn-id: a754228c0d23e99fefe44e35d84d6184990ceaa2@7653 7c6358e6-4a41-0410-a743-a5b2a554c398
| biojava3-core/src/main/java/org/biojava3/core/sequence/location/template/Location.java | Documentation improvement | |
Java | lgpl-2.1 | bd12c0fe28e29d8e36133d8f649b3d3ae5247d96 | 0 | ebollens/ccnmp,cawka/ndnx,ebollens/ccnmp,svartika/ccnx,ebollens/ccnmp,ebollens/ccnmp,svartika/ccnx,svartika/ccnx,svartika/ccnx,cawka/ndnx,cawka/ndnx,svartika/ccnx,cawka/ndnx,svartika/ccnx,cawka/ndnx,svartika/ccnx | package org.ccnx.ccn.profiles.security.access;
import java.io.IOException;
import java.security.InvalidKeyException;
import java.security.Key;
import java.security.NoSuchAlgorithmException;
import java.security.PrivateKey;
import java.security.SecureRandom;
import javax.crypto.NoSuchPaddingException;
import javax.cry... | javasrc/src/org/ccnx/ccn/profiles/security/access/AccessControlManager.java | package org.ccnx.ccn.profiles.security.access;
import java.io.IOException;
import java.security.InvalidKeyException;
import java.security.Key;
import java.security.NoSuchAlgorithmException;
import java.security.PrivateKey;
import java.security.SecureRandom;
import javax.crypto.NoSuchPaddingException;
import javax.cry... | Revert "Bug fix in AccessControlManager"
This reverts commit b0b0e8d54ced02d8af60ee325fcc502fdeebaf05.
This turned out not to be a bug; we changed it and then fixed what
was probably the actual bug (759aec54f97e3b2cdfdbb033e54c6d707637c661),
and for some strange reason it worked in our test case. Don't know
why... Ba... | javasrc/src/org/ccnx/ccn/profiles/security/access/AccessControlManager.java | Revert "Bug fix in AccessControlManager" | |
Java | apache-2.0 | 7f186701ddceb5179ed76d8a52b073291073e552 | 0 | apache/directory-project | /*
* 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")... | mina/core/src/main/java/org/apache/mina/handler/support/IoSessionOutputStream.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")... | Changed IoSessionOutputStream to wait for the WriteFuture only when a user calls flush().
git-svn-id: 5c3b06693d750a6aefbf1081b6b7d57c0165fdb2@446482 13f79535-47bb-0310-9956-ffa450edef68
| mina/core/src/main/java/org/apache/mina/handler/support/IoSessionOutputStream.java | Changed IoSessionOutputStream to wait for the WriteFuture only when a user calls flush(). | |
Java | apache-2.0 | 9b7caf99502a229d3fda6f0b8bd485c9ed7230d8 | 0 | fthevenet/binjr,fthevenet/binjr | /*
* Copyright 2016-2021 Frederic Thevenet
*
* 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 b... | binjr-core/src/main/java/eu/binjr/core/controllers/XYChartsWorksheetController.java | /*
* Copyright 2016-2021 Frederic Thevenet
*
* 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 b... | Inhibit drag&drop event handlers on closed worksheets
| binjr-core/src/main/java/eu/binjr/core/controllers/XYChartsWorksheetController.java | Inhibit drag&drop event handlers on closed worksheets | |
Java | apache-2.0 | f8b61f130eaa3612167c3b441d1c44c0b6ac07d9 | 0 | bd-dev-mobileum/presto,bd-dev-mobileum/presto,bd-dev-mobileum/presto,bd-dev-mobileum/presto,bd-dev-mobileum/presto | /*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distribut... | presto-main/src/main/java/com/facebook/presto/execution/TaskExecutor.java | /*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distribut... | Check for new entrants after adding new splits
| presto-main/src/main/java/com/facebook/presto/execution/TaskExecutor.java | Check for new entrants after adding new splits | |
Java | apache-2.0 | cfcc6e016044791c94ff114d296c11f50873c044 | 0 | datametica/calcite,datametica/calcite,datametica/calcite,datametica/calcite,datametica/calcite,datametica/calcite | /*
* 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 ... | core/src/test/java/org/apache/calcite/rel/rel2sql/RelToSqlConverterTest.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 ... | RNBS-140: Format violation fixed by running " ./gradlew autostyleApply"
| core/src/test/java/org/apache/calcite/rel/rel2sql/RelToSqlConverterTest.java | RNBS-140: Format violation fixed by running " ./gradlew autostyleApply" | |
Java | apache-2.0 | 95877e1aef3b72755351303a91b96791f70eeb33 | 0 | jaamsim/jaamsim,jaamsim/jaamsim,jaamsim/jaamsim,jaamsim/jaamsim | /*
* JaamSim Discrete Event Simulation
* Copyright (C) 2020-2021 JaamSim Software 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... | src/main/java/com/jaamsim/ui/ExampleBox.java | /*
* JaamSim Discrete Event Simulation
* Copyright (C) 2020-2021 JaamSim Software 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... | JS: delete call to 'setWindowDefaults' in ExampleBox
Fixes a bug that caused the Control Panel to show example's speed
multiplier value. It is not required because the tool windows are not
shown and because the View size and position defaults are static.
Signed-off-by: Harry King <409587b9e6671aa0763646191d292852dc49... | src/main/java/com/jaamsim/ui/ExampleBox.java | JS: delete call to 'setWindowDefaults' in ExampleBox | |
Java | apache-2.0 | 03a0de82c3003f2f6dec3b179b87a6ff330f983f | 0 | chibenwa/james,rouazana/james,chibenwa/james,aduprat/james,aduprat/james,aduprat/james,aduprat/james,chibenwa/james,rouazana/james,rouazana/james,chibenwa/james,rouazana/james | /****************************************************************
* 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... | mailets/src/main/java/org/apache/james/transport/matchers/IsInWhiteList.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... | Add more wildcard matching for IsInWhitelist
git-svn-id: de9d04cf23151003780adc3e4ddb7078e3680318@986070 13f79535-47bb-0310-9956-ffa450edef68
| mailets/src/main/java/org/apache/james/transport/matchers/IsInWhiteList.java | Add more wildcard matching for IsInWhitelist | |
Java | apache-2.0 | 34eb10299f14d44ce106810aaaf7f55ad7663635 | 0 | mtransitapps/ca-hamilton-hsr-bus-parser | package org.mtransit.parser.ca_hamilton_hsr_bus;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.mtransit.commons.CharUtils;
import org.mtransit.commons.CleanUtils;
import org.mtransit.commons.StringUtils;
import org.mtransit.parser.DefaultAgencyTools;
import org.mtransi... | src/main/java/org/mtransit/parser/ca_hamilton_hsr_bus/HamiltonHSRBusAgencyTools.java | package org.mtransit.parser.ca_hamilton_hsr_bus;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.mtransit.commons.CharUtils;
import org.mtransit.commons.CleanUtils;
import org.mtransit.commons.StringUtils;
import org.mtransit.parser.DefaultAgencyTools;
import org.mtransi... | Compatibility with latest update
| src/main/java/org/mtransit/parser/ca_hamilton_hsr_bus/HamiltonHSRBusAgencyTools.java | Compatibility with latest update | |
Java | apache-2.0 | 00736bba70ddfb90e013f92ed23de6ec4aba060c | 0 | joansmith/orientdb,cstamas/orientdb,allanmoso/orientdb,wouterv/orientdb,allanmoso/orientdb,orientechnologies/orientdb,mmacfadden/orientdb,mbhulin/orientdb,orientechnologies/orientdb,tempbottle/orientdb,alonsod86/orientdb,joansmith/orientdb,sanyaade-g2g-repos/orientdb,tempbottle/orientdb,wyzssw/orientdb,alonsod86/orient... | /*
* Copyright 2010-2012 Luca Garulli (l.garulli--at--orientechnologies.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
... | core/src/main/java/com/orientechnologies/orient/core/db/ODatabaseComplex.java | /*
* Copyright 2010-2012 Luca Garulli (l.garulli--at--orientechnologies.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
... | Update core/src/main/java/com/orientechnologies/orient/core/db/ODatabaseComplex.java
Allow set user back to current database instance | core/src/main/java/com/orientechnologies/orient/core/db/ODatabaseComplex.java | Update core/src/main/java/com/orientechnologies/orient/core/db/ODatabaseComplex.java | |
Java | apache-2.0 | c7cfbba898b7198e445db8e615cfaf635ad0f8bf | 0 | mthiele/mvvmFX,sialcasa/mvvmFX,mthiele/mvvmFX,ThirstyGoat/mvvmFX,ThirstyGoat/mvvmFX,sialcasa/mvvmFX,ThirstyGoat/mvvmFX,sialcasa/mvvmFX,mthiele/mvvmFX | package de.saxsys.mvvmfx.utils.commands;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.fail;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.TimeU... | mvvmfx/src/test/java/de/saxsys/mvvmfx/utils/commands/CompositeCommandTest.java | package de.saxsys.mvvmfx.utils.commands;
import static org.assertj.core.api.Assertions.assertThat;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.TimeUnit;
import de.saxsys.mvvmfx.testingutils.GCVerifie... | #204 add test case to reproduce: Exception is thrown when last delegate command is removed.
| mvvmfx/src/test/java/de/saxsys/mvvmfx/utils/commands/CompositeCommandTest.java | #204 add test case to reproduce: Exception is thrown when last delegate command is removed. | |
Java | apache-2.0 | 634b6146293a65e404ab0d29104716d850a2eace | 0 | adrielparedes/guvnor,cristianonicolai/guvnor,baldimir/guvnor,adrielparedes/guvnor,etirelli/guvnor,droolsjbpm/guvnor,kiereleaseuser/guvnor,Rikkola/guvnor,porcelli-forks/guvnor,wmedvede/guvnor,adrielparedes/guvnor,etirelli/guvnor,wmedvede/guvnor,porcelli-forks/guvnor,droolsjbpm/guvnor,kiereleaseuser/guvnor,baldimir/guvno... | /**
* Copyright 2010 JBoss Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to ... | drools-guvnor/src/main/java/org/drools/guvnor/server/files/WebDAVImpl.java | /**
* Copyright 2010 JBoss Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to ... | GUVNOR-604:Guvnor can not response a 'PROPFIND' request which is used to get the children list of 'snapshots'
git-svn-id: a243bed356d289ca0d1b6d299a0597bdc4ecaa09@35141 c60d74c8-e8f6-0310-9e8f-d4a2fc68ab70
| drools-guvnor/src/main/java/org/drools/guvnor/server/files/WebDAVImpl.java | GUVNOR-604:Guvnor can not response a 'PROPFIND' request which is used to get the children list of 'snapshots' | |
Java | apache-2.0 | b8da60b0ca618d22c60776646c86bd2bb44e399b | 0 | MyRobotLab/myrobotlab,MyRobotLab/myrobotlab,MyRobotLab/myrobotlab,MyRobotLab/myrobotlab,MyRobotLab/myrobotlab,MyRobotLab/myrobotlab,MyRobotLab/myrobotlab | package org.myrobotlab.service;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import java.util.List;
import java.util.Map;
import org.junit.BeforeClass;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TestName;
import org.junit.runner.JUnitCore;
import ... | src/test/java/org/myrobotlab/service/OpenCVTest.java | package org.myrobotlab.service;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import java.util.List;
import java.util.Map;
import org.junit.BeforeClass;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TestName;
import org.junit.runner.JUnitCore;
import ... | print locale | src/test/java/org/myrobotlab/service/OpenCVTest.java | print locale | |
Java | apache-2.0 | 58a676001e582201d0fa4648dd3d29106c80a879 | 0 | sekikn/ambari,sekikn/ambari,sekikn/ambari,sekikn/ambari,sekikn/ambari,sekikn/ambari,sekikn/ambari,sekikn/ambari,sekikn/ambari | /*
* 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 ... | ambari-server/src/main/java/org/apache/ambari/server/controller/KerberosHelperImpl.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 ... | AMBARI-24063. ZooKeeper Server Start fail during cluster deployment via api (amagyar) (#1498)
| ambari-server/src/main/java/org/apache/ambari/server/controller/KerberosHelperImpl.java | AMBARI-24063. ZooKeeper Server Start fail during cluster deployment via api (amagyar) (#1498) | |
Java | apache-2.0 | 51b0a81a53218cfad4b2684a837dc8e7f0e7e562 | 0 | inbloom/secure-data-service,inbloom/secure-data-service,inbloom/secure-data-service,inbloom/secure-data-service,inbloom/secure-data-service | /*
* Copyright 2012 Shared Learning Collaborative, LLC
*
* 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 applicabl... | sli/dashboard/src/main/java/org/slc/sli/dashboard/client/SDKAPIClient.java | /*
* Copyright 2012 Shared Learning Collaborative, LLC
*
* 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 applicabl... | Having staff dig their schools
| sli/dashboard/src/main/java/org/slc/sli/dashboard/client/SDKAPIClient.java | Having staff dig their schools | |
Java | apache-2.0 | d407684938f6d55be353a0ab759cba0dfbe47ee9 | 0 | code4craft/ibatis-plugin | package org.intellij.ibatis.inspections;
import com.intellij.codeInspection.LocalQuickFix;
import com.intellij.codeInspection.ProblemDescriptor;
import com.intellij.lang.annotation.HighlightSeverity;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.util.text.StringUtil;
import com.intell... | src/org/intellij/ibatis/inspections/NullSettedToPrimaryTypeInspection.java | package org.intellij.ibatis.inspections;
import com.intellij.codeInspection.LocalQuickFix;
import com.intellij.codeInspection.ProblemDescriptor;
import com.intellij.lang.annotation.HighlightSeverity;
import com.intellij.openapi.project.Project;
import com.intellij.openapi.util.text.StringUtil;
import com.intell... | minor update
git-svn-id: a3757b7b28cb5f166982e3e590f726e1a71ef014@524 a27988d2-9830-0410-8773-31d6671a21de
| src/org/intellij/ibatis/inspections/NullSettedToPrimaryTypeInspection.java | minor update | |
Java | apache-2.0 | 24bcca11629dbd6302161cc36cb312595b2a1790 | 0 | tgrall/drill,vkorukanti/drill,yufeldman/incubator-drill,santoshsahoo/drill,kkhatua/drill,amithadke/drill,ebegoli/drill,KulykRoman/drill,KulykRoman/drill,weijietong/drill,arina-ielchiieva/drill,nagix/drill,julianhyde/drill,mehant/drill,hnfgns/incubator-drill,arina-ielchiieva/drill,johanwitters/drill,weijietong/drill,apa... | /**
* 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... | exec/java-exec/src/test/java/org/apache/drill/exec/TestWindowFunctions.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... | DRILL-3683: Add baseline and expected plan for TestWindowFunctions suite
| exec/java-exec/src/test/java/org/apache/drill/exec/TestWindowFunctions.java | DRILL-3683: Add baseline and expected plan for TestWindowFunctions suite | |
Java | apache-2.0 | aaab3fa137d648b9d7b729034498157c4687b3a0 | 0 | MToLinux/Nginxlib | package org.cs2c.nginlib.config;
import java.util.ArrayList;
import java.util.List;
public class RecDirective implements Directive,Element{
private String directiveName=null;
private String directiveValue=null;
public void SetDirectiveText(String DirectiveText) {
directiveValue = DirectiveText;
}... | Nginlib/src/org/cs2c/nginlib/config/RecDirective.java | package org.cs2c.nginlib.config;
import java.util.ArrayList;
import java.util.List;
public class RecDirective implements Directive,Element{
private String directiveName=null;
private String directiveValue=null;
public void SetDirectiveText(String DirectiveText) {
directiveValue = DirectiveText;
}... | fix Stringparam's ";" | Nginlib/src/org/cs2c/nginlib/config/RecDirective.java | fix Stringparam's ";" | |
Java | apache-2.0 | d4713bfb94396e960f009912bcbeee2788940695 | 0 | BrunoEberhard/minimal-j,BrunoEberhard/minimal-j,BrunoEberhard/minimal-j | package ch.openech.mj.db;
import java.lang.reflect.Field;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Lin... | Minimal-J/src/main/java/ch/openech/mj/db/AbstractTable.java | package ch.openech.mj.db;
import java.lang.reflect.Field;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
import java.util.Lin... | AbstractTable.findColumns: special check for view fields not necessary | Minimal-J/src/main/java/ch/openech/mj/db/AbstractTable.java | AbstractTable.findColumns: special check for view fields not necessary | |
Java | bsd-3-clause | 1ab829535f00aa929bd4004c871c7bd494d83394 | 0 | wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy,wdv4758h/ZipPy | /*
* Copyright (c) 2013, Regents of the University of California
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice... | graal/edu.uci.python.builtins/src/edu/uci/python/builtins/type/StringBuiltins.java | /*
* Copyright (c) 2013, Regents of the University of California
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice... | str.split()
| graal/edu.uci.python.builtins/src/edu/uci/python/builtins/type/StringBuiltins.java | str.split() | |
Java | bsd-3-clause | fbf7e1e6de1e34eebcadc62e45fb8a6d1a373bc9 | 0 | groupon/monsoon,groupon/monsoon,groupon/monsoon,groupon/monsoon | package com.groupon.lex.metrics.history.xdr;
import com.groupon.lex.metrics.history.TSData;
import com.groupon.lex.metrics.history.TSDataVersionDispatch.Releaseable;
import com.groupon.lex.metrics.history.v2.Compression;
import com.groupon.lex.metrics.history.v2.tables.ReadonlyTableFile;
import com.groupon.lex.metrics... | history/src/main/java/com/groupon/lex/metrics/history/xdr/TSDataOptimizerTask.java | package com.groupon.lex.metrics.history.xdr;
import com.groupon.lex.metrics.history.TSData;
import com.groupon.lex.metrics.history.TSDataVersionDispatch.Releaseable;
import com.groupon.lex.metrics.history.v2.Compression;
import com.groupon.lex.metrics.history.v2.tables.ReadonlyTableFile;
import com.groupon.lex.metrics... | When optimizing multiple files, handle them in order (reduces number of blocks in tables file).
| history/src/main/java/com/groupon/lex/metrics/history/xdr/TSDataOptimizerTask.java | When optimizing multiple files, handle them in order (reduces number of blocks in tables file). | |
Java | bsd-3-clause | adb66d660fd9434f964f5c89c0a78157878b6213 | 0 | dejlek/jlib | package com.areen.jlib.gui;
import java.awt.Dimension;
import java.util.Vector;
import javax.swing.ComboBoxModel;
import javax.swing.JComboBox;
/**
* This class implements a JComboBox which takes into account size of its components and make the pop-up
* window wide enough.
*
* The code has been borrowed from htt... | src/main/java/com/areen/jlib/gui/WideComboBox.java | package com.areen.jlib.gui;
import java.awt.Dimension;
import java.util.Vector;
import javax.swing.ComboBoxModel;
import javax.swing.JComboBox;
/**
* This class implements a JComboBox which takes into account size of its components and make the pop-up
* window wide enough.
*
* The code has been borrowed from htt... | This commit hopefully fixes the resizing problems.
Related issue(s): APC-613
git-svn-id: a6571597954494654385eb5e6693f686f629ea20@178 bee1aa47-a06f-436c-a2f2-6a1efea3c100
| src/main/java/com/areen/jlib/gui/WideComboBox.java | This commit hopefully fixes the resizing problems. Related issue(s): APC-613 | |
Java | bsd-3-clause | abad5ad4b9bafeb0616f28a3dad49da7162678fc | 0 | jthrun/sdl_android,anildahiya/sdl_android,jthrun/sdl_android,smartdevicelink/sdl_android | package com.smartdevicelink;
import android.content.Context;
import android.net.Uri;
import android.support.test.InstrumentationRegistry;
import junit.framework.TestCase;
public class AndroidTestCase2 extends TestCase {
public Context mContext;
public AndroidTestCase2(){
mContext = Instrumentation... | sdl_android/src/androidTest/java/com/smartdevicelink/AndroidTestCase2.java | package com.smartdevicelink;
import android.content.Context;
import android.net.Uri;
import android.support.test.InstrumentationRegistry;
import junit.framework.TestCase;
public class AndroidTestCase2 extends TestCase {
public Context mContext;
public AndroidTestCase2(){
mContext = Instrumentation... | Remove unnecessary call to setUp in AndroidTestCase2 constructor
| sdl_android/src/androidTest/java/com/smartdevicelink/AndroidTestCase2.java | Remove unnecessary call to setUp in AndroidTestCase2 constructor | |
Java | isc | 09a3bb8e46da52b7e5917c73b001b1d11d977ad7 | 0 | simmel/SecurerString,simmel/SecurerString | import org.junit.After;
import java.lang.management.*;
import java.io.*;
public class SearchInHeap {
@After public void searchInHeap() throws IOException, InterruptedException {
String pid = ManagementFactory.getRuntimeMXBean().getName().replaceAll("@.*", "");
System.out.println(pid);
String tmp = Syste... | src/test/java/SearchInHeap.java | import org.junit.After;
import java.lang.management.*;
public class SearchInHeap {
@After public void searchInHeap() {
String pid = ManagementFactory.getRuntimeMXBean().getName().replaceAll("@.*", "");
System.out.println(pid);
String tmp = System.getProperty("temporaryDir");
String hprof = tmp + "/"... | Dump the heap with jmap
| src/test/java/SearchInHeap.java | Dump the heap with jmap | |
Java | mit | c6432c9922157c9c48397aa06ffae3ffde31c9bd | 0 | Coryoka/Visziektes,Coryoka/Visziektes | package Main;
import Domain.Gebruiker;
import datasource.AquariumDAO;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.fxml.Initializable;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.Button;
i... | src/main/java/Main/AquariumToevoegenController.java | package Main;
import Domain.Gebruiker;
import datasource.AquariumDAO;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.fxml.Initializable;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.Button;
i... | Nieuw aquarium toevoegen
| src/main/java/Main/AquariumToevoegenController.java | Nieuw aquarium toevoegen | |
Java | mit | 4906e9102bac087d262ad3a3d11cbe2dcb18882d | 0 | pearlqueen/java-simple-mvc | /**
* Copyright (c) 2010 Daniel Murphy
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publ... | src/main/java/com/dmurph/mvc/util/MVCArrayList.java | /**
* Copyright (c) 2010 Daniel Murphy
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publ... | updated MVCArrayList to send size changed and element changed properties | src/main/java/com/dmurph/mvc/util/MVCArrayList.java | updated MVCArrayList to send size changed and element changed properties | |
Java | mit | 0a130a395ce65ef6cba53ccdbd68485446379018 | 0 | mopsalarm/Pr0,mopsalarm/Pr0,mopsalarm/Pr0 | package com.pr0gramm.app.api.pr0gramm;
import android.content.SharedPreferences;
import com.google.common.base.Charsets;
import com.google.common.base.Optional;
import com.google.common.base.Strings;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.pr0gramm.app.BuildConfig;
i... | app/src/main/java/com/pr0gramm/app/api/pr0gramm/LoginCookieHandler.java | package com.pr0gramm.app.api.pr0gramm;
import android.content.SharedPreferences;
import com.google.common.base.Charsets;
import com.google.common.base.Optional;
import com.google.common.base.Strings;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.pr0gramm.app.BuildConfig;
i... | Cleanup
| app/src/main/java/com/pr0gramm/app/api/pr0gramm/LoginCookieHandler.java | Cleanup | |
Java | mit | 017c9d1341dbcd468a45e82065a2895601e51825 | 0 | jaydeepw/audio-wife,lanxiaoha/audio-wife,antoniotari/audio-wife,HKMOpen/audio-wife,deshion/audio-wife | /***
* The MIT License (MIT)
* Copyright (c) 2014 Jaydeep
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, ... | LibAudioWife/src/nl/changer/audiowife/AudioWife.java | /***
* The MIT License (MIT)
* Copyright (c) 2014 Jaydeep
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, ... | add SeekBar setter method to the singleton
| LibAudioWife/src/nl/changer/audiowife/AudioWife.java | add SeekBar setter method to the singleton | |
Java | mit | 65222e1ed0242cecb6346ea84a6e5090e6010175 | 0 | DDoS/Bomberman | package ecse321.fall2014.group3.bomberman.physics;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import com.flowpowered.math.vector.Vector2f;
import ecse321.fall2014.group3.bomberman.Direction;
import ecse321.fall2014.group3.bomberman... | src/main/java/ecse321/fall2014/group3/bomberman/physics/Physics.java | package ecse321.fall2014.group3.bomberman.physics;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import com.flowpowered.math.vector.Vector2f;
import ecse321.fall2014.group3.bomberman.Direction;
import ecse321.fall2014.group3.bomberman... | Add level number to in game level
| src/main/java/ecse321/fall2014/group3/bomberman/physics/Physics.java | Add level number to in game level | |
Java | mit | b9714f1097739f388b95dc197aa982388daf948a | 0 | SquidDev-CC/CC-Tweaks,SquidDev-CC/CCTweaks | package org.squiddev.cctweaks.core.network;
import mcmultipart.multipart.IMultipart;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.BlockPos;
import net.minecraft.util.EnumFacing;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import net.minecraftforge.fml.common.Opti... | src/main/java/org/squiddev/cctweaks/core/network/NetworkHelpers.java | package org.squiddev.cctweaks.core.network;
import mcmultipart.multipart.IMultipart;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.BlockPos;
import net.minecraft.util.EnumFacing;
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import net.minecraftforge.fml.common.Opti... | Fix nodes not binding when being placed
This is so embarrassing
| src/main/java/org/squiddev/cctweaks/core/network/NetworkHelpers.java | Fix nodes not binding when being placed | |
Java | lgpl-2.1 | 4a3c844c3734021917cfe3b35222599ad013e731 | 0 | vaibhav345/lenskit,amaliujia/lenskit,kluver/lenskit,linjunleo/lenskit,vijayvani/Lenskit,tajinder-txstate/lenskit,blankazucenalg/lenskit,kluver/lenskit,kluver/lenskit,chrysalag/lenskit,martinlaz/lenskit,tajinder-txstate/lenskit,vaibhav345/lenskit,chrysalag/lenskit,martinlaz/lenskit,tajinder-txstate/lenskit,aglne/lenskit... | /*
* LensKit, an open source recommender systems toolkit.
* Copyright 2010-2013 Regents of the University of Minnesota and contributors
* Work on LensKit has been funded by the National Science Foundation under
* grants IIS 05-34939, 08-08692, 08-12148, and 10-17697.
*
* This program is free software; you can red... | lenskit-knn/src/main/java/org/grouplens/lenskit/knn/item/ItemItemScorer.java | /*
* LensKit, an open source recommender systems toolkit.
* Copyright 2010-2013 Regents of the University of Minnesota and contributors
* Work on LensKit has been funded by the National Science Foundation under
* grants IIS 05-34939, 08-08692, 08-12148, and 10-17697.
*
* This program is free software; you can red... | Remove baseline from item-item scorer (refs #311)
| lenskit-knn/src/main/java/org/grouplens/lenskit/knn/item/ItemItemScorer.java | Remove baseline from item-item scorer (refs #311) | |
Java | lgpl-2.1 | dcfb75ab05136ece99f653a34fdc14d562d1adcf | 0 | kihira/PlayerRugs | package uk.kihira.playerrugs.client;
import com.mojang.authlib.GameProfile;
import net.minecraft.client.entity.AbstractClientPlayer;
import net.minecraft.client.renderer.OpenGlHelper;
import net.minecraft.client.renderer.RenderHelper;
import net.minecraft.client.renderer.Tessellator;
import net.minecraft.client.render... | src/main/java/uk/kihira/playerrugs/client/PlayerRugTESR.java | package uk.kihira.playerrugs.client;
import com.mojang.authlib.GameProfile;
import net.minecraft.client.entity.AbstractClientPlayer;
import net.minecraft.client.renderer.OpenGlHelper;
import net.minecraft.client.renderer.RenderHelper;
import net.minecraft.client.renderer.Tessellator;
import net.minecraft.client.render... | Fix right arm standing texture
| src/main/java/uk/kihira/playerrugs/client/PlayerRugTESR.java | Fix right arm standing texture | |
Java | apache-2.0 | a9e9f9bbc1a40aff74293c7327d8208d13adca63 | 0 | mpi2/PhenotypeData,mpi2/PhenotypeData,mpi2/PhenotypeData,mpi2/PhenotypeData,mpi2/PhenotypeData,mpi2/PhenotypeData | package org.mousephenotype.cda.neo4jLoad.graph;
import org.apache.solr.client.solrj.SolrClient;
import org.apache.solr.client.solrj.impl.ConcurrentUpdateSolrClient;
import org.apache.solr.client.solrj.impl.HttpSolrClient;
import org.neo4j.ogm.session.SessionFactory;
import org.springframework.beans.factory.annotation.... | neo4j-load/src/main/java/org/mousephenotype/cda/neo4jLoad/graph/Neo4jConfig.java | package org.mousephenotype.cda.neo4jLoad.graph;
import org.apache.solr.client.solrj.SolrClient;
import org.apache.solr.client.solrj.impl.ConcurrentUpdateSolrClient;
import org.apache.solr.client.solrj.impl.HttpSolrClient;
import org.neo4j.ogm.session.SessionFactory;
import org.springframework.beans.factory.annotation.... | fixed neo4j loader path
| neo4j-load/src/main/java/org/mousephenotype/cda/neo4jLoad/graph/Neo4jConfig.java | fixed neo4j loader path | |
Java | apache-2.0 | e465180ebe39fd59994186d2499b3a59652c4441 | 0 | privacyidea/privacyidea-authenticator | /*
privacyIDEA Authenticator
Authors: Nils Behlen <nils.behlen@netknights.it>
Copyright (c) 2017-2019 NetKnights GmbH
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.apac... | app/src/androidTest/java/it/netknights/piauthenticator/DetailAndMenuTest.java | /*
privacyIDEA Authenticator
Authors: Nils Behlen <nils.behlen@netknights.it>
Copyright (c) 2017-2019 NetKnights GmbH
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.apac... | fixed another line in test
| app/src/androidTest/java/it/netknights/piauthenticator/DetailAndMenuTest.java | fixed another line in test | |
Java | apache-2.0 | 4649c1517b7ca5406218d9e145f601346e3e5d24 | 0 | codetojoy/easter_eggs_for_git,codetojoy/easter_eggs_for_git |
// TODO: add copyright notice
package net.codetojoy.example;
public class User {
private String name;
private int age;
public User(String name, int age) {
this.name = name;
this.age = age;
}
public String getName() { return name; }
public int getAge() { return age; }
}
| egg_basic_2_commits_no_conflict/src/main/java/net/codetojoy/example/User.java |
package net.codetojoy.example;
public class User {
private String name;
private int age;
public User(String name, int age) {
this.name = name;
this.age = age;
}
public String getName() { return name; }
public int getAge() { return age; }
}
| incremental change as part of a larger frenzy of activity
| egg_basic_2_commits_no_conflict/src/main/java/net/codetojoy/example/User.java | incremental change as part of a larger frenzy of activity | |
Java | apache-2.0 | 9f306339217d77d09c1089345514359577d066f5 | 0 | yangdd1205/spring-boot,eddumelendez/spring-boot,herau/spring-boot,htynkn/spring-boot,habuma/spring-boot,i007422/jenkins2-course-spring-boot,nebhale/spring-boot,philwebb/spring-boot,herau/spring-boot,drumonii/spring-boot,i007422/jenkins2-course-spring-boot,xiaoleiPENG/my-project,yhj630520/spring-boot,mdeinum/spring-boot... | /*
* Copyright 2012-2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ap... | spring-boot/src/test/java/org/springframework/boot/BeanDefinitionLoaderTests.java | /*
* Copyright 2012-2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by ap... | Use AssertJ in merged 1.3.x tests
| spring-boot/src/test/java/org/springframework/boot/BeanDefinitionLoaderTests.java | Use AssertJ in merged 1.3.x tests | |
Java | apache-2.0 | fc4720c10674ecadd8e506aa85d3d17949aa6d24 | 0 | droolsjbpm/optaplanner,droolsjbpm/optaplanner,droolsjbpm/optaplanner,tkobayas/optaplanner,tkobayas/optaplanner,baldimir/optaplanner,baldimir/optaplanner,droolsjbpm/optaplanner,tkobayas/optaplanner,baldimir/optaplanner,tkobayas/optaplanner,baldimir/optaplanner | /*
* Copyright 2019 Red Hat, Inc. and/or its affiliates.
*
* 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 ap... | optaplanner-core/src/main/java/org/optaplanner/core/api/solver/SolverJob.java | /*
* Copyright 2019 Red Hat, Inc. and/or its affiliates.
*
* 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 ap... | Update optaplanner-core/src/main/java/org/optaplanner/core/api/solver/SolverJob.java
Co-Authored-By: Lukáš Petrovický <65adda4326914576405c9e3a62f4904d96573863@petrovicky.net> | optaplanner-core/src/main/java/org/optaplanner/core/api/solver/SolverJob.java | Update optaplanner-core/src/main/java/org/optaplanner/core/api/solver/SolverJob.java | |
Java | apache-2.0 | 3d861ff7987716b3e3b1c1535f32bf27ab7a0770 | 0 | linqs/psl,linqs/psl,linqs/psl | /*
* This file is part of the PSL software.
* Copyright 2011-2015 University of Maryland
* Copyright 2013-2018 The Regents of the University of California
*
* 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... | psl-core/src/main/java/org/linqs/psl/database/rdbms/SelectivityHistogram.java | /*
* This file is part of the PSL software.
* Copyright 2011-2015 University of Maryland
* Copyright 2013-2018 The Regents of the University of California
*
* 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... | Fixed an off by one with bucket joins.
| psl-core/src/main/java/org/linqs/psl/database/rdbms/SelectivityHistogram.java | Fixed an off by one with bucket joins. | |
Java | apache-2.0 | be3118334fc2509023a31ce21ef826651e5cd955 | 0 | 11xor6/presto,hgschmie/presto,11xor6/presto,erichwang/presto,dain/presto,Praveen2112/presto,hgschmie/presto,treasure-data/presto,11xor6/presto,ebyhr/presto,martint/presto,Praveen2112/presto,treasure-data/presto,martint/presto,losipiuk/presto,erichwang/presto,smartnews/presto,smartnews/presto,martint/presto,losipiuk/pre... | /*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distribut... | presto-main/src/test/java/io/prestosql/execution/executor/SimulationSplit.java | /*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distribut... | Remove usage of deprecated immedateCheckedFuture
| presto-main/src/test/java/io/prestosql/execution/executor/SimulationSplit.java | Remove usage of deprecated immedateCheckedFuture | |
Java | apache-2.0 | 7385118528f155315e5bfcdf806a8780a6237599 | 0 | GabrielBrascher/cloudstack,mufaddalq/cloudstack-datera-driver,resmo/cloudstack,DaanHoogland/cloudstack,GabrielBrascher/cloudstack,GabrielBrascher/cloudstack,resmo/cloudstack,jcshen007/cloudstack,cinderella/incubator-cloudstack,GabrielBrascher/cloudstack,mufaddalq/cloudstack-datera-driver,cinderella/incubator-cloudstack... | /**
* Copyright (C) 2010 Cloud.com, Inc. All rights reserved.
*
* This software is licensed under the GNU General Public License v3 or later.
*
* It is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, e... | server/src/com/cloud/api/ApiResponseHelper.java | /**
* Copyright (C) 2010 Cloud.com, Inc. All rights reserved.
*
* This software is licensed under the GNU General Public License v3 or later.
*
* It is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, e... | Fixed the build due to including some wrong class.
| server/src/com/cloud/api/ApiResponseHelper.java | Fixed the build due to including some wrong class. | |
Java | apache-2.0 | f62d78d1cd45629d9ad9ea661add5303cdc93230 | 0 | itfsw/mybatis-generator-plugin | /*
* Copyright (c) 2017.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writ... | src/main/java/com/itfsw/mybatis/generator/plugins/SelectiveEnhancedPlugin.java | /*
* Copyright (c) 2017.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writ... | bugfix: Selective增强插件在对于 #{xxx,jdbcType=INTEGER},这种节点处理时之前采用正则取column名称是错误的,这里取得的其实是model的属性名称
| src/main/java/com/itfsw/mybatis/generator/plugins/SelectiveEnhancedPlugin.java | bugfix: Selective增强插件在对于 #{xxx,jdbcType=INTEGER},这种节点处理时之前采用正则取column名称是错误的,这里取得的其实是model的属性名称 | |
Java | apache-2.0 | 5339aea7393a107a88022175255e79b4a965ec44 | 0 | DT9/osmdroid,osmdroid/osmdroid,ak-67/osmdroid,ak-67/osmdroid,DT9/osmdroid,sibext/osmdroid-1,Sarfarazsajjad/osmdroid,fpoyer/osmdroid,1nv4d3r5/osmdroid,osmdroid/osmdroid,prembasumatary/osmdroid,fpoyer/osmdroid,osmdroid/osmdroid,sibext/osmdroid-1,dozd/osmdroid,microg/android_external_osmdroid,osmdroid/osmdroid,Sarfarazsaj... | // Created by plusminus on 21:46:41 - 25.09.2008
package org.andnav.osm.tileprovider;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import org.andnav.osm.views.util.OpenStreetMapRendererInfo;
import org.slf... | osmdroid-android/src/org/andnav/osm/tileprovider/OpenStreetMapTileFilesystemProvider.java | // Created by plusminus on 21:46:41 - 25.09.2008
package org.andnav.osm.tileprovider;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
import org.andnav.osm.views.util.OpenStreetMapRendererInfo;
import org.slf... | check for asynchronous directory creation
| osmdroid-android/src/org/andnav/osm/tileprovider/OpenStreetMapTileFilesystemProvider.java | check for asynchronous directory creation | |
Java | apache-2.0 | 6a4e930b00b9455d4001c883b4f6794004c6380c | 0 | Appstrakt/ListViewAnimations | /*
* Copyright (C) 2013 The Android Open Source Project
* Copyright 2013 Niek Haarman
*
* 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... | library/src/com/nhaarman/listviewanimations/widget/DynamicListView.java | /*
* Copyright (C) 2013 The Android Open Source Project
* Copyright 2013 Niek Haarman
*
* 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... | Fixed crash when the listview has footerViews
| library/src/com/nhaarman/listviewanimations/widget/DynamicListView.java | Fixed crash when the listview has footerViews | |
Java | apache-2.0 | a8d8d9467937a26a7e11543eef1ee2c4acad70c5 | 0 | nordfalk/AndroidElementer,nordfalk/AndroidElementer,nordfalk/AndroidElementer | package lekt04_lister2;
import android.app.Activity;
import android.content.res.Resources;
import android.graphics.drawable.Drawable;
import android.os.AsyncTask;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.wi... | src/lekt04_lister2/VisAlleAndroidDrawables.java | package lekt04_lister2;
import android.app.Activity;
import android.content.res.Resources;
import android.graphics.drawable.Drawable;
import android.os.AsyncTask;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.ViewGroup;
import android.wi... | Småting
| src/lekt04_lister2/VisAlleAndroidDrawables.java | Småting | |
Java | apache-2.0 | afd7d1c64f6b1675ad27a599cf205f105dfb77da | 0 | apache/commons-validator,floscher/commons-validator,floscher/commons-validator,mohanaraosv/commons-validator,floscher/commons-validator,apache/commons-validator,apache/commons-validator,mohanaraosv/commons-validator,mohanaraosv/commons-validator | /*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//validator/src/share/org/apache/commons/validator/Arg.java,v 1.5 2003/03/16 00:23:15 dgraham Exp $
* $Revision: 1.5 $
* $Date: 2003/03/16 00:23:15 $
*
* ====================================================================
*
... | src/share/org/apache/commons/validator/Arg.java | /*
* $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//validator/src/share/org/apache/commons/validator/Arg.java,v 1.4 2002/03/30 04:33:17 dwinterfeldt Exp $
* $Revision: 1.4 $
* $Date: 2002/03/30 04:33:17 $
*
* ====================================================================... | javadoc changes only.
git-svn-id: c96248f4ce6931c9674b921fd55ab67490fa1adf@139909 13f79535-47bb-0310-9956-ffa450edef68
| src/share/org/apache/commons/validator/Arg.java | javadoc changes only. | |
Java | apache-2.0 | be3543c78dc490bd1da801cdb43f832e26ae3a03 | 0 | cketti/k-9,k9mail/k-9,G00fY2/k-9_material_design,vatsalsura/k-9,dgger/k-9,jca02266/k-9,jberkel/k-9,ndew623/k-9,jca02266/k-9,philipwhiuk/q-mail,philipwhiuk/k-9,jberkel/k-9,cketti/k-9,k9mail/k-9,jca02266/k-9,ndew623/k-9,ndew623/k-9,indus1/k-9,GuillaumeSmaha/k-9,dgger/k-9,cketti/k-9,sedrubal/k-9,CodingRmy/k-9,vatsalsura/k... | package com.fsck.k9.provider;
import java.io.File;
import java.io.IOException;
import java.util.Date;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.net.Uri;
import android.support.annotation.MainThread;
imp... | k9mail/src/main/java/com/fsck/k9/provider/DecryptedFileProvider.java | package com.fsck.k9.provider;
import java.io.File;
import java.io.IOException;
import java.util.Date;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.net.Uri;
import android.support.annotation.MainThread;
imp... | also clean up decrypted temp files on low memory
| k9mail/src/main/java/com/fsck/k9/provider/DecryptedFileProvider.java | also clean up decrypted temp files on low memory | |
Java | apache-2.0 | 5eec9ac58cb4f2fe2518ef21b07845c7cf4c7b99 | 0 | shelsonjava/netty,chinayin/netty,shenguoquan/netty,louxiu/netty,windie/netty,AnselQiao/netty,jchambers/netty,KatsuraKKKK/netty,youprofit/netty,ngocdaothanh/netty,Techcable/netty,CodingFabian/netty,slandelle/netty,seetharamireddy540/netty,silvaran/netty,KeyNexus/netty,mcanthony/netty,johnou/netty,chinayin/netty,Kalvar/n... | /*
* JBoss, Home of Professional Open Source
*
* Copyright 2008, Red Hat Middleware LLC, and individual contributors
* by the @author tags. See the COPYRIGHT.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the t... | src/main/java/org/jboss/netty/channel/LifeCycleAwareChannelHandler.java | /*
* JBoss, Home of Professional Open Source
*
* Copyright 2008, Red Hat Middleware LLC, and individual contributors
* by the @author tags. See the COPYRIGHT.txt in the distribution for a
* full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the t... | Fixed a silly mistake - LifeCycleAwareChannelHandler should implement ChannelHandler instead of ChannelHandlerContext
| src/main/java/org/jboss/netty/channel/LifeCycleAwareChannelHandler.java | Fixed a silly mistake - LifeCycleAwareChannelHandler should implement ChannelHandler instead of ChannelHandlerContext | |
Java | apache-2.0 | d4ff992d81dac485aa55736ac16b6a1e03d7965c | 0 | mreutegg/jackrabbit-oak,anchela/jackrabbit-oak,trekawek/jackrabbit-oak,amit-jain/jackrabbit-oak,mreutegg/jackrabbit-oak,mreutegg/jackrabbit-oak,trekawek/jackrabbit-oak,anchela/jackrabbit-oak,anchela/jackrabbit-oak,apache/jackrabbit-oak,amit-jain/jackrabbit-oak,apache/jackrabbit-oak,apache/jackrabbit-oak,trekawek/jackra... | /*
* 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 ... | oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/file/FileStoreBuilder.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 ... | OAK-4277: Finalise de-duplication caches
Javadoc
git-svn-id: 67138be12999c61558c3dd34328380c8e4523e73@1747162 13f79535-47bb-0310-9956-ffa450edef68
| oak-segment-tar/src/main/java/org/apache/jackrabbit/oak/segment/file/FileStoreBuilder.java | OAK-4277: Finalise de-duplication caches Javadoc | |
Java | apache-2.0 | a4cf78a6207e5782d6a9b90f14a52955aca2c208 | 0 | irudyak/ignite,nizhikov/ignite,leveyj/ignite,DoudTechData/ignite,shroman/ignite,f7753/ignite,mcherkasov/ignite,VladimirErshov/ignite,dream-x/ignite,endian675/ignite,samaitra/ignite,sk0x50/ignite,samaitra/ignite,agura/incubator-ignite,nizhikov/ignite,pperalta/ignite,a1vanov/ignite,dream-x/ignite,ascherbakoff/ignite,andr... | /*
* 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 ... | modules/core/src/main/java/org/apache/ignite/internal/jdbc/JdbcConnection.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 ... | JDBC driver authentication fixed
| modules/core/src/main/java/org/apache/ignite/internal/jdbc/JdbcConnection.java | JDBC driver authentication fixed |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.