Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 486 for testSA (0.57 sec)

  1. pkg/client/tests/fake_client_test.go

    )
    
    func TestFakeClientSetFiltering(t *testing.T) {
    	tc := clientsetfake.NewSimpleClientset(
    		testPod("nsA", "pod-1"),
    		testPod("nsB", "pod-2"),
    		testSA("nsA", "sa-1"),
    		testSA("nsA", "sa-2"),
    		testSA("nsB", "sa-1"),
    		testSA("nsB", "sa-2"),
    		testSA("nsB", "sa-3"),
    	)
    
    	saList1, err := tc.CoreV1().ServiceAccounts("nsA").List(context.TODO(), metav1.ListOptions{})
    	if err != nil {
    		t.Fatalf("ServiceAccounts.List: %s", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 08 17:30:21 UTC 2020
    - 5.6K bytes
    - Viewed (0)
  2. pkg/kubeapiserver/options/authentication_test.go

    		testOIDC                          *OIDCAuthenticationOptions
    		testSA                            *ServiceAccountAuthenticationOptions
    		testWebHook                       *WebHookAuthenticationOptions
    		testAuthenticationConfigFile      string
    		expectErr                         string
    		enabledFeatures, disabledFeatures []featuregate.Feature
    	}{
    		{
    			name: "test when OIDC and ServiceAccounts are nil",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  3. src/index/suffixarray/suffixarray_test.go

    			t.FailNow()
    		}
    	}
    }
    
    // testSA tests the suffix array build function on the input x.
    // It constructs the suffix array and then checks that it is correct.
    func testSA(t *testing.T, x []byte, build func([]byte) []int) bool {
    	defer func() {
    		if e := recover(); e != nil {
    			t.Logf("build %v", x)
    			panic(e)
    		}
    	}()
    	sa := build(x)
    	if len(sa) != len(x) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. test/recover.go

    	test6WithClosures()
    	test7()
    	test8()
    	test9()
    	if !interp {
    		test9reflect1()
    		test9reflect2()
    	}
    	test10()
    	if !interp {
    		test10reflect1()
    		test10reflect2()
    	}
    	test11()
    	if !interp {
    		test11reflect1()
    		test11reflect2()
    	}
    	test111()
    	test12()
    	if !interp {
    		test12reflect1()
    		test12reflect2()
    	}
    	test13()
    	if !interp {
    		test13reflect1()
    		test13reflect2()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenLocalDependencyWithGradleMetadataResolutionIntegrationTest.groovy

    }
    dependencies {
        debug 'test:a:1.2'
        release 'test:a:1.2'
    }
    """
            resolve.prepare {
                config("debug")
                config("release")
            }
    
            when:
            run("checkDebug")
    
            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module("test:a:1.2") {
                        artifact(classifier: "debug")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 12.6K bytes
    - Viewed (0)
  6. test/fixedbugs/issue15002.go

    	if err != nil {
    		panic(err)
    	}
    	// Get a slice pointing to the last byte of the good page.
    	x := b[p-one : p]
    
    	test16(x)
    	test16i(x, 0)
    	test32(x)
    	test32i(x, 0)
    	test64(x)
    	test64i(x, 0)
    }
    
    func test16(x []byte) uint16 {
    	defer func() {
    		r := recover()
    		if r == nil {
    			panic("no fault or bounds check failure happened")
    		}
    		s := fmt.Sprintf("%s", r)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/execution/DefaultBuildResumptionAnalyzerTest.java

            assertThat(result.isPresent(), is(true));
            assertThat(result.get().getRemainingProjects(), is(asList("test:B", "test:C")));
        }
    
        @Test
        void projectsFailingAfterAnotherFailedProjectAreNotExcluded() {
            MavenProject projectA = createSucceededMavenProject("A");
            MavenProject projectB = createFailedMavenProject("B");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependencyResolveIntegrationTest.groovy

            then:
            executedAndNotSkipped ":b:jar", ":c:jar"
            resolve.expectGraph {
                root(":a", "test:a:") {
                    project(":b", "test:b:") {
                        project(":c", "test:c:") {
                            project(":a", "test:a:")
                        }
                    }
                }
            }
        }
    
        @NotYetImplemented
        @Issue('GRADLE-3280')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. test/fixedbugs/issue12577.go

    		println("BUG: got", f, "want 0.0")
    		return
    	}
    }
    
    func test64(f float64) {
    	if f != 0 || math.Signbit(f) {
    		println("BUG: got", f, "want 0.0")
    		return
    	}
    }
    
    func main() {
    	if f := -x0; f != 0 || !math.Signbit(float64(f)) {
    		println("BUG: got", f, "want -0.0")
    	}
    
    	test32(-0.0)
    	test32(x0)
    	test32(x1)
    	test32(x2)
    	test32(x3)
    
    	if f := -y0; f != 0 || !math.Signbit(f) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 22:11:11 UTC 2015
    - 1011 bytes
    - Viewed (0)
  10. test/fixedbugs/issue14651.go

    )
    
    func main() {
    	test32(float32(m0000p149), f32(m0000p149))
    	test32(float32(m1000p149), f32(m1000p149))
    	test32(float32(m1001p149), f32(m1001p149))
    	test32(float32(m1011p149), f32(m1011p149))
    	test32(float32(m1100p149), f32(m1100p149))
    
    	test64(float64(m0000p1074), f64(m0000p1074))
    	test64(float64(m1000p1074), f64(m1000p1074))
    	test64(float64(m1001p1074), f64(m1001p1074))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 22 17:09:29 UTC 2016
    - 1.9K bytes
    - Viewed (0)
Back to top