Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for foo324 (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go

    	testLabels := map[string]string{"key": "value"}
    
    	foo3 := obj.DeepCopyObject()
    	t.setObjectMeta(foo3, "foo3")
    	foo4 := obj.DeepCopyObject()
    	foo4Meta := t.getObjectMetaOrFail(foo4)
    	foo4Meta.SetName("foo4")
    	foo4Meta.SetNamespace(genericapirequest.NamespaceValue(ctx))
    	foo4Meta.SetLabels(testLabels)
    
    	objs := ([]runtime.Object{foo3, foo4})
    
    	assignFn(objs)
    	filtered := []runtime.Object{objs[1]}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  2. pkg/apis/storage/validation/validation_test.go

    		ObjectMeta: metav1.ObjectMeta{Name: "foo2"},
    		Spec: storage.CSINodeSpec{
    			Drivers: []storage.CSINodeDriver{{
    				Name:         "io-kubernetes-storage-csi-driver",
    				NodeID:       nodeID,
    				TopologyKeys: []string{"company.com/zone1", "company.com/zone2"},
    			}},
    		},
    	}, {
    		// driver name: numbers
    		ObjectMeta: metav1.ObjectMeta{Name: "foo3"},
    		Spec: storage.CSINodeSpec{
    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. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			Namespace: "foo-ns",
    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Name:  "foo1",
    					Image: "busybox",
    				},
    				{
    					Name:  "foo2",
    					Image: "busybox",
    				},
    				{
    					Name:  "foo3",
    					Image: "busybox",
    				},
    			},
    		},
    		Status: v1.PodStatus{
    			ContainerStatuses: []v1.ContainerStatus{
    				{
    					ContainerID: "://id1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		{
    			key: computePodKey(foo1),
    			obj: foo1,
    		},
    		{
    			key: computePodKey(bar2),
    			obj: bar2,
    		},
    		{
    			key: computePodKey(foo3),
    			obj: foo3,
    		},
    		{
    			key: computePodKey(foo4),
    			obj: foo4,
    		},
    	}
    
    	var currentRV string
    	for i, ps := range preset {
    		preset[i].storedObj = &example.Pod{}
    		err := store.Create(ctx, ps.key, ps.obj, preset[i].storedObj, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  5. 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)
  6. pkg/controller/replicaset/replica_set_test.go

    	relatedRS := newReplicaSet(1, map[string]string{"foo": "baz"})
    	relatedRS.Name = "foo2"
    	unrelatedRS := newReplicaSet(1, map[string]string{"foo": "quux"})
    	unrelatedRS.Name = "bar1"
    	unrelatedRS.ObjectMeta.OwnerReferences[0].UID = "456"
    	pendingDeletionRS := newReplicaSet(1, map[string]string{"foo": "xyzzy"})
    	pendingDeletionRS.Name = "foo3"
    	pendingDeletionRS.ObjectMeta.OwnerReferences[0].UID = "789"
    	now := metav1.Now()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  7. 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)
  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/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)
  10. pilot/pkg/model/sidecar_test.go

    				CreationTimestamp: newerTime,
    			},
    			Spec: &networking.VirtualService{
    				Hosts: []string{"foo.example.com"},
    			},
    		},
    		{
    			Meta: config.Meta{
    				Name:              "foo2",
    				Namespace:         "default",
    				CreationTimestamp: olderTime.Add(30 * time.Minute), // This should not be used despite being older than foo
    			},
    			Spec: &networking.VirtualService{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
Back to top