- Sort Score
- Num 10 results
- Language All
Results 961 - 970 of 3,556 for rreturn (0.47 seconds)
-
okhttp/src/jvmTest/kotlin/okhttp3/RecordingCallback.kt
while (true) { val i = responses.iterator() while (i.hasNext()) { val recordedResponse = i.next() if (recordedResponse.request.url.equals(url)) { i.remove() return recordedResponse } } val nowMillis = TimeUnit.NANOSECONDS.toMillis(System.nanoTime()) if (nowMillis >= timeoutMillis) break (this as Object).wait(timeoutMillis - nowMillis) }
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Fri Dec 27 13:39:56 GMT 2024 - 2.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
private CrawlingInfo storedInfo; private List<CrawlingInfoParam> storedParams; @Override public CrawlingInfo getLast(String sessionId) { return null; // Return null to simulate create scenario } @Override public void store(CrawlingInfo entity) { storedInfo = entity;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 12 01:46:45 GMT 2026 - 28.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
return WEBAPP; } if (name.startsWith(THUMBNAIL.getId())) { return THUMBNAIL; } if (name.startsWith(CRAWLER.getId())) { return CRAWLER; } if (name.startsWith(LLM.getId())) { return LLM; } return UNKNOWN; } }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Mar 04 15:19:41 GMT 2026 - 25.1K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/reflect/ClassPathTest.java
return classInfo(cls, cls.getClassLoader()); } private static ClassInfo classInfo(Class<?> cls, ClassLoader classLoader) { String resource = cls.getName().replace('.', '/') + ".class"; return new ClassInfo(FILE, resource, classLoader); } private static Manifest manifestClasspath(String classpath) throws IOException { return manifest("Class-Path: " + classpath + "\n"); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 23.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/auth/chain/LdapChainTest.java
user.setName(username); user.setPassword(password); user.setRoles(new String[] { "role1", "role2" }); user.setGroups(new String[] { "group1", "group2" }); return user; } // Test LdapManager implementation private static class TestLdapManager extends LdapManager { boolean insertCalled = false; boolean deleteCalled = false;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.5K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionCreationTester.java
*/ @J2ktIncompatible @GwtIncompatible // reflection public static Method getCreateWithNullUnsupportedMethod() { return getMethod(CollectionCreationTester.class, "testCreateWithNull_unsupported"); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 3K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/testers/SetHashCodeTester.java
} /** * Returns the {@link Method} instances for the test methods in this class which call {@code * hashCode()} on the set values so that set tests on unhashable objects can suppress it with * {@code FeatureSpecificTestSuiteBuilder.suppressing()}. */ @J2ktIncompatible @GwtIncompatible // reflection public static Method[] getHashCodeMethods() { return new Method[] {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Aug 11 19:31:30 GMT 2025 - 3.1K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/TreeMultiset.java
if (cmp < 0) { return aggregateBelowRange(aggr, node.left); } else if (cmp == 0) { switch (range.getLowerBoundType()) { case OPEN: return aggr.nodeAggregate(node) + aggr.treeAggregate(node.left); case CLOSED: return aggr.treeAggregate(node.left); } throw new AssertionError(); } else { return aggr.treeAggregate(node.left)
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 13:11:08 GMT 2026 - 34K bytes - Click Count (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/TestValueFactory.kt
taskRunner = taskRunner, connectionPool = pool, route = route, socket = Socket(), idleAtNs = idleAtNanos, ) result.withLock { pool.put(result) } return result } fun newConnectionPool( taskRunner: TaskRunner = this.taskRunner, maxIdleConnections: Int = Int.MAX_VALUE, ): RealConnectionPool = RealConnectionPool( taskRunner = taskRunner,Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Jan 11 12:06:21 GMT 2026 - 6.6K bytes - Click Count (0) -
guava-tests/test/com/google/common/reflect/ClassPathTest.java
return classInfo(cls, cls.getClassLoader()); } private static ClassInfo classInfo(Class<?> cls, ClassLoader classLoader) { String resource = cls.getName().replace('.', '/') + ".class"; return new ClassInfo(FILE, resource, classLoader); } private static Manifest manifestClasspath(String classpath) throws IOException { return manifest("Class-Path: " + classpath + "\n"); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 25.8K bytes - Click Count (0)