- Sort Score
- Result 10 results
- Languages All
Results 141 - 150 of 367 for hashed (0.07 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/cache/CacheMetadata.java
import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.annotations.Nullable; /** * Interface defining metadata for cache behavior and lifecycle management. * Implementations can specify how long cached data should be retained. * * @since 4.0.0 */ @Experimental public interface CacheMetadata { /** * Returns the cache retention that should be applied to the associated data. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Feb 07 00:45:02 UTC 2025 - 1.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/CacheInterceptor.kt
return Response .Builder() .request(chain.request()) .protocol(Protocol.HTTP_1_1) .code(HTTP_GATEWAY_TIMEOUT) .message("Unsatisfiable Request (only-if-cached)") .sentRequestAtMillis(-1L) .receivedResponseAtMillis(System.currentTimeMillis()) .build() .also { listener.satisfactionFailure(call, it) } }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lease/DirectoryLeaseManagerTest.java
directoryLeaseManager.requestDirectoryLease(directoryPath, DirectoryLeaseState.DIRECTORY_READ_HANDLE, DirectoryCacheScope.IMMEDIATE_CHILDREN); // No cached listing initially assertNull(directoryLeaseManager.getCachedDirectoryListing(directoryPath)); // Setup mock files when(mockFile1.getName()).thenReturn("file1.txt");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 01:47:47 UTC 2025 - 15.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/LeaseManager.java
entry.updateState(newState); // Flush any cached data if losing write cache if (Smb2LeaseState.hasWriteCaching(oldState) && !Smb2LeaseState.hasWriteCaching(newState)) { flushCachedWrites(entry.getPath()); } // Invalidate cached data if losing read cache
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFileDirectoryLeasingExtension.java
String directoryPath = smbFile.getPath(); // Check if we can use cached directory listing if (dirManager.canCacheDirectoryListing(directoryPath)) { List<SmbFile> cachedFiles = dirManager.getCachedDirectoryListing(directoryPath); if (cachedFiles != null) { log.debug("Using cached directory listing for: {}", directoryPath);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 7.1K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/SortedMultisetTestSuiteBuilder.java
import com.google.common.testing.SerializableTester; import java.util.ArrayList; import java.util.Collection; import java.util.Comparator; import java.util.HashSet; import java.util.List; import java.util.Set; import junit.framework.TestSuite; /** * Creates, based on your criteria, a JUnit test suite that exhaustively tests a {@code * SortedMultiset} implementation. * * <p><b>Warning:</b> expects that {@code E} is a String.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 11.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/ldap/LdapUserTest.java
} }); String[] permissions = ldapUser.getPermissions(); assertNotNull(permissions); assertEquals(0, permissions.length); // Test that permissions are cached String[] permissions2 = ldapUser.getPermissions(); assertSame(permissions, permissions2); } public void test_getPermissions_withBaseDnOnly() { // Test when only baseDn is set
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 16.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/PreauthIntegrityService.java
} /** * Gets the selected hash algorithm. * * @return the hash algorithm */ public int getSelectedHashAlgorithm() { return selectedHashAlgorithm; } /** * Calculates hash according to SMB 3.1.1 preauth integrity specification. * * @param previousHash the previous hash in the chain * @param messageData the message data to hash
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 12.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ContainerNotAvailableExceptionTest.java
ContainerNotAvailableException exception = new ContainerNotAvailableException(cause); assertEquals("Container is not available.", exception.getMessage()); // The cause is not passed to super constructor in the implementation assertNull(exception.getCause()); assertEquals("container", exception.getComponentName()); } public void test_constructor_withNullComponentName() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
protected Set<Integer> highlightTerminalCharSet = new HashSet<>(); /** Action hook for custom processing */ protected ActionHook actionHook = new ActionHook(); /** Set of MIME types that should be displayed inline */ protected final Set<String> inlineMimeTypeSet = new HashSet<>(); /** Cache for facet responses */ protected Cache<String, FacetResponse> facetCache;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0)