- Sort Score
- Result 10 results
- Languages All
Results 661 - 670 of 2,870 for getI (0.02 sec)
-
src/main/java/jcifs/internal/smb2/persistent/PersistentHandleManager.java
/** * Get handle information by path * @param path the file path * @return the handle info or null if not found */ public HandleInfo getHandleByPath(String path) { lock.readLock().lock(); try { return handles.get(path); } finally { lock.readLock().unlock(); } } /** * Get the number of active handlesRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 13K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/AtomicLongMapBasherTest.java
})); } threadPool.shutdown(); assertTrue(threadPool.awaitTermination(300, SECONDS)); long sum = 0; for (Future<Long> f : futures) { sum += f.get(); } assertEquals(sum, map.get(key)); }Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/FessCrawlerThread.java
* * @param url the URL to get a client for * @return the crawler client instance to use for the URL */ @Override protected CrawlerClient getClient(final String url) { final CrawlingConfigHelper crawlingConfigHelper = ComponentUtil.getCrawlingConfigHelper(); final CrawlingConfig crawlingConfig = crawlingConfigHelper.get(crawlerContext.getSessionId());Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 19.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PythonJobTest.java
assertEquals(5, pythonJob.argList.size()); assertEquals("single1", pythonJob.argList.get(0)); assertEquals("multi1", pythonJob.argList.get(1)); assertEquals("multi2", pythonJob.argList.get(2)); assertEquals("single2", pythonJob.argList.get(3)); assertEquals("multi3", pythonJob.argList.get(4)); } // Test getPyFilePath method public void test_getPyFilePath() {Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 22.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/filter/WebApiFilterTest.java
public WebApiManager get(HttpServletRequest req) { assertSame(request, req); return null; } }; ComponentUtil.register(factory, "webApiManagerFactory"); // Execute webApiFilter.doFilter(request, response, chain); // Verify chain was called assertTrue(chainCalled.get()); }Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.2K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/Uninterruptibles.java
while (true) { try { return future.get(); } catch (InterruptedException e) { interrupted = true; } } } finally { if (interrupted) { Thread.currentThread().interrupt(); } } } /** * Invokes {@code future.}{@link Future#get(long, TimeUnit) get(timeout, unit)} uninterruptibly. * * <p>Similar methods:
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 19.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/VersionedSettingsBranch.kt
} } val isMainBranch: Boolean get() = isMaster || isRelease val isMaster: Boolean get() = branchName == MASTER_BRANCH val isRelease: Boolean get() = branchName == RELEASE_BRANCH val isLegacyRelease: Boolean get() = OLD_RELEASE_PATTERN.matchEntire(branchName) != null val isExperimental: Boolean get() = branchName == EXPERIMENTAL_BRANCHRegistered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Tue Jun 17 09:57:45 UTC 2025 - 3.8K bytes - Viewed (0) -
okhttp/src/androidMain/kotlin/okhttp3/internal/platform/PlatformRegistry.kt
throw IllegalStateException("Expected Android API level 21+ but was ${Build.VERSION.SDK_INT}") } actual val isAndroid: Boolean get() = true var applicationContext: Context? get() = (Platform.get() as? ContextAwarePlatform)?.applicationContext set(value) { (Platform.get() as? ContextAwarePlatform)?.applicationContext = value }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 07:33:49 UTC 2025 - 1.6K bytes - Viewed (0) -
okhttp-sse/src/test/java/okhttp3/sse/internal/EventSourceRecorder.kt
override fun onOpen( eventSource: EventSource, response: Response, ) { get().log("[ES] onOpen", Platform.INFO, null) events.add(Open(eventSource, response)) drainCancelQueue(eventSource) } override fun onEvent( eventSource: EventSource, id: String?, type: String?, data: String, ) { get().log("[ES] onEvent", Platform.INFO, null) events.add(Event(id, type, data))
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 11:32:52 UTC 2025 - 3.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/builder/RequestDataBuilder.java
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 4.3K bytes - Viewed (0)