- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 168 for 000Z (0.02 sec)
-
src/main/java/jcifs/smb1/netbios/NbtAddress.java
private static int nbnsIndex = 0; private static final HashMap ADDRESS_CACHE = new HashMap(); private static final HashMap LOOKUP_TABLE = new HashMap(); static final Name UNKNOWN_NAME = new Name("0.0.0.0", 0x00, null); static final NbtAddress UNKNOWN_ADDRESS = new NbtAddress(UNKNOWN_NAME, 0, false, B_NODE);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/CharsTest.java
testRotate(new char[] {'1', '2', '3', '4', '5'}, 6, new char[] {'5', '1', '2', '3', '4'}); } public void testRotateIndexed() { testRotate(new char[] {}, 0, 0, 0, new char[] {}); testRotate(new char[] {'1'}, 0, 0, 1, new char[] {'1'}); testRotate(new char[] {'1'}, 1, 0, 1, new char[] {'1'}); testRotate(new char[] {'1'}, 1, 1, 1, new char[] {'1'});
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 25.9K bytes - Viewed (0) -
cmd/object-api-multipart_test.go
{"volatile-bucket-3", "test1", "", 0, 0, ListPartsInfo{}, BucketNotFound{Bucket: "volatile-bucket-3"}, false}, // Test case for Asserting for invalid objectName (Test number 8). {bucketNames[0], "", "", 0, 0, ListPartsInfo{}, ObjectNameInvalid{Bucket: bucketNames[0]}, false}, // Asserting for Invalid UploadID (Test number 9). {bucketNames[0], objectNames[0], "abc", 0, 0, ListPartsInfo{}, InvalidUploadID{UploadID: "abc"}, false},
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 89.4K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NameServiceClientImpl.java
this.expiration = expiration; } } /** * */ private void initCache(final CIFSContext tc) { this.unknownName = new Name(tc.getConfig(), "0.0.0.0", 0x00, null); this.unknownAddress = new NbtAddress(this.unknownName, 0, false, NbtAddress.B_NODE); this.addressCache.put(this.unknownName, new CacheEntry(this.unknownName, this.unknownAddress, SmbConstants.FOREVER));
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 38.5K bytes - Viewed (0) -
guava/src/com/google/common/primitives/Doubles.java
* that of <code>((Double) a).{@linkplain Double#compareTo compareTo}(b)</code>. As with that * method, {@code NaN} is treated as greater than all other values, and {@code 0.0 > -0.0}. * * <p><b>Note:</b> this method simply delegates to the JDK method {@link Double#compare}. It is * provided for consistency with the other primitive types, whose compare methods were not added
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/IntsTest.java
testRotate(new int[] {1, 2, 3, 4, 5}, 4, new int[] {2, 3, 4, 5, 1}); testRotate(new int[] {1, 2, 3, 4, 5}, 6, new int[] {5, 1, 2, 3, 4}); } public void testRotateIndexed() { testRotate(new int[] {}, 0, 0, 0, new int[] {}); testRotate(new int[] {1}, 0, 0, 1, new int[] {1}); testRotate(new int[] {1}, 1, 0, 1, new int[] {1}); testRotate(new int[] {1}, 1, 1, 1, new int[] {1});
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 29.2K bytes - Viewed (0) -
doc/go_spec.html
</p> <p> After a backslash, certain single-character escapes represent special values: </p> <pre class="grammar"> \a U+0007 alert or bell \b U+0008 backspace \f U+000C form feed \n U+000A line feed or newline \r U+000D carriage return \t U+0009 horizontal tab \v U+000B vertical tab \\ U+005C backslash \' U+0027 single quote (valid escape only within rune literals)
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue May 06 19:12:15 UTC 2025 - 286.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/CompactHashMap.java
/** * Maximum allowed false positive probability of detecting a hash flooding attack given random * input. */ @VisibleForTesting( ) static final double HASH_FLOODING_FPP = 0.001; /** * Maximum allowed length of a hash table bucket before falling back to a j.u.LinkedHashMap-based * implementation. Experimentally determined. */ private static final int MAX_HASH_BUCKET_LENGTH = 9;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 39.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/QueryResponseListTest.java
List<Map<String, Object>> documentList = new ArrayList<>(); FacetResponse facetResponse = null; QueryResponseList qrList = new QueryResponseList(documentList, 100L, "eq", 300L, false, facetResponse, 0, 0, 0); assertEquals(100L, qrList.getAllRecordCount()); assertEquals("eq", qrList.getAllRecordCountRelation()); assertEquals(300L, qrList.getQueryTime());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 39.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
try (final InputStream in = Files.newInputStream(propPath)) { final Properties prop = new Properties(); prop.load(in); version = prop.getProperty("fess.version", "0.0.0"); final String[] values = version.split("\\."); majorVersion = Integer.parseInt(values[0]); minorVersion = Integer.parseInt(values[1]);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0)