- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 1,201 for integers (0.04 sec)
-
src/main/java/jcifs/smb1/dcerpc/ndr/NdrShort.java
*/ package jcifs.smb1.dcerpc.ndr; /** * NDR representation of a short integer (2-byte signed integer). */ public class NdrShort extends NdrObject { /** * The short integer value. */ public int value; /** * Constructs an NdrShort with the specified value. * * @param value the short integer value */ public NdrShort(final int value) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/SmbNegotiationResponseTest.java
// Test maximum integer values when(negotiationResponse.getSendBufferSize()).thenReturn(Integer.MAX_VALUE); when(negotiationResponse.getReceiveBufferSize()).thenReturn(Integer.MAX_VALUE); when(negotiationResponse.getTransactionBufferSize()).thenReturn(Integer.MAX_VALUE); assertEquals(Integer.MAX_VALUE, negotiationResponse.getSendBufferSize());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.6K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacDataInputStream.java
} /** * Reads a 32-bit integer value with proper alignment and byte order. * @return the integer value in little-endian format * @throws IOException if an I/O error occurs */ public int readInt() throws IOException { align(4); return Integer.reverseBytes(this.dis.readInt()); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsSearchLog.java
this.queryId = value; } public Integer getQueryOffset() { checkSpecifiedProperty("queryOffset"); return queryOffset; } public void setQueryOffset(Integer value) { registerModifiedProperty("queryOffset"); this.queryOffset = value; } public Integer getQueryPageSize() { checkSpecifiedProperty("queryPageSize");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 12.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/cbean/cq/bs/BsScheduledJobCQ.java
return this; } public void setSortOrder_Equal(Integer sortOrder) { setSortOrder_Term(sortOrder, null); } public void setSortOrder_Equal(Integer sortOrder, ConditionOptionCall<TermQueryBuilder> opLambda) { setSortOrder_Term(sortOrder, opLambda); } public void setSortOrder_Term(Integer sortOrder) { setSortOrder_Term(sortOrder, null); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 98.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SearchLogHelperTest.java
return true; } @Override public Integer getLoggingSearchMaxQueueSizeAsInteger() { return 1000; } @Override public Integer getLoggingClickMaxQueueSizeAsInteger() { return 1000; } @Override public Integer getQueryMaxLengthAsInteger() { return 1000; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessPropTest.java
FessProp.propMap.clear(); FessConfig fessConfig = new FessConfig.SimpleImpl() { @Override public Integer getLdapMaxUsernameLengthAsInteger() { return Integer.valueOf(-1); } }; File file = File.createTempFile("test", ".properties"); file.deleteOnExit();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/util/CopyOptionsTest.java
assertThat(new CopyOptions().convertValue(Integer.valueOf(1), "aaa", null), is((Object) 1)); } /** * @throws Exception */ @Test public void testConvertValue_propertyConverter_asString() throws Exception { assertThat(new CopyOptions().converter(new NumberConverter("##0"), "aaa").convertValue(Integer.valueOf(1), "aaa", null), is((Object) "1")); }
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 12K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/base/ObjectsBenchmark.java
* * @author Ben L. Titzer */ @NullUnmarked public class ObjectsBenchmark { private static final Integer I0 = -45; private static final Integer I1 = -1; private static final Integer I2 = 3; private static final String S0 = "3"; private static final String S1 = "Ninety five"; private static final String S2 = "44 one million";
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/UUID.java
*/ public class UUID extends rpc.uuid_t { /** * Convert hexadecimal characters to binary integer * * @param arr the character array containing hex digits * @param offset the starting position in the array * @param length the number of hex digits to convert * @return the integer value of the hex digits */ public static int hex_to_bin(final char[] arr, final int offset, final int length) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.1K bytes - Viewed (0)