Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for VALUE1 (0.47 sec)

  1. pkg/registry/core/pod/storage/storage_test.go

    	_, err = bindingStorage.Create(ctx, "foo", &api.Binding{
    		ObjectMeta: metav1.ObjectMeta{
    			Namespace:   metav1.NamespaceDefault,
    			Name:        "foo",
    			Annotations: map[string]string{"label1": "value1"},
    		},
    		Target: api.ObjectReference{Name: "machine"},
    	}, rest.ValidateAllObjectFunc, &metav1.CreateOptions{})
    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 07:18:44 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured_conversion_test.go

    		ObjectMeta: metav1.ObjectMeta{
    			Name:      "name",
    			Namespace: "namespace",
    		},
    		Spec: testapigroupv1.CarpSpec{
    			RestartPolicy: "restart",
    			NodeSelector: map[string]string{
    				"label1": "value1",
    				"label2": "value2",
    			},
    			ServiceAccountName: "service-account",
    			HostNetwork:        false,
    			HostPID:            true,
    			Subdomain:          "hostname.subdomain.namespace.svc.domain",
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 07 15:19:26 UTC 2020
    - 16.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

            """
    
            when:
            configurationCacheRun("-Dsome.property=1", "-Dmy.property=value")
    
            then:
            configurationCache.assertStateStored()
            outputContains("result = value1")
            problems.assertResultHasProblems(result) {
                withInput("Build file 'build.gradle': system property 'some.property'")
                withInput("Build file 'build.gradle': value from custom source 'MySource'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/DisambiguateArtifactTransformIntegrationTest.groovy

                to.attribute(artifactType, 'final')
    
                if (hasExtraAttribute) {
                    from.attribute(extraAttribute, 'whatever')
                    to.attribute(extraAttribute, 'value1')
                }
            }
            registerTransform(TestTransform) { // B
                from.attribute(Usage.USAGE_ATTRIBUTE, objects.named(Usage, Usage.JAVA_API))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:39 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  5. src/encoding/json/bench_test.go

    			if err := Unmarshal(data, &x); err != nil {
    				b.Fatalf("Unmarshal error: %v", err)
    			}
    		}
    	})
    }
    
    func BenchmarkUnmarshalMap(b *testing.B) {
    	b.ReportAllocs()
    	data := []byte(`{"key1":"value1","key2":"value2","key3":"value3"}`)
    	b.RunParallel(func(pb *testing.PB) {
    		x := make(map[string]string, 3)
    		for pb.Next() {
    			if err := Unmarshal(data, &x); err != nil {
    				b.Fatalf("Unmarshal error: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:00:17 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  6. src/net/http/request_test.go

    		"name":     []string{"gopher"},
    		"skill":    []string{"go-ing"},
    		"field1":   []string{"value1"},
    		"field2":   []string{"initial-value2", "value2"},
    	}
    	if !reflect.DeepEqual(req.Form, wantForm) {
    		t.Fatalf("req.Form = %v, want %v", req.Form, wantForm)
    	}
    
    	wantPostForm := url.Values{
    		"field1": []string{"value1"},
    		"field2": []string{"value2"},
    	}
    	if !reflect.DeepEqual(req.PostForm, wantPostForm) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  7. operator/pkg/object/objects_test.go

    						}
    					}
    				}
    			}
    		})
    	}
    }
    
    func TestK8sObject_Equal(t *testing.T) {
    	obj1 := K8sObject{
    		object: &unstructured.Unstructured{Object: map[string]any{
    			"key": "value1",
    		}},
    	}
    	obj2 := K8sObject{
    		object: &unstructured.Unstructured{Object: map[string]any{
    			"key": "value2",
    		}},
    	}
    	cases := []struct {
    		desc string
    		o1   *K8sObject
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 07:16:46 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/JavaClassChangeIncrementalCompilationIntegrationTest.groovy

            def aClass = file("src/main/java/foo/Foo.java") << """
                package foo;
                public class Foo {
                    String v = "value1";
                }
            """
            run language.compileTaskName
            aClass.text = aClass.text.replace('1', '2')
            run language.compileTaskName, '-d'
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/const-fold.mlir

      %value1 = "tfl.pseudo_const"() {value = dense<[[[1.0, 2.0], [3.0, 4.0]], [[5.0, 6.0], [7.0, 8.0]]]> : tensor<2x2x2xf32>} : () -> tensor<2x2x2xf32>
      %lookup0 = "tfl.embedding_lookup"(%index0, %value0) : (tensor<5xi32>, tensor<3x2xf32>) -> tensor<5x2xf32>
      %lookup1 = "tfl.embedding_lookup"(%index1, %value1) : (tensor<3xi32>, tensor<2x2x2xf32>) -> tensor<3x2x2xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 45.8K bytes
    - Viewed (0)
  10. pkg/scheduler/eventhandlers_test.go

    			NewTaints: []v1.Taint{{Key: "key", Value: "value"}},
    		},
    		{
    			Name:      "taint value changed",
    			Changed:   true,
    			OldTaints: []v1.Taint{{Key: "key", Value: "value1"}},
    			NewTaints: []v1.Taint{{Key: "key", Value: "value2"}},
    		},
    	} {
    		t.Run(test.Name, func(t *testing.T) {
    			oldNode := &v1.Node{Spec: v1.NodeSpec{Taints: test.OldTaints}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 10 14:38:54 UTC 2024
    - 21.5K bytes
    - Viewed (0)
Back to top