Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for foo4 (0.05 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: "foo"},
    			DriverName: "foo",
    			Parameters: map[string]string{
    				"foo-parameter": "free-form-string",
    			},
    		},
    		{
    			// some parameters
    			ObjectMeta: metav1.ObjectMeta{Name: "foo"},
    			DriverName: "kubernetes.io/foo",
    			Parameters: map[string]string{
    				"kubernetes.io/foo-parameter": "free/form/string",
    				"foo-parameter":               "free-form-string",
    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. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    		storedObj *example.Pod
    	}{
    		{
    			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{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go

    			watchTests: []*testWatchStruct{
    				{basePod("t4-foo1"), true, watch.Added},
    				{basePod("t4-foo2"), false, ""},
    				{basePodUpdated("t4-foo1"), true, watch.Modified},
    				{basePodUpdated("t4-foo2"), false, ""},
    			},
    		},
    		{
    			name:          "cluster-wide watch, request with name, field selector with metadata.name and spec.nodeName",
    			requestedName: "t5-foo1",
    			fieldSelector: fields.SelectorFromSet(fields.Set{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			UID:       "12345678",
    			Name:      "foo",
    			Namespace: "foo-ns",
    		},
    		Spec: v1.PodSpec{
    			Containers: []v1.Container{
    				{
    					Name:  "foo1",
    					Image: "busybox",
    				},
    				{
    					Name:  "foo2",
    					Image: "busybox",
    				},
    				{
    					Name:  "foo3",
    					Image: "busybox",
    				},
    			},
    		},
    		Status: v1.PodStatus{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  6. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			cronJob: &batchv1.CronJob{ObjectMeta: metav1.ObjectMeta{Namespace: "foo-ns", Name: "fooer"}},
    			jobs: []runtime.Object{
    				&batchv1.Job{ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "foo-ns"}},
    				&batchv1.Job{ObjectMeta: metav1.ObjectMeta{Name: "foo1", Namespace: "foo-ns"}},
    				&batchv1.Job{ObjectMeta: metav1.ObjectMeta{Name: "foo2", Namespace: "foo-ns"}},
    			},
    			expected: []*batchv1.Job{},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  7. pkg/controller/replicaset/replica_set_test.go

    	someRS := newReplicaSet(1, map[string]string{"foo": "bar"})
    	someRS.Name = "foo1"
    	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"
    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. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            given:
            def foo2 = mavenRepo.module('org', 'foo', '2.0').publish()
            def foo1 = mavenRepo.module('org', 'foo', '1.0')
                .dependencyConstraint(foo2).withModuleMetadata().publish()
            def foo05 = mavenRepo.module('org', 'foo', '0.5').publish()
    
            def direct11 = mavenRepo.module('org', 'direct', '1.1')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/AbstractConfigurationAttributesResolveIntegrationTest.groovy

                        doLast {
                            assert files.collect { it.name } == ['b-foo.jar', 'c-foo.jar']
                        }
                    }
                }
                project(':b') {
                    configurations {
                        foo {
                           attributes { $debug } // partial match on `buildType`
                        }
                        bar {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 17:30:11 UTC 2024
    - 64K bytes
    - Viewed (0)
  10. 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{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
Back to top