Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for foboo (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/authorization/path/path_test.go

    		{"foo bar", []string{"/foo", "/bar"}, []string{"/foo", "/bar"}, nil, []string{"/", "", "/foo/", "/bar/", "/fooooo"}, false},
    		{"foo star", []string{"/foo*"}, []string{"/foo", "/foooo"}, nil, []string{"/", "", "/fo", "/bar"}, false},
    		{"star", []string{"/*"}, []string{"/", "", "/foo", "/foooo"}, nil, nil, false},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			a, err := NewAuthorizer(tt.excludedPaths)
    			if err != nil && !tt.wantErr {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 2.8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/util/MatchersTest.groovy

            and:
            !matchesRegexp(Pattern.compile("foo.*")).matches(noMatch)
    
            where:
            match     | noMatch
            "foo"     | "fo"
            "foo bar" | " foo"
            "fooo"    | "xxxx"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:16:41 UTC 2013
    - 1.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainerSpec.groovy

            configurationContainer.findAll { it.name == "foo" } as Set == [] as Set
    
            configurationContainer as List == [compile] as List
    
            when:
            configurationContainer.getByName("fooo")
    
            then:
            thrown(UnknownConfigurationException)
        }
    
        def "configures and finds"() {
            1 * domainObjectContext.identityPath("compile") >> Path.path(":build:compile")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top