- Sort Score
- Result 10 results
- Languages All
Results 1201 - 1210 of 3,312 for inst (0.02 sec)
- 
				
				android/guava-tests/benchmark/com/google/common/io/ByteSourceAsCharSourceReadBenchmark.javaint maxChars = (int) (size.get().intValue() * cs.newDecoder().maxCharsPerByte()); char[] buffer = new char[maxChars]; int bufIndex = 0; int remaining = buffer.length; try (InputStreamReader reader = new InputStreamReader(byteSource.openStream(), cs)) { int nRead = 0; Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 5.2K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/job/SuggestJobTest.java} @Override public int getMajorVersion() { return 3; } @Override public int getMinorVersion() { return 0; } @Override public int getEffectiveMajorVersion() { return 3; } @Override public int getEffectiveMinorVersion() { return 0; }Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 31.4K bytes - Viewed (0)
- 
				
				src/main/java/org/codelibs/core/convert/IntegerConversionUtil.java} /** * Converts to {@literal int}. * * @param o * The object to convert * @return The converted {@literal int} */ public static int toPrimitiveInt(final Object o) { return toPrimitiveInt(o, null); } /** * Converts to {@literal int}. * * @param o * The object to convertRegistered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.2K bytes - Viewed (0)
- 
				
				src/test/java/jcifs/internal/fscc/FileInternalInfoTest.javaint dstIndex = 5; // Start at offset 5 int bytesEncoded = fileInternalInfo.encode(destinationBuffer, dstIndex); // Verify assertEquals(8, bytesEncoded); assertEquals(expectedIndexNumber, SMBUtil.readInt8(destinationBuffer, dstIndex)); // Verify surrounding bytes are untouched for (int i = 0; i < dstIndex; i++) {Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/core/collection/ArrayUtilTest.javapublic void testAddAll_int() throws Exception { final int[] array = new int[] { 111 }; final int[] newArray = ArrayUtil.add(array, 222); assertThat(newArray.length, is(2)); assertThat(newArray[0], is(111)); assertThat(newArray[1], is(222)); final int[] emptyArray = new int[0]; assertThat(ArrayUtil.addAll((int[]) null, (int[]) null), is(nullValue())); Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 10.6K bytes - Viewed (0)
- 
				
				src/test/java/jcifs/internal/CommonServerMessageBlockRequestTest.java} @Test @DisplayName("Test size returns positive message size") void testSizeReturnsPositiveValue() { // Given int expectedSize = 1024; when(request.size()).thenReturn(expectedSize); // When int result = request.size(); // Then assertEquals(expectedSize, result); verify(request, times(1)).size(); } @TestRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.1K bytes - Viewed (0)
- 
				
				src/test/java/jcifs/EmptyIteratorTest.javaRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12K bytes - Viewed (0)
- 
				
				guava/src/com/google/common/io/CharStreams.java} @Override public void write(String str, int off, int len) { checkPositionIndexes(off, off + len, str.length()); } @Override public Writer append(@Nullable CharSequence csq) { return this; } @Override public Writer append(@Nullable CharSequence csq, int start, int end) {Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 30 17:25:01 UTC 2025 - 10.9K bytes - Viewed (0)
- 
				
				src/main/java/jcifs/smb1/ntlmssp/Type1Message.java} /** * Returns the default flags for a generic Type-1 message in the * current environment. * * @return An <code>int</code> containing the default flags. */ public static int getDefaultFlags() { return DEFAULT_FLAGS; } /** * Returns the default domain from the current environment. *Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.9K bytes - Viewed (0)
- 
				
				src/test/java/jcifs/BaseTest.java*/ protected byte[] createTestData(int size) { byte[] data = new byte[size]; for (int i = 0; i < size; i++) { data[i] = (byte) (i % 256); } return data; } /** * Create a test string with specified length */ protected String createTestString(int length) { StringBuilder sb = new StringBuilder(length);Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1.2K bytes - Viewed (0)