Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 320 for Romadin (0.12 sec)

  1. src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java

            }
    
            @Test
            @DisplayName("Test full UNC path properties")
            void testFullUNCPathProperties() {
                testBlock.setFullUNCPath("DOMAIN", "SERVER", "\\\\server\\share\\path");
    
                assertEquals("DOMAIN", testBlock.getDomain());
                assertEquals("SERVER", testBlock.getServer());
                assertEquals("\\\\server\\share\\path", testBlock.getFullUNCPath());
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 36.2K bytes
    - Viewed (0)
  2. cmd/bucket-handlers.go

    					//
    					// Additionally also check if domain is updated/missing with more
    					// entries, if that is the case we should update the
    					// new domain entries as well.
    					continue
    				}
    
    				// if domain IPs intersect then it won't be an empty set.
    				// such an intersection means that bucket exists on etcd.
    				// but if we do see a difference with local domain IPs with
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 63.9K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java

            assertNull(request.getFullUNCPath());
            assertNull(request.getServer());
            assertNull(request.getDomain());
    
            request.setFullUNCPath("DOMAIN", "SERVER", "\\\\SERVER\\share\\file.txt");
    
            assertEquals("DOMAIN", request.getDomain());
            assertEquals("SERVER", request.getServer());
            assertEquals("\\\\SERVER\\share\\file.txt", request.getFullUNCPath());
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  4. src/test/java/jcifs/internal/smb1/com/ServerDataTest.java

            // Test with null
            serverData.oemDomainName = null;
            assertNull(serverData.oemDomainName);
    
            // Test with special characters
            serverData.oemDomainName = "DOMAIN-01.LOCAL";
            assertEquals("DOMAIN-01.LOCAL", serverData.oemDomainName);
    
            // Test with Unicode characters
            serverData.oemDomainName = "ドメイン";
            assertEquals("ドメイン", serverData.oemDomainName);
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17K bytes
    - Viewed (0)
  5. src/test/java/jcifs/NetbiosNameTest.java

            // When
            int type = mockNetbiosName.getNameType();
    
            // Then
            assertEquals(browserType, type);
        }
    
        @Test
        @DisplayName("Should handle domain master browser")
        void testDomainMasterBrowser() {
            // Given
            int domainMasterType = 0x1B;
            when(mockNetbiosName.getNameType()).thenReturn(domainMasterType);
    
            // When
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8K bytes
    - Viewed (0)
  6. src/test/java/jcifs/util/StringsTest.java

            @DisplayName("maskSecretValue should mask SMB URLs containing credentials")
            @CsvSource({ "'smb://user:password@server/share', 'smb://user:******@server/share'",
                    "'smb://domain\\user:secret@host/path', 'smb://domain\\user:******@host/path'",
                    "'smb2://admin:admin123@192.168.1.1/folder', 'smb2://admin:******@192.168.1.1/folder'",
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  7. docs/changelogs/upgrading_to_okhttp_4.md

     * **Challenge**: authParams, charset, realm, scheme
     * **CipherSuite**: javaName
     * **ConnectionSpec**: cipherSuites, supportsTlsExtensions, tlsVersions
     * **Cookie**: domain, expiresAt, hostOnly, httpOnly, name, path, persistent, value
     * **Dispatcher**: executorService
     * **FormBody**: size
     * **Handshake**: cipherSuite, localCertificates, localPrincipal, peerCertificates, peerPrincipal,
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 16:58:16 UTC 2022
    - 10.9K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/service/StemmerOverrideService.java

     * dictionaries. Stemmer override dictionaries allow administrators to define
     * custom stemming rules that override the default stemming behavior for
     * specific terms, improving search accuracy for domain-specific vocabularies.
     */
    public class StemmerOverrideService {
    
        /** Dictionary manager for accessing dictionary files. */
        @Resource
        protected DictionaryManager dictionaryManager;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  9. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Connection.kt

     * to a remote host. Newer TLS options are quite useful:
     *
     *  * Server Name Indication (SNI) enables one IP address to negotiate secure connections for
     *    multiple domain names.
     *
     *  * Application Layer Protocol Negotiation (ALPN) enables the HTTPS port (443) to be used to
     *    negotiate HTTP/2.
     *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. docs/changelogs/changelog_3x.md

     *  Fix: Do not honor cookies set on a public domain. Previously a malicious site could inject
        cookies on top-level domains like `co.uk` because our cookie parser didn't honor the [public
        suffix][public_suffix] list. Alongside this fix is a new API, `HttpUrl.topPrivateDomain()`,
        which returns the privately domain name if the URL has one.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
Back to top