- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 298 for detection (0.05 sec)
-
android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java
} }, /** * Disables cycle detection. This option causes the factory to return unmodified lock * implementations provided by the JDK, and is provided to allow applications to easily * parameterize when cycle detection is enabled. * * <p>Note that locks created by a factory with this policy will not participate the * cycle detection performed by locks created by other factories. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 18 15:05:43 UTC 2025 - 35.9K bytes - Viewed (0) -
src/main/java/jcifs/util/ResourceManager.java
/** * Centralized resource management for preventing resource leaks. * Tracks all AutoCloseable resources and ensures proper cleanup. * * Features: * - Automatic resource cleanup with weak references * - Resource leak detection * - Resource usage monitoring * - Periodic cleanup of abandoned resources * - Detailed resource tracking and reporting */ public class ResourceManager {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.2K bytes - Viewed (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
- [ ] Create channel binding hash calculation - [ ] Implement channel establishment protocol - [ ] Add request distribution algorithm - [ ] Create channel synchronization mechanism - [ ] Implement channel failure detection - [ ] Add automatic channel recovery - [ ] Create channel performance monitoring #### 3.3 Integration Points - Modify `SmbTransportPool` for multiple connections per session
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/NetworkInterfaceInfo.java
this.rssCapable = checkRSSCapability(); if (rssCapable) { this.capability |= Smb2ChannelCapabilities.NETWORK_INTERFACE_CAP_RSS; } // RDMA capability would require OS-specific detection this.rdmaCapable = false; } /** * Get the interface index * * @return interface index */ public int getInterfaceIndex() { return interfaceIndex; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/jcifs/spnego/NegTokenInit.java
public static final int DELEGATION = 0x80; /** * Context flag for mutual authentication requirement */ public static final int MUTUAL_AUTHENTICATION = 0x40; /** * Context flag for replay detection capability */ public static final int REPLAY_DETECTION = 0x20; /** * Context flag for sequence checking capability */ public static final int SEQUENCE_CHECKING = 0x10; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/jcifs/SmbResourceTest.java
boolean canWrite = mockResource.canWrite(); // Then assertTrue(exists, "Should support SMB existence checks"); assertTrue(isFile, "Should support SMB file type detection"); assertTrue(canRead, "Should support SMB read permission checks"); assertTrue(canWrite, "Should support SMB write permission checks"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 35K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportInternalTest.java
SmbSession result = transport.getSmbSession(ctx, host, domain); assertSame(session, result); verify(transport).getSmbSession(eq(ctx), eq(host), eq(domain)); } // SMB2 detection: true/false and exception path @Test @DisplayName("isSMB2 returns true/false and can throw") void isSMB2_variants() throws Exception { when(transport.isSMB2()).thenReturn(true, false);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
u = StringUtil.EMPTY; } } return u; } /** * Decodes a URL as a name using appropriate character encoding. * Handles encoding detection from parent URLs and configuration settings. * * @param url the URL to decode * @param escapePlus whether to escape plus signs before decoding
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 13.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/NtlmPasswordAuthenticatorTest.java
*/ @Test public void testAuthTypeGuessing() { // Test guest detection NtlmPasswordAuthenticator guestAuth = new NtlmPasswordAuthenticator("guest", "anypass"); assertTrue(guestAuth.isGuest()); assertFalse(guestAuth.isAnonymous()); // Test anonymous detection NtlmPasswordAuthenticator anonAuth = new NtlmPasswordAuthenticator("", new char[0]);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 23.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/api/WebApiRequestTest.java
webApiRequest = new WebApiRequest(mockRequest, customPath); assertEquals(originalPath, webApiRequest.getServletPath()); } // Test edge cases for SAStruts.method detection public void test_getServletPath_withSAStrutsMethodSubstring_returnsSuperPath() { final String originalPath = "/original/path"; final String customPath = "/api/v1/search";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.5K bytes - Viewed (0)