- Sort Score
- Result 10 results
- Languages All
Results 711 - 720 of 893 for isValid (0.05 sec)
-
src/main/java/org/codelibs/curl/CurlRequest.java
*/ protected String encode(final String value) { try { return URLEncoder.encode(value, encoding); } catch (final UnsupportedEncodingException e) { throw new CurlException("Invalid encoding: " + encoding, e); } } /** * Sets the thread pool for executing the request. * * @param threadPool the thread pool * @return this CurlRequest instance
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Sat Jul 05 01:38:18 UTC 2025 - 17.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbFileTest.java
} @Test void testConstructorWithInvalidURL() { // Act & Assert assertThrows(MalformedURLException.class, () -> { new SmbFile("invalid url with spaces", mockCifsContext); }); } } @Nested class WhenCheckingFileProperties { @Mock private SmbTreeHandleImpl mockTreeHandle;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ImmutableSetMultimap.java
stream.defaultReadObject(); Comparator<Object> valueComparator = (Comparator<Object>) stream.readObject(); int keyCount = stream.readInt(); if (keyCount < 0) { throw new InvalidObjectException("Invalid key count " + keyCount); } ImmutableMap.Builder<Object, ImmutableSet<Object>> builder = ImmutableMap.builder(); int tmpSize = 0; for (int i = 0; i < keyCount; i++) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 25.8K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/Type2MessageTest.java
assertArrayEquals(originalMessage.getTargetInformation(), parsedMessage.getTargetInformation()); } @Test @DisplayName("Constructor with invalid signature should throw IOException") void testConstructor_ByteArray_InvalidSignature() { // Given byte[] invalidSignature = new byte[100];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 38.9K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.29.md
- `kube-proxy` will only install the `DROP` rules for invalid `conntrack` states if
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Mar 12 00:36:01 UTC 2025 - 429.6K bytes - Viewed (1) -
doc/go_spec.html
0x.p1 // invalid: mantissa has no digits 1p-2 // invalid: p exponent requires hexadecimal mantissa 0x1.5e-2 // invalid: hexadecimal mantissa requires p exponent 1_.5 // invalid: _ must separate successive digits 1._5 // invalid: _ must separate successive digits 1.5_e1 // invalid: _ must separate successive digits 1.5e_1 // invalid: _ must separate successive digits
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue May 06 19:12:15 UTC 2025 - 286.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractConditionQuery.java
} // =================================================================================== // Invalid Query // ============= protected void checkEsInvalidQuery(String name, Object value) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 21.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractConditionQuery.java
} // =================================================================================== // Invalid Query // ============= protected void checkEsInvalidQuery(String name, Object value) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 21.1K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Strings.java
*/ public static String repeat(String string, int count) { checkNotNull(string); // eager for GWT. if (count <= 1) { checkArgument(count >= 0, "invalid count: %s", count); return (count == 0) ? "" : string; } // IF YOU MODIFY THE CODE HERE, you must update StringsRepeatBenchmark int len = string.length();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 27 17:53:41 UTC 2025 - 12.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcHandle.java
si = arr.length; } si++; } while (si < arr.length); if (binding == null || binding.getEndpoint() == null) { throw new DcerpcException("Invalid binding URL: " + str); } return binding; } private static final AtomicInteger call_id = new AtomicInteger(1); private final DcerpcBinding binding;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.9K bytes - Viewed (0)