- Sort Score
- Result 10 results
- Languages All
Results 1381 - 1390 of 2,094 for No (0.43 sec)
-
src/main/java/jcifs/smb1/http/Handler.java
} private static final Map PROTOCOL_HANDLERS = new HashMap(); private static final String HANDLER_PKGS_PROPERTY = "java.protocol.handler.pkgs"; /** * Vendor-specific default packages. If no packages are specified in * "java.protocol.handler.pkgs", the VM uses one or more default * packages, which are vendor specific. Sun's is included below
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2FindFirst2ResponseTest.java
// lastNameOffset (2 bytes) buffer[6] = 0x08; buffer[7] = 0x00; int result = response.readParametersWireFormat(buffer, 0, 8); // Should read 8 bytes (no sid for FIND_NEXT) assertEquals(8, result); assertEquals(3, response.getNumEntries()); assertFalse(response.isEndOfSearch()); assertEquals(0, response.getSid()); // sid should remain 0 }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/Trans2GetDfsReferralTest.java
byte[] buffer = new byte[10]; assertThrows(NullPointerException.class, () -> cmd.writeParametersWireFormat(buffer, 0)); } @Nested @DisplayName("read methods are no‑ops") class ReadMethods { Trans2GetDfsReferral cmd = new Trans2GetDfsReferral("/foo"); @Test void setup() { assertEquals(0, cmd.readSetupWireFormat(new byte[10], 0, 0));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.6K bytes - Viewed (0) -
cmd/background-heal-ops.go
// while counting the number of concurrent connections return int(globalHTTPListen.Subscribers()) + int(globalTrace.Subscribers()) } func waitForLowIO(maxIO int, maxWait time.Duration, currentIO func() int) { // No need to wait run at full speed. if maxIO <= 0 { return } const waitTick = 100 * time.Millisecond tmpMaxWait := maxWait for currentIO() >= maxIO { if tmpMaxWait > 0 {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue May 27 15:19:03 UTC 2025 - 4.6K bytes - Viewed (0) -
docs/uk/docs/tutorial/response-status-code.md
* `200` - код за замовчуванням, який означає, що все пройшло "OK". * Інший приклад – `201`, "Created" (створено). Його зазвичай використовують після створення нового запису в базі даних. * Особливий випадок – `204`, "No Content" (немає вмісту). Ця відповідь використовується, коли немає даних для повернення клієнту, тому відповідь не повинна мати тіла.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Wed Mar 19 17:04:17 UTC 2025 - 6.1K bytes - Viewed (0) -
src/bytes/iter.go
"unicode" "unicode/utf8" ) // Lines returns an iterator over the newline-terminated lines in the byte slice s. // The lines yielded by the iterator include their terminating newlines. // If s is empty, the iterator yields no lines at all. // If s does not end in a newline, the final yielded line will not end in a newline. // It returns a single-use iterator. func Lines(s []byte) iter.Seq[[]byte] { return func(yield func([]byte) bool) {
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Wed Sep 03 14:04:47 UTC 2025 - 3.6K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/Gradleception.kt
} localGradle { name = "QUICKCHECK_WITH_GRADLE_BUILT_BY_GRADLE" tasks = "clean sanityCheck test ${extraTasks.joinToString(" ")} -PflakyTests=exclude --no-configuration-cache" gradleHome = "%teamcity.build.checkoutDir%/dogfood-second" gradleParams = defaultParameters } }, ) })
Registered: Wed Sep 10 11:36:15 UTC 2025 - Last Modified: Thu May 01 14:55:05 UTC 2025 - 7.1K bytes - Viewed (0) -
cmd/xl-storage.go
// with O_DIRECT support, return an error if any and return // errUnsupportedDisk if there is no O_DIRECT support func (s *xlStorage) checkODirectDiskSupport(fsType string) error { if !disk.ODirectPlatform { return errUnsupportedDisk } // We know XFS already supports O_DIRECT no need to check. if fsType == "XFS" { return nil }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jun 13 11:33:47 UTC 2025 - 91.7K bytes - Viewed (0) -
okhttp-coroutines/src/test/kotlin/okhttp3/coroutines/ExecuteAsyncTest.kt
withTimeout(1.seconds) { call.executeAsync().use { withContext(Dispatchers.IO) { it.body.string() } fail("No expected to get response") } } } assertThat(call.isCanceled()).isTrue() } } @Test fun cancelledCall() { runTest { server.enqueue(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 5.3K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/EquivalenceTester.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 4.1K bytes - Viewed (0)