Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of about 10,000 for value$ (0.12 sec)

  1. pkg/config/labels/instance_test.go

    			tags: labels.Instance{"istio./key": "value"},
    		},
    		{
    			name: "bad tag value 1",
    			tags: labels.Instance{"key": ".value"},
    		},
    		{
    			name: "bad tag value 2",
    			tags: labels.Instance{"key": "value_"},
    		},
    		{
    			name: "bad tag value 3",
    			tags: labels.Instance{"key": "value$"},
    		},
    	}
    	for _, c := range cases {
    		if got := c.tags.Validate(); (got == nil) != c.valid {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 16 06:54:36 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/snapshot/impl/DefaultIsolatableFactoryTest.groovy

            def value = instantiator.named(Thing, "value1")
    
            expect:
            def isolated = isolatableFactory.isolate(value)
            isolated instanceof IsolatedImmutableManagedValue
            isolated.isolate().is(value)
        }
    
        def "can coerce named managed type"() {
            def instantiator = TestUtil.objectInstantiator()
            def value = instantiator.named(Thing, "value1")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 17K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationContainerTest.groovy

            producer.delegate = configurationContainer
            def value = producer()
    
            assert value.name == name
    
            def value2 = configurationContainer.getByName(name)
    
            assert value2.name == name
    
            action(value)
            action(value2)
    
            true
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskParametersIntegrationTest.groovy

            "java.util.Collection<String>"        | "['value1', 'value2']"                                | "['value1'] as SortedSet"                                    | null
            "java.util.Set<String>"               | "['value1', 'value2'] as Set"                         | "['value1'] as Set"                                          | null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/DefaultJavaPluginConventionTest.groovy

            convention.targetCompatibility == JavaVersion.VERSION_1_3
        }
    
        def "creates manifest with file resolving and values"() {
            given:
            project.file('file') << "key2: value2"
            def manifest = convention.manifest {
                from 'file'
                attributes(key1: 'value1')
            }
    
            when:
            def mergedManifest = manifest.effectiveManifest
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/DefaultPropertyTest.groovy

            when:
            property.getOrNull()
    
            then:
            def e2 = thrown(IllegalArgumentException)
            e2.message == 'Cannot get the value of a property of type java.lang.Boolean as the provider associated with this property returned a value of type java.lang.Integer.'
        }
    
        def "fails when convention is set using incompatible value"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 17:09:50 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/metadata.mlir

    module attributes {
      tfl.metadata = {key1 = "value1", key2 = "value2"}
    } {
      func.func @main(tensor<3x2xi32>) -> tensor<3x2xi32>
        attributes {tf.entry_function = {inputs = "input", outputs = "SameNameAsOutput"}} {
      ^bb0(%arg0: tensor<3x2xi32>):
        %0 = "tfl.pseudo_const" () {value = dense<[[1, 2], [3, 4], [5, 6]]> : tensor<3x2xi32>} : () -> tensor<3x2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:31:32 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/NestedInputIntegrationTest.groovy

                    }
                }
    
                tasks.register("customTask", CustomTask) {
                    lazyMap.put($value, new NestedBean('value1'))
                    eagerMap.put($value, new NestedBean('value2'))
                    outputFile = file("output.txt")
                }
    
                enum Letter { A, B, C }
            """
    
            when:
            run("customTask")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/options/OptionReaderTest.groovy

            public void setObjectValue(Object value) {
            }
    
            @Option(option = "booleanValue", description = "boolean value")
            public void setBooleanValue(boolean value) {
            }
    
            @Option(option = "enumValue", description = "enum value")
            public void setEnumValue(TestEnum value) {
            }
    
            @Option(option = "integerValue", description = "integer value")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 10 12:45:01 UTC 2023
    - 33.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/features/features.go

    	}
    	sort.Strings(known)
    	return known
    }
    
    // NewFeatureGate parses a string of the form "key1=value1,key2=value2,..." into a
    // map[string]bool of known keys or returns an error.
    func NewFeatureGate(f *FeatureList, value string) (map[string]bool, error) {
    	featureGate := map[string]bool{}
    	for _, s := range strings.Split(value, ",") {
    		if len(s) == 0 {
    			continue
    		}
    
    		arr := strings.SplitN(s, "=", 2)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
Back to top