Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for VAL1 (0.13 sec)

  1. operator/pkg/tpath/tree_test.go

    			path:  "a.b.c",
    			value: "val1",
    			want: `
    a:
      b:
        c: val1
    `,
    		},
    		{
    			desc:     "overwrite",
    			baseYAML: testTreeYAML,
    			path:     "a.b.c",
    			value:    "val2",
    			want: `
    a:
      b:
        c: val2
        list1:
        - i1: val1
        - i2: val2
        - i3a: key1
          i3b:
            list2:
            - i1: val1
            - i2: val2
            - i3a: key1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 15.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"has(self.val1) && has(self.val2)":                    2,
    				"!has(self.val1)":                                     2,
    				"self.val1.all(k, size(self.val1) > 0)":               11010044,
    				"self.val1.exists_one(k, self.val1 == [2])":           23592949,
    				"!self.val1.exists_one(k, size(self.val1) > 0)":       9437183,
    				"size(self.val1) == 2":                                4,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"!self.val1.contains('gives')",
    				"self.val1.endsWith('👑')",
    				"!self.val1.endsWith('pawn')",
    				"self.val1.matches('^[^0-9]*$')",
    				"!self.val1.matches('^[0-9]*$')",
    				"type(self.val1) == string",
    				"size(self.val1) == 12",
    
    				// string functions (https://github.com/google/cel-go/blob/v0.9.0/ext/strings.go)
    				"self.val1.charAt(3) == 'k'",
    				"self.val1.indexOf('o') == 1",
    				"self.val1.indexOf('o', 2) == 2",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  4. pkg/apis/discovery/v1beta1/conversion_test.go

    				Topology: map[string]string{
    					"key1": "val1",
    				},
    			},
    			internal: discovery.Endpoint{
    				DeprecatedTopology: map[string]string{
    					"key1": "val1",
    				},
    			},
    		},
    		{
    			desc: "non empty topology map, with zone",
    			external: v1beta1.Endpoint{
    				Topology: map[string]string{
    					"key1":                   "val1",
    					corev1.LabelTopologyZone: "zone1",
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 10:48:05 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. src/reflect/swapper.go

    	return func(i, j int) {
    		if uint(i) >= uint(s.Len) || uint(j) >= uint(s.Len) {
    			panic("reflect: slice index out of range")
    		}
    		val1 := arrayAt(s.Data, i, size, "i < s.Len")
    		val2 := arrayAt(s.Data, j, size, "j < s.Len")
    		typedmemmove(typ, tmp, val1)
    		typedmemmove(typ, val1, val2)
    		typedmemmove(typ, val2, tmp)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. src/internal/types/testdata/fixedbugs/issue60460.go

    }
    
    type testRules struct{}
    
    func newTestRules() Rules[int] {
    	return testRules{}
    }
    
    func (r testRules) Hash(val int) int {
    	return val % 16
    }
    
    func (r testRules) Equivalent(val1 int, val2 int) bool {
    	return val1 == val2
    }
    
    func (r testRules) SameRules(other Rules[int]) bool {
    	_, ok := other.(testRules)
    	return ok
    }
    
    type testRules2 struct{}
    
    func newTestRules2() Rules[string] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 20:19:38 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    #endif
    
    #if !GTEST_DONT_DEFINE_ASSERT_LE
    # define ASSERT_LE(val1, val2) GTEST_ASSERT_LE(val1, val2)
    #endif
    
    #if !GTEST_DONT_DEFINE_ASSERT_LT
    # define ASSERT_LT(val1, val2) GTEST_ASSERT_LT(val1, val2)
    #endif
    
    #if !GTEST_DONT_DEFINE_ASSERT_GE
    # define ASSERT_GE(val1, val2) GTEST_ASSERT_GE(val1, val2)
    #endif
    
    #if !GTEST_DONT_DEFINE_ASSERT_GT
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/build-option/src/test/groovy/org/gradle/internal/buildoption/ListBuildOptionTest.groovy

    import spock.lang.Specification
    
    import static org.gradle.internal.buildoption.BuildOptionFixture.*
    
    class ListBuildOptionTest extends Specification {
    
        private static final List<String> SAMPLE_VALUES = ['val1', 'val2', 'val3']
    
        def testSettings = new TestSettings()
        def commandLineParser = new CommandLineParser()
    
        def "can apply from property"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:02:02 UTC 2023
    - 6K bytes
    - Viewed (0)
  9. src/internal/reflectlite/swapper.go

    	return func(i, j int) {
    		if uint(i) >= uint(s.Len) || uint(j) >= uint(s.Len) {
    			panic("reflect: slice index out of range")
    		}
    		val1 := arrayAt(s.Data, i, size, "i < s.Len")
    		val2 := arrayAt(s.Data, j, size, "j < s.Len")
    		typedmemmove(typ, tmp, val1)
    		typedmemmove(typ, val1, val2)
    		typedmemmove(typ, val2, tmp)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectorSerializerTest.groovy

            when:
            ModuleComponentSelector result1 = serialize(selector1, serializer)
            ModuleComponentSelector result2 = serialize(selector2, serializer)
            ModuleComponentSelector result3 = serialize(selector3, serializer)
    
            then:
            result1.attributes == AttributeTestUtil.attributes("foo": "val1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top