- Sort Score
- Result 10 results
- Languages All
Results 121 - 130 of 3,490 for eravate (0.07 sec)
-
docs/smb3-features/04-directory-leasing-design.md
public class DirectoryCacheEntry { private final String directoryPath; private final Smb2LeaseKey leaseKey; private final long createTime; private volatile long lastUpdateTime; private volatile long lastAccessTime; // Cached directory contents private final ConcurrentHashMap<String, FileInfo> children; private final ReadWriteLock lock; // Cache metadata
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupRequest.java
* * @author mbechler * */ public class Smb2SessionSetupRequest extends ServerMessageBlock2Request<Smb2SessionSetupResponse> { private final byte[] token; private final int capabilities; private boolean sessionBinding; private final long previousSessionId; private final int securityMode; /** * Constructs a SMB2 session setup request with the specified parameters * * @param context
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/ArtifactRepositoryPolicy.java
public static final String CHECKSUM_POLICY_IGNORE = "ignore"; public static final String DEFAULT_CHECKSUM_POLICY = CHECKSUM_POLICY_FAIL; private boolean enabled; private String updatePolicy; private String checksumPolicy; public ArtifactRepositoryPolicy() { this(true, null, null); } public ArtifactRepositoryPolicy(ArtifactRepositoryPolicy policy) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.9K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcSamrOpenDomainTest.java
import org.mockito.Mock; import org.mockito.MockitoAnnotations; import jcifs.dcerpc.rpc; class MsrpcSamrOpenDomainTest { @Mock private SamrPolicyHandle mockHandle; @Mock private rpc.sid_t mockSid; @Mock private SamrDomainHandle mockDomainHandle; @BeforeEach void setUp() { MockitoAnnotations.openMocks(this); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/MultiChannelManager.java
*/ public static class ChannelInfo { private final String channelId; private final InetAddress localAddress; private final InetAddress remoteAddress; private final NetworkInterface networkInterface; private final SmbTransportImpl transport; private final AtomicInteger activeConnections = new AtomicInteger(0); private volatile boolean isHealthy = true;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0) -
src/main/java/jcifs/util/AuthenticationRateLimiter.java
public class AuthenticationRateLimiter implements AutoCloseable { private static final Logger log = LoggerFactory.getLogger(AuthenticationRateLimiter.class); // Rate limiting configuration private final int maxAttemptsPerAccount; private final int maxAttemptsPerIp; private final int maxGlobalAttemptsPerMinute; private final Duration lockoutDuration; private final Duration cleanupInterval; // Tracking maps
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
*/ public static class PoolHealthMetrics { private final int activeConnections; private final int nonPooledConnections; private final int trackedConnections; private final int maxPoolSize; private final long totalHealthChecks; private final long failedHealthChecks; private final long connectionsRemoved; private final int uniqueEndpoints;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 33.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CurlHelperTest.java
} // Helper methods private void setupMockConfig(String fesenUrl, String username, String password) { setupMockConfig(fesenUrl, username, password, ""); } private void setupMockConfig(String fesenUrl, String username, String password, String certificateAuthorities) { ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 10.1K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/WebSocketWriterTest.kt
) } } private fun assertData(hex: String) { assertData(hex.decodeHex()) } private fun assertData(expected: ByteString) { val actual = data.readByteString(Math.min(expected.size.toLong(), data.size)) assertThat(actual).isEqualTo(expected) } companion object { private fun binaryData(length: Int): ByteString {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 9.3K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/Restriction.java
package org.apache.maven.artifact.versioning; /** * Describes a restriction in versioning. * */ public class Restriction { private final ArtifactVersion lowerBound; private final boolean lowerBoundInclusive; private final ArtifactVersion upperBound; private final boolean upperBoundInclusive; public static final Restriction EVERYTHING = new Restriction(null, false, null, false);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 4.3K bytes - Viewed (0)