- Sort Score
- Result 10 results
- Languages All
Results 351 - 360 of 2,494 for wget (0.01 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/MonotonicClock.java
*/ public static MonotonicClock get() { return CLOCK; } /** * Returns the current instant from the monotonic clock. * This is a convenience method equivalent to {@code get().instant()}. * * @return the current instant using monotonic timing */ public static Instant now() { return get().instant(); } /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 15 06:28:29 UTC 2025 - 5.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) -
src/test/java/org/codelibs/fess/cors/CorsHandlerTest.java
assertNotNull("Allow-Methods header should be set", responseHeaders.get("Access-Control-Allow-Methods")); assertNotNull("Allow-Headers header should be set", responseHeaders.get("Access-Control-Allow-Headers")); assertNotNull("Max-Age header should be set", responseHeaders.get("Access-Control-Max-Age"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 25.9K 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) -
docs/resiliency/resiliency-verify-failure-script.sh
OUT=$(./mc cp --quiet --recursive "${ALIAS_NAME}"/"${BUCKET}"/initial-data/ "${DEST_DIR}"/) RET=${?} if [ ${RET} -ne 0 ]; then # It is a success scenario as get objects should fail echo "GET objects failed as expected" echo "script passed" >resiliency-verify-failure.log exit 0 else echo "GET objects expected to fail, but succeeded: ${OUT}"
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Dec 21 04:24:45 UTC 2024 - 509 bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessActionAdjustmentProviderTest.java
provider.adjustActionResponseHeaders("application/xml", (k, v) -> headerMap.put(k, v)); assertEquals(2, headerMap.size()); assertEquals("def", headerMap.get("X-Def")); assertEquals("def2", headerMap.get("X-Def2")); } public void test_write_defaultAndSpecificHtml() throws Exception {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue May 06 09:19:22 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/labeltype/ApiAdminLabeltypeAction.java
* * @param id the ID of the label type setting to retrieve * @return JSON response containing the label type setting */ // GET /api/admin/labeltype/setting/{id} @Execute public JsonResponse<ApiResult> get$setting(final String id) { return asJson(new ApiConfigResponse().setting(labelTypeService.getLabelType(id).map(this::createEditBody).orElseGet(() -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PluginHelperTest.java
assertEquals(2, list.size()); assertEquals("fess-crawler-smbj", list.get(0).getName()); assertEquals("14.14.0", list.get(0).getVersion()); assertEquals("plugin/repo3/fess-crawler-smbj/14.14.0/fess-crawler-smbj-14.14.0.jar", list.get(0).getUrl()); assertEquals("fess-crawler-smbj", list.get(1).getName()); assertEquals("14.15.0", list.get(1).getVersion());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 22.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/CacheExpirationTest.java
for (int i = 0; i < 100; ++i) { cache.getUnchecked(10).incrementAndGet(); ticker.advance(1, MILLISECONDS); } assertEquals(evictionCount.get() + 1, applyCount.get()); int remaining = cache.getUnchecked(10).get(); assertEquals(100, totalSum.get() + remaining); } public void testRemovalScheduler_expireAfterWrite() { FakeTicker ticker = new FakeTicker();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 17:42:14 UTC 2025 - 18.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbException.java
} /** * Get the message string for an NT STATUS code * * @param errcode the NT STATUS error code * @return message for NT STATUS code */ public static String getMessageByCode(final int errcode) { String message = errorCodeMessages.get(errcode); if (message == null) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.7K bytes - Viewed (0)