Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 98 for no_match (0.12 sec)

  1. src/io/fs/glob_test.go

    			continue
    		}
    		if !slices.Contains(matches, tt.result) {
    			t.Errorf("Glob(%#q) = %#v want %v", tt.pattern, matches, tt.result)
    		}
    	}
    	for _, pattern := range []string{"no_match", "../*/no_match", `\*`} {
    		matches, err := Glob(os.DirFS("."), pattern)
    		if err != nil {
    			t.Errorf("Glob error for %q: %s", pattern, err)
    			continue
    		}
    		if len(matches) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:36:52 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/GraphVariantSelector.java

                        found = true;
                        break;
                    }
                }
                if (!found) {
                    return MatchResult.NO_MATCH;
                }
            }
            boolean exactMatch = explicitRequestedCapabilities.size() == providerCapabilitiesSet.size();
            return exactMatch ? MatchResult.EXACT_MATCH : MatchResult.MATCHES_ALL;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. src/path/filepath/match_test.go

    			continue
    		}
    		if !slices.Contains(matches, result) {
    			t.Errorf("Glob(%#q) = %#v want %v", pattern, matches, result)
    		}
    	}
    	for _, pattern := range []string{"no_match", "../*/no_match"} {
    		matches, err := Glob(pattern)
    		if err != nil {
    			t.Errorf("Glob error for %q: %s", pattern, err)
    			continue
    		}
    		if len(matches) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/MultipleCandidateMatcher.java

            int matchLength = 0;
    
            for (int a = 0; a < requestedAttributes.size(); a++) {
                MatchResult result = recordAndMatchCandidateValue(c, a);
                if (result == MatchResult.NO_MATCH) {
                    compatible.clear(c);
                    return;
                }
                if (result == MatchResult.MATCH) {
                    matchLength++;
                }
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.4K bytes
    - Viewed (0)
  5. src/regexp/testdata/testregex.c

    	}
    }
    
    static void
    matchprint(regmatch_t* match, int nmatch, int nsub, char* ans, unsigned long test)
    {
    	int	i;
    
    	for (; nmatch > nsub + 1; nmatch--)
    		if ((match[nmatch-1].rm_so != -1 || match[nmatch-1].rm_eo != -1) && (!(test & TEST_IGNORE_POSITION) || match[nmatch-1].rm_so >= 0 && match[nmatch-1].rm_eo >= 0))
    			break;
    	for (i = 0; i < nmatch; i++)
    	{
    		printf("(");
    		matchoffprint(match[i].rm_so);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  6. pilot/test/xdstest/test.go

    		return true
    	}
    	switch r := predicate.Rule.(type) {
    	case *listener.ListenerFilterChainMatchPredicate_NotMatch:
    		return !EvaluateListenerFilterPredicates(r.NotMatch, port)
    	case *listener.ListenerFilterChainMatchPredicate_OrMatch:
    		matches := false
    		for _, r := range r.OrMatch.Rules {
    			matches = matches || EvaluateListenerFilterPredicates(r, port)
    		}
    		return matches
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 29 21:47:46 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  7. src/regexp/testdata/repetition.dat

    #	NOMATCH
    #	(0,.)\((\(.\),\(.\))(?,?)(\2,\3)\)*
    #	(0,.)\((\(.\),\(.\))(\2,\3)(?,?)\)*
    # i.e., each 3-tuple has two identical elements and one (?,?)
    
    E	((..)|(.))				NULL		NOMATCH
    E	((..)|(.))((..)|(.))			NULL		NOMATCH
    E	((..)|(.))((..)|(.))((..)|(.))		NULL		NOMATCH
    
    E	((..)|(.)){1}				NULL		NOMATCH
    E	((..)|(.)){2}				NULL		NOMATCH
    E	((..)|(.)){3}				NULL		NOMATCH
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 6.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/predicates/rules/rules_test.go

    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/admission"
    )
    
    type ruleTest struct {
    	rule    adreg.RuleWithOperations
    	match   []admission.Attributes
    	noMatch []admission.Attributes
    }
    type tests map[string]ruleTest
    
    func a(group, version, resource, subresource, name string, operation admission.Operation, operationOptions runtime.Object) admission.Attributes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 25 23:28:16 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/RegExpNameMapperTest.java

        }
    
        @Test
        public void testRenameNoMatch() {
            RegExpNameMapper mapper = new RegExpNameMapper("(.+).java", "$1Test.java");
            String noMatch = "NoMatch";
            assertEquals(noMatch, mapper.transform(noMatch));
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:00:51 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_fuzz_run.txt

    ! stdout 'no tests to run'
    
    # Tests where -run doesn't match any seed corpora.
    
    go test -run FuzzFoo/nomatch
    stdout ok
    
    go test -run /nomatch
    stdout ok
    
    go test -v -run FuzzFoo/nomatch
    stdout '=== RUN   FuzzFoo'
    stdout '--- PASS: FuzzFoo'
    stdout ok
    ! stdout 'no tests to run'
    
    go test -v -run /nomatch
    stdout '=== RUN   FuzzFoo'
    stdout '--- PASS: FuzzFoo'
    stdout ok
    ! stdout 'no tests to run'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 20:43:02 UTC 2021
    - 3K bytes
    - Viewed (0)
Back to top