Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for doesitmatch (0.14 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    	matchingParamName := "replicas-test.example.com"
    	matchingNamespace := "mynamespace"
    	nonMatchingNamespace := "othernamespace"
    
    	matchingLabels := labels.Set{"doesitmatch": "yes"}
    	nonmatchingLabels := labels.Set{"doesitmatch": "no"}
    	otherNonmatchingLabels := labels.Set{"notaffiliated": "no"}
    
    	if paramIsClusterScoped {
    		policy.Spec.ParamKind = &admissionregistrationv1.ParamKind{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/util/internal/NameMatcherTest.groovy

        }
    
        def "does not select items when no matches"() {
            expect:
            doesNotMatch("name")
            doesNotMatch("name", "other")
            doesNotMatch("name", "na")
            doesNotMatch("sN", "otherName")
            doesNotMatch("sA", "someThing")
            doesNotMatch("soN", "saN")
            doesNotMatch("soN", "saName")
        }
    
        def "does not select items when multiple camel case matches"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  3. pkg/config/host/name_test.go

    		{"*", "", true},
    		{"*.com", "*.foo.com", true},
    		{"foo.com", "*.foo.com", false},
    		{"*.foo.bar.baz", "baz", false},
    	}
    	for n := 0; n < b.N; n++ {
    		for _, test := range tests {
    			doesMatch := test.a.Matches(test.z)
    			if doesMatch != test.matches {
    				b.Fatalf("does not match")
    			}
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 29 15:57:39 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  4. src/crypto/x509/verify_test.go

    		for _, expectedChain := range test.expectedChains {
    			if doesMatch(expectedChain, chain) {
    				nMatched++
    			}
    		}
    		// Allow additional unknown chains if systemLax is set
    		if nMatched == 0 && test.systemLax == false || nMatched > 1 {
    			t.Errorf("Got %v matches for chain %v", nMatched, chainToDebugString(chain))
    			for _, expectedChain := range test.expectedChains {
    				if doesMatch(expectedChain, chain) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/primitives/DoublesTest.java

        "NaNd",
        "InfinityF"
      };
    
      @GwtIncompatible // Doubles.tryParse
      public void testTryParseFailures() {
        for (String badInput : BAD_TRY_PARSE_INPUTS) {
          assertThat(badInput)
              .doesNotMatch(
                  Pattern.compile(
                      Doubles.FLOATING_POINT_PATTERN.pattern(),
                      Doubles.FLOATING_POINT_PATTERN.flags()));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 31.5K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/primitives/DoublesTest.java

        "NaNd",
        "InfinityF"
      };
    
      @GwtIncompatible // Doubles.tryParse
      public void testTryParseFailures() {
        for (String badInput : BAD_TRY_PARSE_INPUTS) {
          assertThat(badInput)
              .doesNotMatch(
                  Pattern.compile(
                      Doubles.FLOATING_POINT_PATTERN.pattern(),
                      Doubles.FLOATING_POINT_PATTERN.flags()));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 29 15:43:06 UTC 2024
    - 31.5K bytes
    - Viewed (0)
Back to top