- Sort Score
- Num 10 results
- Language All
Results 3641 - 3650 of 6,205 for new1 (0.07 seconds)
-
build-tools-internal/src/main/groovy/elasticsearch.build-scan.gradle
} else { tag 'LOCAL' } } } subprojects { project.getPlugins().withType(TestRerunPlugin) { tasks.withType(Test).configureEach(new Action<Test>() { @Override void execute(Test test) { test.doLast(new Action<Test>() { @Override void execute(Test t) { if(t.rerun.didRerun.get() == true) { buildScan.tag 'unexpected-test-jvm-exit'Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Jul 21 20:40:34 GMT 2021 - 4.6K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java
final String[] format(String moduleName, Iterable<? extends Path> paths) { if (option == null) { throw new IllegalStateException("No option is associated to this path type."); } String prefix = (moduleName == null) ? "" : (moduleName + '='); StringJoiner joiner = new StringJoiner(File.pathSeparator, prefix, ""); joiner.setEmptyValue(""); for (Path p : paths) {
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Dec 15 11:13:42 GMT 2025 - 15.7K bytes - Click Count (1) -
guava/src/com/google/common/base/Converter.java
* be reached. */ @Override protected A doForward(B b) { throw new AssertionError(); } @Override protected B doBackward(A a) { throw new AssertionError(); } @Override @Nullable A correctedDoForward(@Nullable B b) { return original.correctedDoBackward(b); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Jun 18 21:43:06 GMT 2025 - 22.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/SystemUtilTest.java
System.setProperty(Constants.FESS_SEARCH_ENGINE_HTTP_ADDRESS, "thread-test"); final String[] results = new String[10]; Thread[] threads = new Thread[10]; for (int i = 0; i < 10; i++) { final int index = i; threads[i] = new Thread(() -> { results[index] = SystemUtil.getSearchEngineHttpAddress(); }); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 17.1K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/TestCollidingSetGenerator.java
@GwtCompatible @NullMarked public abstract class TestCollidingSetGenerator implements TestSetGenerator<Object> { @Override public SampleElements<Object> samples() { return new Colliders(); } @Override public Object[] createArray(int length) { return new Object[length]; } /** Returns the original element list, unchanged. */ @Override public List<Object> order(List<Object> insertionOrder) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Dec 21 14:50:24 GMT 2024 - 1.4K bytes - Click Count (0) -
guava-tests/test/com/google/common/io/TestCharSource.java
this.byteSource = new TestByteSource(content.getBytes(UTF_8), options); } @Override public boolean wasStreamOpened() { return byteSource.wasStreamOpened(); } @Override public boolean wasStreamClosed() { return byteSource.wasStreamClosed(); } @Override public Reader openStream() throws IOException { return new InputStreamReader(byteSource.openStream(), UTF_8);
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 1.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/BuildThreadFactory.java
*/ public class BuildThreadFactory implements ThreadFactory { private final AtomicInteger id = new AtomicInteger(); private static final String PREFIX = "BuilderThread"; @Override public Thread newThread(Runnable r) { return new Thread(r, String.format("%s-%d", PREFIX, id.getAndIncrement())); }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 1.4K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/io/CharSinkTester.java
} return suite; } static TestSuite suiteForString( String name, CharSinkFactory factory, String string, String desc) { TestSuite stringSuite = new TestSuite(name + " [" + desc + "]"); for (Method method : testMethods) { stringSuite.addTest(new CharSinkTester(factory, string, name, desc, method)); } return stringSuite; } private final ImmutableList<String> lines;Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 4.5K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/testers/MapReplaceAllTester.java
@SuppressWarnings("JUnit4ClassUsedInJUnit3") public class MapReplaceAllTester<K, V> extends AbstractMapTester<K, V> { private SampleElements<K> keys() { return new SampleElements<>(k0(), k1(), k2(), k3(), k4()); } private SampleElements<V> values() { return new SampleElements<>(v0(), v1(), v2(), v3(), v4()); } @MapFeature.Require(SUPPORTS_PUT) public void testReplaceAllRotate() { getMap() .replaceAll(Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Nov 14 23:40:07 GMT 2024 - 4.4K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/Trans2QueryFSInformationResponse.java
default -> 0; }; } int readSmbInfoAllocationWireFormat(final byte[] buffer, int bufferIndex) { final int start = bufferIndex; final SmbInfoAllocation info = new SmbInfoAllocation(); bufferIndex += 4; // skip idFileSystem info.sectPerAlloc = readInt4(buffer, bufferIndex); bufferIndex += 4; info.alloc = readInt4(buffer, bufferIndex);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 5.1K bytes - Click Count (0)