- Sort Score
- Num 10 results
- Language All
Results 451 - 460 of 603 for 01 (0.04 seconds)
-
android/guava-tests/test/com/google/common/primitives/UnsignedLongsTest.java
// The radix is used as an array index, so try a negative value. assertThrows(NumberFormatException.class, () -> UnsignedLongs.parseUnsignedLong("0", -1)); } public void testToString() { String[] tests = { "0", "ffffffffffffffff", "7fffffffffffffff", "ff1a618b7f65ea12", "5a4316b8c153ac4d",Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 12.8K bytes - Click Count (0) -
src/test/java/jcifs/internal/CommonServerMessageBlockTest.java
} @Test @DisplayName("Test setUid with boundary values") void testSetUidWithBoundaryValues() { // Test with various uid values int[] uids = { 0, 1, Integer.MAX_VALUE, Integer.MIN_VALUE }; for (int uid : uids) { doNothing().when(messageBlock).setUid(uid); messageBlock.setUid(uid); verify(messageBlock).setUid(uid);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 15.7K bytes - Click Count (0) -
helm-releases/minio-3.4.7.tgz
Harshavardhana <******@****.***> 1643143764 -0800
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Tue Jan 25 20:49:24 GMT 2022 - 15.2K bytes - Click Count (0) -
docs/tr/docs/async.md
### Eşzamanlı Burgerler { #concurrent-burgers } Aşkınla fast food almaya gidiyorsun, kasiyer senden önceki insanların siparişlerini alırken sıraya giriyorsun. 😍 <img src="/img/async/concurrent-burgers/concurrent-burgers-01.png" class="illustration"> Sonra sıra size geliyor, sen ve aşkın için 2 çok havalı burger sipariş ediyorsun. 🍔🍔 <img src="/img/async/concurrent-burgers/concurrent-burgers-02.png" class="illustration">Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 23.7K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/LinkedHashMultimapTest.java
multimap.put(null, -1); multimap.put("bar", 3); multimap.put("bar", 1); multimap.put("foo", 1); assertThat(multimap.toString()) .isEqualTo("{foo=[3, -1, 2, null, 4, 1], null=[null, 0, -1], bar=[1, 2, null, 3]}"); } public void testPutMultimapOrdered() { SetMultimap<String, Integer> multimap = LinkedHashMultimap.create(); multimap.putAll(initializeMultimap5());
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 16.5K bytes - Click Count (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java
Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sat Mar 15 06:51:20 GMT 2025 - 17K bytes - Click Count (0) -
android/guava/src/com/google/common/io/ReaderInputStream.java
} @Override public void close() throws IOException { reader.close(); } @Override public int read() throws IOException { return (read(singleByte) == 1) ? toUnsignedInt(singleByte[0]) : -1; } // TODO(chrisn): Consider trying to encode/flush directly to the argument byte // buffer when possible. @Override public int read(byte[] b, int off, int len) throws IOException {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Apr 14 16:36:11 GMT 2025 - 9.3K bytes - Click Count (0) -
src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java
* * @throws IOException if a network error occurs */ @Override public void write(final int b) throws IOException { tmp[0] = (byte) b; write(tmp, 0, 1); } /** * Writes b.length bytes from the specified byte array to this * file output stream. * * @throws IOException if a network error occurs */ @OverrideCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 11K bytes - Click Count (0) -
src/test/java/jcifs/SidResolverTest.java
.resolveSids(any(CIFSContext.class), anyString(), any(SID[].class), anyInt(), eq(-1)); assertThrows(CIFSException.class, () -> sidResolver.resolveSids(mockContext, testServerName, testSids, 0, -1)); } @Test void testResolveSidsWithOffsetAndLength_OutOfBounds() throws CIFSException { doThrow(new CIFSException("Array index out of bounds")).when(sidResolver)
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 15.5K bytes - Click Count (0) -
src/test/java/jcifs/smb/SmbFileOutputStreamTest.java
// When & Then - test boundary conditions // Negative length or offset should not cause issues (len <= 0 returns early) assertDoesNotThrow(() -> outputStream.write(data, 0, -1)); // negative length, returns early assertDoesNotThrow(() -> outputStream.write(data, 0, 0)); // zero length, returns early // These should pass through to the underlying implementationCreated: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 15.8K bytes - Click Count (0)