Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for foo20 (0.21 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	assert.NoError(t, err)
    
    	containers := []v1.Container{
    		{
    			Name:            "foo1",
    			Image:           "busybox",
    			ImagePullPolicy: v1.PullIfNotPresent,
    		},
    		{
    			Name:            "foo2",
    			Image:           "busybox",
    			ImagePullPolicy: v1.PullIfNotPresent,
    		},
    	}
    	pod := &v1.Pod{
    		ObjectMeta: metav1.ObjectMeta{
    			UID:       "12345678",
    			Name:      "foo",
    			Namespace: "new",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  2. pkg/apis/storage/validation/validation_test.go

    				Name:         "driver1",
    				NodeID:       "node1",
    				TopologyKeys: []string{"company-com/zone1", "company.com/zone2"},
    			}},
    		},
    	}, {
    		// No topology keys
    		ObjectMeta: metav1.ObjectMeta{Name: "foo10"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    				Name:   driverName,
    				NodeID: nodeID,
    			}},
    		},
    	}}
    
    	for _, csiNode := range successCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 69.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                    ${fooAndBarJars()}
                }
                project(':c') {
                    configurations {
                        foo.attributes { $freeDebug; attribute(extra, 'extra') }
                        foo2.attributes { $freeDebug; attribute(extra, 'extra 2') }
                        bar.attributes { $freeRelease; attribute(extra, 'extra') }
                        bar2.attributes { $freeRelease; attribute(extra, 'extra 2') }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  4. src/encoding/json/decode_test.go

    	Int64:      6,
    	Uint:       7,
    	Uint8:      8,
    	Uint16:     9,
    	Uint32:     10,
    	Uint64:     11,
    	Uintptr:    12,
    	Float32:    14.1,
    	Float64:    15.1,
    	Foo:        "foo",
    	Foo2:       "foo2",
    	IntStr:     42,
    	UintptrStr: 44,
    	String:     "16",
    	Map: map[string]Small{
    		"17": {Tag: "tag17"},
    		"18": {Tag: "tag18"},
    	},
    	MapP: map[string]*Small{
    		"19": {Tag: "tag19"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	ctx := t.TestContext()
    
    	foo1 := obj.DeepCopyObject()
    	t.setObjectMeta(foo1, t.namer(1))
    	foo2 := obj.DeepCopyObject()
    	t.setObjectMeta(foo2, t.namer(2))
    
    	existing := assignFn([]runtime.Object{foo1, foo2})
    
    	listObj, err := t.storage.(rest.Lister).List(ctx, nil)
    	if err != nil {
    		t.Errorf("unexpected error: %v", err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            def parent = Mock(ParentServices)
            def registry = decoratorCreator.call(registry(parent))
    
            when:
            def result = registry.get(String)
    
            then:
            result == "Foo120"
    
            and:
            1 * parent.get(Long) >> 110L
            1 * parent.get(String) >> "Foo"
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  7. pkg/controller/replicaset/replica_set_test.go

    					Spec: apps.ReplicaSetSpec{
    						Selector: &metav1.LabelSelector{MatchLabels: map[string]string{"foo": "bar"}},
    					},
    				},
    			},
    			pod: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "foo2", Namespace: "ns", Labels: map[string]string{"foo": "bar"}}},
    			outRSName: "",
    		},
    		// Matching ns and labels returns the key to the ReplicaSet, not the ReplicaSet name
    		{
    			inRSs: []*apps.ReplicaSet{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_utils_test.go

    		t.Errorf("Expected empty string found %s", pod)
    	}
    }
    
    func TestIsMemberOf(t *testing.T) {
    	set := newStatefulSet(3)
    	set2 := newStatefulSet(3)
    	set2.Name = "foo2"
    	pod := newStatefulSetPod(set, 1)
    	if !isMemberOf(set, pod) {
    		t.Error("isMemberOf returned false negative")
    	}
    	if isMemberOf(set2, pod) {
    		t.Error("isMemberOf returned false positive")
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "array",
              "items": {
                "default": {},
                "$ref": "#/definitions/io.k8s.apiextensions-apiserver.pkg.apis.apiextensions.v1.CustomResourceDefinitionVersion"
              }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go

    			errFn: expectNoErr,
    		},
    		"mixed arg types": {
    			args:  []string{"pods/foo", "bar"},
    			errFn: expectErr,
    		},
    		/*"missing resource": {
    			args:  []string{"pods/foo2"},
    			errFn: expectNoErr, // not an error because resources are lazily visited
    		},*/
    		"comma in resource": {
    			args:  []string{",pods/foo"},
    			errFn: expectErr,
    		},
    		"multiple types in resource": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 11:58:41 UTC 2023
    - 56.1K bytes
    - Viewed (0)
Back to top