- Sort Score
- Num 10 results
- Language All
Results 1391 - 1400 of 1,508 for LENGTH (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/jcifs/smb/SmbTreeConnection.java
final T response, final RequestParam... params) throws CIFSException { return send(loc, request, response, params.length == 0 ? EnumSet.noneOf(RequestParam.class) : EnumSet.copyOf(Arrays.asList(params))); } <T extends CommonServerMessageBlockResponse> T send(final SmbResourceLocatorImpl loc, final CommonServerMessageBlockRequest request,Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 30.4K bytes - Click Count (1) -
android/guava-tests/test/com/google/common/reflect/InvokableTest.java
assertEquals(TypeToken.of(String.class), invokable.getOwnerType()); } public void testGetOwnerType_method() throws Exception { Invokable<?, ?> invokable = Invokable.from(String.class.getMethod("length")); assertEquals(TypeToken.of(String.class), invokable.getOwnerType()); } private static final class FinalClass { @SuppressWarnings("unused") // used by reflection void notFinalMethod() {} }
Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed Jul 16 17:42:14 GMT 2025 - 30.7K bytes - Click Count (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java
} } // Helper method for containsExactlyInAnyOrder assertion private static <T> void assertContainsExactlyInAnyOrder(Collection<T> actual, T... expected) { assertEquals(expected.length, actual.size(), "Collection size mismatch"); for (T item : expected) { assertTrue(actual.contains(item), "Collection should contain: " + item); } } @TestCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 30.9K bytes - Click Count (0) -
cmd/metacache-stream.go
// This can be used for managing breaking changes. // // For each element: // 1. Bool. If false at end of stream. // 2. String. Name of object. Directories contains a trailing slash. // 3. Binary. Blob of metadata. Length 0 on directories. // ... Next element. // // Streams can be assumed to be sorted in ascending order. // If the stream ends before a false boolean it can be assumed it was truncated. const metacacheStreamVersion = 2
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Wed May 07 15:37:12 GMT 2025 - 19.5K bytes - Click Count (0) -
okhttp-tls/src/test/java/okhttp3/tls/internal/der/DerCertificatesTest.kt
Adapters.ANY_VALUE to AnyValue( tagClass = DerHeader.TAG_CLASS_CONTEXT_SPECIFIC, tag = 1L, constructed = false, length = 16, bytes = "******@****.***".encodeUtf8(), ), ), ), ) } /** Converts public key bytes to SubjectPublicKeyInfo bytes. */Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 43.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
}) .filter(req -> req != null) .toArray(n -> new UpdateRequest[n]); if (updateRequests.length > 0) { searchHelper.bulkUpdate(builder -> { for (final UpdateRequest req : updateRequests) { builder.add(req); }Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 26.4K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/io/xpp3/CoreExtensionsXpp3Reader.java
* any. * @return boolean */ private boolean getBooleanValue(String s, String attribute, XmlPullParser parser, String defaultValue) throws XmlPullParserException { if (s != null && s.length() != 0) { return Boolean.valueOf(s).booleanValue(); } if (defaultValue != null) { return Boolean.valueOf(defaultValue).booleanValue(); } return false;Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Oct 27 13:24:03 GMT 2025 - 25.3K bytes - Click Count (0) -
src/main/java/jcifs/util/Encdec.java
* @return the number of bytes written */ public static int enc_utf8(final String str, final byte[] dst, int di, final int dlim) { final int start = di; int ch; final int strlen = str.length(); for (int i = 0; di < dlim && i < strlen; i++) { ch = str.charAt(i); if (ch >= 0x0001 && ch <= 0x007F) { dst[di] = (byte) ch; di++;Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 17.4K bytes - Click Count (0) -
src/main/resources/fess_message_ko.properties
# ------------------- constraints.CreditCardNumber.message = {item}는 유효하지 않은 신용카드 번호입니다. constraints.EAN.message = {item}는 유효하지 않은 {type} 바코드입니다. constraints.Email.message = {item}는 올바른 이메일 주소가 아닙니다. constraints.Length.message = {item}의 길이는 {min}에서 {max} 사이여야 합니다. constraints.LuhnCheck.message = {value}의 Luhn Modulo 11 체크섬이 올바르지 않습니다. constraints.Mod10Check.message = {value}의 Modulo 10 체크섬이 올바르지 않습니다.Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Jul 05 02:36:47 GMT 2025 - 14.1K bytes - Click Count (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/TransformerTest.java
TestTransformer transformer = new TestTransformer("largeDataTransformer"); // Create large response data byte[] largeBody = new byte[10 * 1024 * 1024]; // 10MB for (int i = 0; i < largeBody.length; i++) { largeBody[i] = (byte) (i % 256); } ResponseData responseData = new ResponseData(); responseData.setUrl("http://example.com/large");
Created: Sat Dec 20 11:21:39 GMT 2025 - Last Modified: Sat Sep 06 04:15:37 GMT 2025 - 28K bytes - Click Count (0)