- Sort Score
- Result 10 results
- Languages All
Results 1191 - 1200 of 1,414 for empty (0.02 sec)
-
okhttp-tls/src/main/kotlin/okhttp3/tls/HeldCertificate.kt
parameters = null, ) else -> AlgorithmIdentifier( algorithm = SHA256_WITH_ECDSA, parameters = ByteString.EMPTY, ) } private fun generateKeyPair(): KeyPair = KeyPairGenerator.getInstance(keyAlgorithm).run { initialize(keySize, SecureRandom()) generateKeyPair() }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 21.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/ImmutableLongArrayTest.java
list.set(2, 2L); assertThat(iia.asList()).containsExactly(0L, 1L, 3L).inOrder(); } public void testCopyOf_stream() { assertThat(ImmutableLongArray.copyOf(LongStream.empty())) .isSameInstanceAs(ImmutableLongArray.of()); assertThat(ImmutableLongArray.copyOf(LongStream.of(0, 1, 3)).asList()) .containsExactly(0L, 1L, 3L) .inOrder(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 20.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/CreateContextRequestTest.java
int result = request.encode(buffer, 100); assertTrue(result > 0); assertTrue(result <= buffer.length - 100); } @Test @DisplayName("Should handle empty data array") void testEmptyDataArray() { byte[] emptyData = new byte[0]; byte[] name = "TEST_DATA".getBytes(StandardCharsets.UTF_8);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 24.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleManagerTest.java
// Remove second instance assertTrue(ruleManager.removeRule(rule)); assertEquals(0, ruleManager.getRuleCount()); assertFalse(ruleManager.hasRule(rule)); } /** * Test empty RuleManager */ public void test_emptyRuleManager() { assertEquals(0, ruleManager.getRuleCount()); ResponseData responseData = new ResponseData();
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Sep 06 04:15:37 UTC 2025 - 23.8K bytes - Viewed (0) -
apache-maven/src/assembly/maven/conf/settings.xml
</server> --> <!-- Another sample, using keys to authenticate. <server> <id>siteServer</id> <privateKey>/path/to/private/key</privateKey> <passphrase>optional; leave empty if not used.</passphrase> </server> --> </servers> <!-- mirrors | This is a list of mirrors to be used in downloading artifacts from remote repositories. |
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jan 22 07:44:50 UTC 2025 - 11.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java
return name; } private void executeCommand(final File inputFile, final File outputFile) { if (StringUtil.isBlank(command)) { throw new CrawlerSystemException("command is empty."); } final Map<String, String> params = new HashMap<>(); params.put("$INPUT_FILE", inputFile.getAbsolutePath()); params.put("$OUTPUT_FILE", outputFile.getAbsolutePath());
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 16K bytes - Viewed (0) -
src/main/java/jcifs/ntlmssp/Type3Message.java
* taking place. * @param flags the flags to use for the Type-3 message * @param nonAnonymous * actually perform authentication with empty password * @throws GeneralSecurityException if a cryptographic error occurs * @throws CIFSException if a CIFS protocol error occurs */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 32.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectRequestTest.java
System.arraycopy(buffer, Smb2Constants.SMB2_HEADER_LENGTH + 8, actualPath, 0, pathBytes.length); assertArrayEquals(pathBytes, actualPath); } @Test @DisplayName("Should handle empty path") void testEmptyPath() throws Exception { // Given String emptyPath = ""; Smb2TreeConnectRequest req = new Smb2TreeConnectRequest(mockConfig, emptyPath);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
cmd/metacache-server-pool.go
if o.Marker < o.Prefix { o.Marker = "" } // Marker is set validate pre-condition. if o.Marker != "" && o.Prefix != "" { // Marker not common with prefix is not implemented. Send an empty response if !HasPrefix(o.Marker, o.Prefix) { return entries, io.EOF } } // With max keys of zero we have reached eof, return right here. if o.Limit == 0 { return entries, io.EOF }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Mon May 26 07:06:43 UTC 2025 - 12.9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableSetMultimap.java
Function<? super T, ? extends Stream<? extends V>> valuesFunction) { return CollectCollectors.flatteningToImmutableSetMultimap(keyFunction, valuesFunction); } /** * Returns the empty multimap. * * <p><b>Performance note:</b> the instance returned is a singleton. */ // Casting is safe because the multimap will never hold any elements. @SuppressWarnings("unchecked")
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 25.8K bytes - Viewed (0)