Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,083 for match3 (0.03 sec)

  1. okhttp/src/jvmTest/kotlin/okhttp3/CookieTest.kt

        val cookie = parse(url, "a=b; domain=example.com")
        assertThat(cookie!!.matches("http://example.com".toHttpUrl())).isTrue()
        assertThat(cookie.matches("http://www.example.com".toHttpUrl())).isTrue()
        assertThat(cookie.matches("http://square.com".toHttpUrl())).isFalse()
      }
    
      /** If no domain is present, match only the origin domain.  */
      @Test fun domainMatchesNoDomain() {
        val cookie = parse(url, "a=b")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/PrunedTagTest.java

            assertTrue(tagWithIdAndCss.matches(nodeWithBothIdAndClass));
    
            // Node with correct id but different class should still match (id takes precedence)
            MockNode nodeWithCorrectIdWrongClass = new MockNode("div");
            nodeWithCorrectIdWrongClass.addAttribute("id", "main");
            nodeWithCorrectIdWrongClass.addAttribute("class", "other");
            assertTrue(tagWithIdAndCss.matches(nodeWithCorrectIdWrongClass));
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 07:34:10 UTC 2025
    - 21K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/ParameterUtil.java

                            if (pos < line.length()) {
                                String data = line.substring(pos + 1).trim();
                                if (properyPattern.matcher(key).matches() && data.startsWith(CIPHER_PREFIX)) {
                                    data = cipher.decrypt(data.substring(CIPHER_PREFIX.length()));
                                }
                                paramMap.put(key, data);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  4. cmd/batch-replicate.go

    	return t == BatchJobReplicateResourceMinIO
    }
    
    // Different types of batch jobs..
    const (
    	BatchJobReplicateResourceMinIO BatchJobReplicateResourceType = "minio"
    	BatchJobReplicateResourceS3    BatchJobReplicateResourceType = "s3"
    
    	// add future targets
    )
    
    // BatchJobReplicateCredentials access credentials for batch replication it may
    // be either for target or source.
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Aug 01 12:53:30 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  5. cmd/batch-replicate_gen.go

    jiuker <******@****.***> 1722516810 +0800
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Aug 01 12:53:30 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  6. cmd/batch-rotate_gen_test.go

    Krishnan Parthasarathi <******@****.***> 1693333643 -0700
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 29 18:27:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  7. cmd/batch-expire_gen.go

    jiuker <******@****.***> 1722516810 +0800
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Aug 01 12:53:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. cmd/batch-handlers_gen_test.go

    jiuker <******@****.***> 1722516810 +0800
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Aug 01 12:53:30 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. cmd/batch-replicate_gen_test.go

    Krishnan Parthasarathi <******@****.***> 1693333643 -0700
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 29 18:27:23 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb1/smb1/SmbExceptionTest.java

            } else {
                // Positive values not in DOS_ERROR_CODES map to NT_STATUS_UNSUCCESSFUL
                expected = NtStatus.NT_STATUS_UNSUCCESSFUL;
            }
            assertEquals(expected, ex.getNtStatus(), "Status should match mapping or fallback");
        }
    
        /**
         * Verify that root causes are stored and returned correctly.
         */
        @Test
        @DisplayName("Root cause propagation")
        void testRootCausePropagation() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.5K bytes
    - Viewed (0)
Back to top