- Sort Score
- Result 10 results
- Languages All
Results 891 - 900 of 2,937 for rint (0.03 sec)
- 
				
				src/test/java/jcifs/internal/smb1/trans2/Trans2QueryPathInformationResponseTest.javaint result = response.writeDataWireFormat(dst, 0); assertEquals(0, result); } @Test @DisplayName("Test readSetupWireFormat returns 0") void testReadSetupWireFormat() { response = new Trans2QueryPathInformationResponse(mockConfig, FileInformation.FILE_BASIC_INFO); byte[] buffer = new byte[100];Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.9K bytes - Viewed (0)
- 
				
				src/test/java/org/codelibs/fess/util/QueryResponseListTest.javapublic void test_calculatePageInfo_page0() { QueryResponseList qrList; qrList = new QueryResponseList(null, 0, 20, 0) { @Override public int size() { return 0; } }; qrList.calculatePageInfo(); assertEquals(20, qrList.getPageSize()); assertEquals(1, qrList.getCurrentPageNumber()); Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 39.7K bytes - Viewed (0)
- 
				
				guava/src/com/google/common/collect/ArrayTable.javareturn keyIndex.keySet(); } K getKey(int index) { return keyIndex.keySet().asList().get(index); } abstract String getKeyRole(); @ParametricNullness abstract V getValue(int index); @ParametricNullness abstract V setValue(int index, @ParametricNullness V newValue); @Override public int size() { return keyIndex.size(); } Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 13 19:39:21 UTC 2025 - 26.8K bytes - Viewed (0)
- 
				
				src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsCrawlingInfoBhv.javadoDelete(entity, null); } public int queryDelete(CBCall<CrawlingInfoCB> cbLambda) { return doQueryDelete(createCB(cbLambda), null); } public int[] batchInsert(List<CrawlingInfo> list) { return batchInsert(list, null, null); } public int[] batchInsert(List<CrawlingInfo> list, RequestOptionCall<BulkRequestBuilder> call) { Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.5K bytes - Viewed (0)
- 
				
				src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsElevateWordBhv.javadoDelete(entity, null); } public int queryDelete(CBCall<ElevateWordCB> cbLambda) { return doQueryDelete(createCB(cbLambda), null); } public int[] batchInsert(List<ElevateWord> list) { return batchInsert(list, null, null); } public int[] batchInsert(List<ElevateWord> list, RequestOptionCall<BulkRequestBuilder> call) { Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.8K bytes - Viewed (0)
- 
				
				src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsPathMappingBhv.javadoDelete(entity, null); } public int queryDelete(CBCall<PathMappingCB> cbLambda) { return doQueryDelete(createCB(cbLambda), null); } public int[] batchInsert(List<PathMapping> list) { return batchInsert(list, null, null); } public int[] batchInsert(List<PathMapping> list, RequestOptionCall<BulkRequestBuilder> call) { Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.9K bytes - Viewed (0)
- 
				
				android/guava-tests/test/com/google/common/cache/CacheExpirationTest.javaWatchedCreatorLoader loader, FakeTicker ticker, CountingRemovalListener<String, Integer> removalListener) { for (int i = 0; i < 10; i++) { assertEquals(Integer.valueOf(VALUE_PREFIX + i), cache.getUnchecked(KEY_PREFIX + i)); } for (int i = 0; i < 10; i++) { loader.reset(); assertEquals(Integer.valueOf(VALUE_PREFIX + i), cache.getUnchecked(KEY_PREFIX + i));Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 17:42:14 UTC 2025 - 18.7K bytes - Viewed (0)
- 
				
				android/guava/src/com/google/common/io/MultiInputStream.javaadvance(); } return -1; } @Override public int read(byte[] b, int off, int len) throws IOException { checkNotNull(b); while (in != null) { int result = in.read(b, off, len); if (result != -1) { return result; } advance(); } return -1; } @Override public long skip(long n) throws IOException { if (in == null || n <= 0) { Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed May 14 19:40:47 UTC 2025 - 2.8K bytes - Viewed (0)
- 
				
				android/guava/src/com/google/common/io/ByteArrayDataInput.java@Override void readFully(byte[] b); @Override void readFully(byte[] b, int off, int len); // not guaranteed to skip n bytes so result should NOT be ignored // use ByteStreams.skipFully or one of the read methods instead @Override int skipBytes(int n); @CanIgnoreReturnValue // to skip a byte @Override boolean readBoolean(); Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Dec 27 20:25:25 UTC 2024 - 2.7K bytes - Viewed (0)
- 
				
				android/guava-tests/test/com/google/common/cache/PopulatedCachesTest.java// we use integers as keys; make sure the range covers some values that ARE cached by // Integer.valueOf(int), and some that are not cached. (127 is the highest cached value.) static final int WARMUP_MIN = 120; static final int WARMUP_MAX = 135; static final int WARMUP_SIZE = WARMUP_MAX - WARMUP_MIN; public void testSize_populated() { for (LoadingCache<Object, Object> cache : caches()) { Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 15.1K bytes - Viewed (0)