- Sort Score
- Result 10 results
- Languages All
Results 1091 - 1100 of 1,168 for isInteger (0.04 sec)
-
src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationTest.java
assertNotNull(trans2SetFileInfo); // Test with maximum values trans2SetFileInfo = new Trans2SetFileInformation(config, 0xFFFF, Integer.MAX_VALUE, Long.MAX_VALUE, Long.MAX_VALUE, Long.MAX_VALUE); assertNotNull(trans2SetFileInfo); } @Test @DisplayName("Test attributes with OR operation") void testAttributesWithOrOperation() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java
* @param form The search form. * @return The HTML response. */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse list(final OptionalThing<Integer> pageNumber, final SearchForm form) { validate(form, messages -> {}, this::asDictIndexHtml); pageNumber.ifPresent(num -> { charMappingPager.setCurrentPageNumber(pageNumber.get());Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 22.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java
* @return HTML response with the web authentication list */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse list(final OptionalThing<Integer> pageNumber, final SearchForm form) { pageNumber.ifPresent(num -> { webAuthPager.setCurrentPageNumber(pageNumber.get()); }).orElse(() -> { webAuthPager.setCurrentPageNumber(0);Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 20.3K bytes - Viewed (0) -
guava/src/com/google/common/hash/Hashing.java
* for {@code minimumBits}, will return identically-behaving {@link HashFunction} instances. * * @param minimumBits a positive integer. This can be arbitrarily large. The returned {@link * HashFunction} instance may use memory proportional to this integer. * @return a hash function, described above, that produces hash codes of length {@code * minimumBits} or greater */Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 22:06:57 UTC 2025 - 31.1K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/Longs.java
* {@code null} if non-ASCII digits are present in the string. * * <p>Note that strings prefixed with ASCII {@code '+'} are rejected, even though {@link * Integer#parseInt(String)} accepts them. * * @param string the string representation of a long value * @return the long value represented by {@code string}, or {@code null} if {@code string} has aRegistered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 29.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchRequestParamsTest.java
assertEquals("field2", facetInfo.field[1]); assertEquals(2, facetInfo.query.length); assertEquals("query1", facetInfo.query[0]); assertEquals("query2", facetInfo.query[1]); assertEquals(Integer.valueOf(100), facetInfo.size); assertEquals(Long.valueOf(5), facetInfo.minDocCount); assertEquals("count", facetInfo.sort); assertEquals("other", facetInfo.missing); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
} /** * Determines if this address is equal two another. Only the IP Addresses * are compared. Similar to the {@link #hashCode} method, the comparison * is based on the integer IP address and not the string representation. */ @Override public boolean equals(final Object obj) { return obj instanceof NbtAddress && ((NbtAddress) obj).address == address; }Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.7K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/riscv64error.s
SRLIW $-1, X5, X6 // ERROR "immediate out of range 0 to 31" SRAIW $-1, X5, X6 // ERROR "immediate out of range 0 to 31" SD X5, 4294967296(X6) // ERROR "constant 4294967296 too large" FNES F1, (X5) // ERROR "needs an integer register output" // // "V" Standard Extension for Vector Operations, Version 1.0 // VSETIVLI X10, E32, M2, TA, MA, X12 // ERROR "expected immediate value"
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu May 08 08:53:43 UTC 2025 - 24.8K bytes - Viewed (0) -
cmd/object-api-options.go
return } value, err = strconv.Atoi(stringInt) if err != nil { return 0, InvalidArgument{ Bucket: bucket, Object: object, Err: fmt.Errorf("Unable to parse %s, value should be an integer", headerName), } } return } func parseBoolHeader(bucket, object string, h http.Header, headerName string) (bool, error) { value := strings.TrimSpace(h.Get(headerName)) if value != "" {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Sep 06 17:34:38 UTC 2025 - 14.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleTest.java
} // Check status code condition String statusCodeCondition = conditions.get("statusCode"); if (statusCodeCondition != null) { int expectedCode = Integer.parseInt(statusCodeCondition); if (responseData.getHttpStatusCode() != expectedCode) { return false; } } return true; }Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 22.7K bytes - Viewed (0)