Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for alfa (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/proxy/proxy_test.go

    			}
    		}
    
    		clusterURL, err := ResolveCluster(serviceLister, "one", "alfa", 443)
    		check("cluster", test.clusterMode, clusterURL, err)
    
    		endpointURL, err := ResolveEndpoint(serviceLister, endpointLister, "one", "alfa", 443)
    		check("endpoint", test.endpointMode, endpointURL, err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:27 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/request/headerrequest/requestheader_test.go

    			requestHeaders: http.Header{
    				"X-Remote-User":         {"Bob"},
    				"X-Remote-Group-1":      {"one-a", "one-b"},
    				"X-Remote-Group-2":      {"two-a", "two-b"},
    				"X-Remote-extra-1-key1": {"alfa", "bravo"},
    				"X-Remote-Extra-1-Key2": {"charlie", "delta"},
    				"X-Remote-Extra-1-":     {"india", "juliet"},
    				"X-Remote-extra-2-":     {"kilo", "lima"},
    				"X-Remote-extra-2-Key1": {"echo", "foxtrot"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authentication/request/union/unionauth_test.go

    )
    
    type mockAuthRequestHandler struct {
    	returnUser      user.Info
    	isAuthenticated bool
    	err             error
    }
    
    var (
    	user1 = &user.DefaultInfo{Name: "fresh_ferret", UID: "alfa"}
    	user2 = &user.DefaultInfo{Name: "elegant_sheep", UID: "bravo"}
    )
    
    func (mock *mockAuthRequestHandler) AuthenticateRequest(req *http.Request) (*authenticator.Response, bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 22 17:16:59 UTC 2018
    - 5.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/authentication/token/union/unionauth_test.go

    )
    
    type mockAuthRequestHandler struct {
    	returnUser      user.Info
    	isAuthenticated bool
    	err             error
    }
    
    var (
    	user1 = &user.DefaultInfo{Name: "fresh_ferret", UID: "alfa"}
    	user2 = &user.DefaultInfo{Name: "elegant_sheep", UID: "bravo"}
    )
    
    func (mock *mockAuthRequestHandler) AuthenticateToken(ctx context.Context, token string) (*authenticator.Response, bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 22 17:16:59 UTC 2018
    - 5K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/ro/stopwords.txt

    acea
    aceasta
    această
    aceea
    acei
    aceia
    acel
    acela
    acele
    acelea
    acest
    acesta
    aceste
    acestea
    aceşti
    aceştia
    acolo
    acum
    ai
    aia
    aibă
    aici
    al
    ăla
    ale
    alea
    ălea
    altceva
    altcineva
    am
    ar
    are
    aş
    aşadar
    asemenea
    asta
    ăsta
    astăzi
    astea
    ăstea
    ăştia
    asupra
    aţi
    au
    avea
    avem
    aveţi
    azi
    bine
    bucur
    bună
    ca
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  6. platforms/software/platform-base/src/test/groovy/org/gradle/model/internal/core/DomainObjectCollectionBackedModelMapTest.groovy

            when:
            modelMap.create("alma")
    
            then:
            1 * instantiator.create("alma", SomeType) >>  { new SomeType(name: "alma") }
            1 * backingCollection.add({ item -> item.name == "alma" })
            1 * backingCollection.iterator() >> { Collections.emptyIterator() }
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 00:10:35 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. testing/public-api-tests/src/integTest/groovy/org/gradle/api/PublicApiIntegrationTest.groovy

                    @TaskAction
                    void customAction() {
                        println("Hello from custom task")
                        println("- mapValues['alma'] = \${mapValues['alma']}")
                    }
                }
            """
    
            expect:
            succeeds(":compileGroovy")
        }
    
        def "can compile Kotlin code against public API"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 08:43:08 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskOutputsTest.groovy

        def "cannot register output file with same property name"() {
            outputs.file("a").withPropertyName("alma")
            outputs.file("b").withPropertyName("alma")
            when:
            outputs.fileProperties
            then:
            def ex = thrown IllegalArgumentException
            ex.message == "Multiple output file properties with name 'alma'"
        }
    
        def "can register unnamed output files"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 15 21:46:24 UTC 2022
    - 8.4K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskInputsTest.groovy

            inputs.files.files == files(inputFilePath)
        }
    
        def "cannot register input file with same property name"() {
            inputs.file("a").withPropertyName("alma")
            inputs.file("b").withPropertyName("alma")
            def visitor = new GetInputFilesVisitor(task.toString(), fileCollectionFactory)
            when:
            TaskPropertyUtils.visitProperties(walker, task, visitor)
            visitor.getFileProperties()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 16 20:09:26 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  10. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/redirector/TestOutputRedirectorTest.groovy

            f.outputOwner = "5"
    
            when: f.onOutput("ala")
    
            then:
            1 * processor.output("5", { DefaultTestOutputEvent e ->
                e.destination == TestOutputEvent.Destination.StdErr
                e.message == "ala"
            })
            0 * _
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top