Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for VALUE1 (0.36 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/fmt/scan.go

    func (s *ss) hexByte() (b byte, ok bool) {
    	rune1 := s.getRune()
    	if rune1 == eof {
    		return
    	}
    	value1, ok := hexDigit(rune1)
    	if !ok {
    		s.UnreadRune()
    		return
    	}
    	value2, ok := hexDigit(s.mustReadRune())
    	if !ok {
    		s.errorString("illegal hex digit")
    		return
    	}
    	return byte(value1<<4 | value2), true
    }
    
    // hexString returns the space-delimited hexpair-encoded string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  9. src/fmt/doc.go

    For compound objects, the elements are printed using these rules, recursively,
    laid out like this:
    
    	struct:             {field0 field1 ...}
    	array, slice:       [elem0 elem1 ...]
    	maps:               map[key1:value1 key2:value2 ...]
    	pointer to above:   &{}, &[], &map[]
    
    Width is specified by an optional decimal number immediately preceding the verb.
    If absent, the width is whatever is necessary to represent the value.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

            'Iterable' | '<Integer>'        | 'Arrays.asList(Integer.valueOf(1), Integer.valueOf(2))'             | 'java.lang.Integer'
            'List'     | '<String>'         | 'Arrays.asList("value1", "value2")'                                 | 'java.lang.String'
            'Map'      | '<String,Integer>' | 'Collections.singletonMap("a", Integer.valueOf(1))'                 | 'java.lang.Integer'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top