Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 100 for Blah (0.04 sec)

  1. pkg/proxy/servicechangetracker_test.go

    			svc.Spec.Type = v1.ServiceTypeExternalName
    			svc.Spec.ClusterIP = "172.16.55.4" // Should be ignored
    			svc.Spec.ExternalName = "foo2.bar.com"
    			svc.Spec.Ports = addTestPort(svc.Spec.Ports, "blah", "UDP", 1235, 5321, 0)
    		}),
    	)
    
    	result := fp.svcPortMap.Update(fp.serviceChanges)
    	if len(fp.svcPortMap) != 0 {
    		t.Errorf("expected service map length 0, got %v", fp.svcPortMap)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go

    		"groupless root GET missing storage":          {"GET", "/" + grouplessPrefix + "/" + grouplessGroupVersion.Version + "/blah", http.StatusNotFound},
    		"groupless root GET with extra segment":       {"GET", "/" + grouplessPrefix + "/" + grouplessGroupVersion.Version + "/simpleroots/bar/baz", http.StatusNotFound},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 20:15:22 UTC 2023
    - 158.7K bytes
    - Viewed (0)
  3. src/cmd/vet/testdata/print/print.go

    	fmt.Printf("%*% x", 0.22)                   // ERROR "Printf format %\*% uses non-int 0.22 as argument of \*"
    	fmt.Printf("%q %q", multi()...)             // ok
    	fmt.Printf("%#q", `blah`)                   // ok
    	// printf("now is the time", "buddy")          // no error "printf call has arguments but no formatting directives"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  4. pkg/kube/inject/inject_test.go

    	}
    }
    
    func podWithEnv(envCount int) *corev1.Pod {
    	envs := []corev1.EnvVar{}
    	for i := 0; i < envCount; i++ {
    		envs = append(envs, corev1.EnvVar{
    			Name:  fmt.Sprintf("something-%d", i),
    			Value: "blah",
    		})
    	}
    	return &corev1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "foo",
    			Namespace: "bar",
    		},
    		Spec: corev1.PodSpec{
    			Containers: []corev1.Container{{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. pkg/controller/endpoint/endpoints_controller_test.go

    	defer testServer.Close()
    	tCtx := ktesting.Init(t)
    	endpoints := newController(tCtx, testServer.URL, 0*time.Second)
    	addPods(endpoints.podStore, ns, 3, 2, 0, ipv4only)
    	addPods(endpoints.podStore, "blah", 5, 2, 0, ipv4only) // make sure these aren't found!
    
    	endpoints.serviceStore.Add(&v1.Service{
    		ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: ns},
    		Spec: v1.ServiceSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // or "pattern", whichever you prefer to think.
    
    TEST_P(FooTest, DoesBlah) {
      // Inside a test, access the test parameter with the GetParam() method
      // of the TestWithParam<T> class:
      EXPECT_TRUE(foo.Blah(GetParam()));
      ...
    }
    
    TEST_P(FooTest, HasBlahBlah) {
      ...
    }
    
    // Finally, you can use INSTANTIATE_TEST_CASE_P to instantiate the test
    // case with any set of parameters you want. Google Test defines a number
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  7. src/archive/tar/reader_test.go

    		wantMap:  sparseDatas{{0, 0}, {1, 1}},
    		wantSize: 01234,
    	}, {
    		input: makeInput(FormatGNU, "1234",
    			append(makeSparseStrings(sparseDatas{{0, 0}, {1, 1}}), []string{"", "blah"}...)...),
    		wantMap:  sparseDatas{{0, 0}, {1, 1}},
    		wantSize: 01234,
    	}, {
    		input: makeInput(FormatGNU, "3333",
    			makeSparseStrings(sparseDatas{{0, 1}, {2, 1}, {4, 1}, {6, 1}})...),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 21 21:14:38 UTC 2022
    - 47.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    // or "pattern", whichever you prefer to think.
    
    TEST_P(FooTest, DoesBlah) {
      // Inside a test, access the test parameter with the GetParam() method
      // of the TestWithParam<T> class:
      EXPECT_TRUE(foo.Blah(GetParam()));
      ...
    }
    
    TEST_P(FooTest, HasBlahBlah) {
      ...
    }
    
    // Finally, you can use INSTANTIATE_TEST_CASE_P to instantiate the test
    // case with any set of parameters you want. Google Test defines a number
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  9. pkg/controller/replicaset/replica_set_test.go

    						},
    					},
    					RestartPolicy: v1.RestartPolicyAlways,
    					DNSPolicy:     v1.DNSDefault,
    					NodeSelector: map[string]string{
    						"baz": "blah",
    					},
    				},
    			},
    		},
    	}
    	return rs
    }
    
    // create a pod with the given phase for the given rs (same selectors and namespace)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  10. pkg/kubelet/eviction/helpers_test.go

    		}
    	}
    }
    
    func TestParsePercentage(t *testing.T) {
    	testCases := map[string]struct {
    		hasError bool
    		value    float32
    	}{
    		"blah": {
    			hasError: true,
    		},
    		"25.5%": {
    			value: 0.255,
    		},
    		"foo%": {
    			hasError: true,
    		},
    		"12%345": {
    			hasError: true,
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 23:14:12 UTC 2024
    - 106.7K bytes
    - Viewed (0)
Back to top