Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 60 for foo_ns (0.12 sec)

  1. pkg/apis/networking/validation/validation_test.go

    			ingressClass: makeValidIngressClass("test123", "foo.co/bar",
    				setParams(makeIngressClassParams(nil, "foo", "bar", utilpointer.String("Namespace"), utilpointer.String("foo_ns"))),
    			),
    			expectedErrs: field.ErrorList{field.Invalid(field.NewPath("spec.parameters.namespace"), "foo_ns",
    				"a lowercase RFC 1123 label must consist of lower case alphanumeric characters or '-',"+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 73.3K bytes
    - Viewed (0)
  2. pkg/util/taints/taints_test.go

    				{
    					Key:    "foo_2",
    					Effect: v1.TaintEffectNoSchedule,
    				},
    				{
    					Key:    "foo_3",
    					Effect: v1.TaintEffectNoSchedule,
    				},
    			},
    			expectedResult: "foo_2,foo_3",
    		},
    	}
    
    	for _, c := range cases {
    		result := CheckIfTaintsAlreadyExists(oldTaints, c.taintsToCheck)
    		if result != c.expectedResult {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 22.6K bytes
    - Viewed (0)
  3. test/fixedbugs/issue12006.go

    	vals = append(vals, x)
    	sink = vals
    	return FooN(vals...)
    }
    
    func FooNz(vals ...*int) (s int) { // ERROR "leaking param: vals"
    	sink = vals
    	return FooN(vals...)
    }
    
    func TFooN() {
    	for i := 0; i < 1000; i++ {
    		var i, j int
    		FooN(&i, &j) // ERROR "... argument does not escape"
    	}
    }
    
    func TFooNx() {
    	for i := 0; i < 1000; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 26 23:50:32 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  4. tensorflow/cc/framework/scope_test.cc

      EXPECT_EQ(root.GetUniqueNameForOp("foo"), "foo");
      EXPECT_EQ(root.GetUniqueNameForOp("foo"), "foo_1");
      EXPECT_EQ(root.GetUniqueNameForOp("foo_1"), "foo_1_1");
      EXPECT_EQ(root.GetUniqueNameForOp("foo_2"), "foo_2");
      EXPECT_EQ(root.GetUniqueNameForOp("foo"), "foo_3");
      EXPECT_EQ(root.GetUniqueNameForOp("foo_2"), "foo_2_1");
    }
    
    TEST(ScopeTest, HierarchicalNames) {
      Scope root = Scope::NewRootScope();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 08:17:37 UTC 2019
    - 5.5K bytes
    - Viewed (0)
  5. pkg/test/datasets/Readme.md

    .../dataset/**/<testname>_<stageNo>_expected.json
    
    e.g.
    # First stage files. Meshconfig carries over to the next stage
    .../dataset/**/foo_0.yaml
    .../dataset/**/foo_0_meshconfig.yaml
    .../dataset/**/foo_0_expected.json
    # Second stage files.
    .../dataset/**/foo_1.yaml
    .../dataset/**/foo_1_expected.json
    
    ```
    
    The expected file structure is as follows:
    
    ```json
    {
      "collection": [
        {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  6. pkg/kubelet/pod_workers_test.go

    				},
    				"uid-1": {
    					fullname: "foo_",
    				},
    				"uid-2": {
    					fullname:      "foo_",
    					terminatingAt: time.Now(),
    				},
    				"uid-3": {
    					fullname:     "foo_",
    					terminatedAt: time.Now(),
    				},
    			},
    			waitingToStartStaticPodsByFullname: map[string][]types.UID{
    				"foo_": {
    					types.UID("uid-2"),
    					types.UID("uid-3"),
    					types.UID("uid-0"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/match_test.go

    		RequestInfo: &request.RequestInfo{
    			IsResourceRequest: true,
    			Path:              "/apis/goodapig/v1/namespaces/goodns/goodrscs",
    			Verb:              "goodverb",
    			APIPrefix:         "apis",
    			APIGroup:          "goodapig",
    			APIVersion:        "v1",
    			Namespace:         "goodns",
    			Resource:          "goodrscs",
    			Name:              "eman",
    			Parts:             []string{"goodrscs", "eman"},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  8. pkg/apis/resource/validation/validation_resourceclaimtemplate_test.go

    		wantFailures field.ErrorList
    	}{
    		"good-claim": {
    			template: testClaimTemplate(goodName, goodNS, goodClaimSpec),
    		},
    		"missing-name": {
    			wantFailures: field.ErrorList{field.Required(field.NewPath("metadata", "name"), "name or generateName is required")},
    			template:     testClaimTemplate("", goodNS, goodClaimSpec),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. pkg/apis/resource/validation/validation_podschedulingcontext_test.go

    	}{
    		"good-schedulingCtx": {
    			schedulingCtx: testPodSchedulingContexts(goodName, goodNS, goodPodSchedulingSpec),
    		},
    		"missing-name": {
    			wantFailures:  field.ErrorList{field.Required(field.NewPath("metadata", "name"), "name or generateName is required")},
    			schedulingCtx: testPodSchedulingContexts("", goodNS, goodPodSchedulingSpec),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 09:18:08 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  10. pkg/apis/resource/validation/validation_resourceclaim_test.go

    		claim        *resource.ResourceClaim
    		wantFailures field.ErrorList
    	}{
    		"good-claim": {
    			claim: testClaim(goodName, goodNS, goodClaimSpec),
    		},
    		"missing-name": {
    			wantFailures: field.ErrorList{field.Required(field.NewPath("metadata", "name"), "name or generateName is required")},
    			claim:        testClaim("", goodNS, goodClaimSpec),
    		},
    		"bad-name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 09:18:10 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top