Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for test_match (0.13 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/impl/SitemapsRuleTest.java

                    .singleton("sitemapsRule", SitemapsRule.class);
            sitemapsRule = container.getComponent("sitemapsRule");
        }
    
        public void test_match() {
            assertMatchTrue(getTestData1_OK());
            assertMatchTrue(getTestData2_OK());
            assertMatchTrue(getTestData3_OK());
            assertMatchTrue(getTestData4_OK());
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  2. tests/test_path.py

    Sebastián Ramírez <******@****.***> 1713469257 -0500
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/calibration/representative_dataset_test.cc

                      .tfrecord_file_path(),
                  StrEq("test_path"));
    }
    
    TEST(CreateRepresentativeDatasetFileMapTest, ConfigWithExplicitSignatureKey) {
      std::vector<RepresentativeDatasetConfig> representative_dataset_configs;
    
      RepresentativeDatasetConfig config{};
      config.set_signature_key("test_signature_key");
      *(config.mutable_tf_record()->mutable_path()) = "test_path";
      representative_dataset_configs.push_back(config);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 29 04:53:21 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. src/regexp/testdata/testregex.c

    #define TEST_IGNORE_ERROR	0x02000000
    #define TEST_IGNORE_OVER	0x04000000
    #define TEST_IGNORE_POSITION	0x08000000
    
    #define TEST_CATCH		0x10000000
    #define TEST_VERBOSE		0x20000000
    
    #define TEST_DECOMP		0x40000000
    
    #define TEST_GLOBAL		(TEST_ACTUAL|TEST_AND|TEST_BASELINE|TEST_CATCH|TEST_FAIL|TEST_IGNORE_ERROR|TEST_IGNORE_OVER|TEST_IGNORE_POSITION|TEST_OR|TEST_PASS|TEST_SUMMARY|TEST_VERBOSE)
    
    #ifdef REG_DISCIPLINE
    
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  5. src/cmd/distpack/archive_test.go

    	{"**/a", "x/a", true},
    	{"**/a", "x/a/b", false},
    	{"**/a", "x/y/z/a", true},
    	{"**/a", "x/y/z/a/b", false},
    
    	{"go/pkg/tool/*/compile", "go/pkg/tool/darwin_amd64/compile", true},
    }
    
    func TestAmatch(t *testing.T) {
    	for _, tt := range amatchTests {
    		ok, err := amatch(tt.pattern, tt.name)
    		if ok != tt.ok || err != nil {
    			t.Errorf("amatch(%q, %q) = %v, %v, want %v, nil", tt.pattern, tt.name, ok, err, tt.ok)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 21:29:13 UTC 2023
    - 938 bytes
    - Viewed (0)
  6. tests/test_repeated_parameter_alias.py

    ):
        return {"path": path, "query": query}
    
    
    client = TestClient(app)
    
    
    def test_get_parameters():
        response = client.get("/test_path", params={"repeated_alias": "test_query"})
        assert response.status_code == 200, response.text
        assert response.json() == {"path": "test_path", "query": "test_query"}
    
    
    def test_openapi_schema():
        response = client.get("/openapi.json")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  7. pilot/pkg/simulation/traffic.go

    		}
    	}
    	// prefix match
    	var bestMatch *route.VirtualHost
    	longest := 0
    	for _, vh := range rc.VirtualHosts {
    		for _, d := range vh.Domains {
    			if d[0] != '*' {
    				continue
    			}
    			if len(host) >= len(d) && strings.HasSuffix(host, d[1:]) && len(d) > longest {
    				bestMatch = vh
    				longest = len(d)
    			}
    		}
    	}
    	if bestMatch != nil {
    		return bestMatch
    	}
    	// Suffix match
    	longest = 0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  8. pkg/registry/storage/csistoragecapacity/storage/storage_test.go

    	test := genericregistrytest.New(t, storage.Store)
    	test.TestList(validNewCSIStorageCapacity("foo"))
    }
    
    func TestWatch(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store)
    	test.TestWatch(
    		validNewCSIStorageCapacity("foo"),
    		// matching labels
    		[]labels.Set{},
    		// not matching labels
    		[]labels.Set{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 03 19:54:14 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  9. pkg/registry/storage/volumeattributesclass/storage/storage_test.go

    	test.TestList(validNewVolumeAttributesClass("foo"))
    }
    
    func TestWatch(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store).ClusterScope()
    	test.TestWatch(
    		validNewVolumeAttributesClass("foo"),
    		// matching labels
    		[]labels.Set{},
    		// not matching labels
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:18:56 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. pkg/registry/core/limitrange/storage/storage_test.go

    	test := genericregistrytest.New(t, storage.Store)
    	test.TestList(validNewLimitRange())
    }
    
    func TestWatch(t *testing.T) {
    	storage, server := newStorage(t)
    	defer server.Terminate(t)
    	defer storage.Store.DestroyFunc()
    	test := genericregistrytest.New(t, storage.Store)
    	test.TestWatch(
    		validNewLimitRange(),
    		// matching labels
    		[]labels.Set{},
    		// not matching labels
    		[]labels.Set{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 13 16:56:29 UTC 2019
    - 4.6K bytes
    - Viewed (0)
Back to top