- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 140 for infer (0.02 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt
} finally { this.removeSnapshot = null } } } } /** A snapshot of the values for an entry. */ inner class Snapshot internal constructor( private val key: String, private val sequenceNumber: Long, private val sources: List<Source>, private val lengths: LongArray, ) : Closeable {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 23:28:25 UTC 2025 - 34.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/PurgeThumbnailJobTest.java
.expiry(0) // Should not change .expiry(3000L); assertSame(purgeThumbnailJob, result); assertEquals(3000L, purgeThumbnailJob.getExpiry()); } // Inner class for mock ThumbnailManager private static class MockThumbnailManager extends ThumbnailManager { private long purgeCallCount = 0; private long purgeExpiry = 0;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.2K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComNegotiateResponseTest.java
private SmbTransport.ServerData serverData; private SmbComNegotiateResponse response; @BeforeEach void setUp() throws UnknownHostException { // To instantiate the non-static inner class ServerData, we need an instance of the outer class SmbTransport. UniAddress uniAddress = new UniAddress(InetAddress.getByName("127.0.0.1")); SmbTransport transport = new SmbTransport(uniAddress, 445, null, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.2K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcShareEnumTest.java
srvsvc.ShareInfo1 shareInfo1 = new srvsvc.ShareInfo1(); shareInfo1.netname = "TestShare"; shareInfo1.type = 0; shareInfo1.remark = "Test remark"; // Test MsrpcShareInfo1 inner class MsrpcShareEnum.MsrpcShareInfo1 msrpcShareInfo1 = new MsrpcShareEnum(TEST_SERVER_NAME).new MsrpcShareInfo1(shareInfo1); assertNotNull(msrpcShareInfo1);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.1K bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/di/tool/DiIndexProcessor.java
logError("Error updating file", e); } } return true; } /** * Gets the fully qualified class name for a type element, including handling inner classes. * * @param typeElement the type element to get the class name for * @return the fully qualified class name */ private String getFullClassName(TypeElement typeElement) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 7.8K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackTest.java
callback.store(params, booleanData); // Test with nested map Map<String, Object> nestedData = new HashMap<>(); Map<String, String> innerMap = new HashMap<>(); innerMap.put("inner", "value"); nestedData.put("nested", innerMap); callback.store(params, nestedData); assertEquals(4L, callback.getDocumentSize()); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/util/HMACT64Test.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.1K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ChecksumAlgorithmService.java
ChecksumCalculator getCalculator(); } /** * The checksum calculator. */ interface ChecksumCalculator { /** * Updates the checksum algorithm inner state with input. * * @throws NullPointerException if passed in buffer is {@code null}. */ void update(@Nonnull ByteBuffer input); /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Jul 10 20:52:34 UTC 2024 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
} } @Override public String toString() { return "StopwordsFile [path=" + path + ", stopwordsItemList=" + stopwordsItemList + ", id=" + id + "]"; } /** * An inner class for updating the stopwords file. * This class handles the process of writing changes to a temporary file * and then replacing the original file upon successful commit. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/BooleanQueryCommandTest.java
assertNull(result); } // Test convertBooleanQuery with nested BooleanQuery public void test_convertBooleanQuery_withNestedBooleanQuery() { // Create inner BooleanQuery BooleanQuery.Builder innerBoolQueryBuilder = new BooleanQuery.Builder(); TermQuery innerTermQuery = new TermQuery(new Term("innerField", "innerValue"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14.4K bytes - Viewed (0)