Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 7,716 for value$ (0.11 sec)

  1. staging/src/k8s.io/api/core/v1/toleration_test.go

    				Key:    "foo",
    				Value:  "bar",
    				Effect: TaintEffectNoSchedule,
    			},
    			expectTolerated: true,
    		},
    		{
    			description: "toleration and taint have the same key and effect, but different values, and operator is Equal, expect not tolerated",
    			toleration: Toleration{
    				Key:      "foo",
    				Operator: TolerationOpEqual,
    				Value:    "value1",
    				Effect:   TaintEffectNoSchedule,
    			},
    			taint: Taint{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 17:21:42 UTC 2017
    - 3.4K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultDisambiguationRuleChainTest.groovy

            given:
            details.candidateValues >> (["value1", "value2"] as Set)
            ruleChain.add(BrokenRule)
    
            when:
            ruleChain.execute(details)
    
            then:
            def e = thrown(AttributeMatchException)
            e.message == 'Could not select value from candidates [value1, value2] using DefaultDisambiguationRuleChainTest.BrokenRule.'
            e.cause == BrokenRule.failure
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r30/ToolingApiEclipseModelSourceFolderClasspathAttributesCrossVersionSpec.groovy

            project.sourceDirectories[0].classpathAttributes.size() == 2
            project.sourceDirectories[0].classpathAttributes.find { it.name == 'key1' && it.value == 'value1'}
            project.sourceDirectories[0].classpathAttributes.find { it.name == 'key2' && it.value == 'value2'}
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. maven-core/src/test/resources-project-builder/plugin-exec-config-order/w-plugin-mgmt/pom.xml

                  </stringParams>
                  <propertiesParam>
                    <property>
                      <name>key1</name>
                      <value>value1</value>
                    </property>
                    <property>
                      <name>key2</name>
                      <value>value2</value>
                    </property>
                  </propertiesParam>
                </configuration>
              </execution>
            </executions>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultAntBuilderTest.groovy

        }
    
        def "ant properties are available as properties of builder"() {
            when:
            ant.property(name: 'prop1', value: 'value1')
    
            then:
            ant.prop1 == 'value1'
    
            when:
            ant.prop2 = 'value2'
    
            then:
            ant.antProject.properties.prop2 == 'value2'
        }
    
        def "throws MissingPropertyException for unknown property"() {
            when:
            ant.unknown
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 11 16:17:40 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/quota/v1/resources.go

    	result := corev1.ResourceList{}
    	for key, value := range a {
    		if other, found := b[key]; found {
    			if value.Cmp(other) <= 0 {
    				result[key] = other.DeepCopy()
    				continue
    			}
    		}
    		result[key] = value.DeepCopy()
    	}
    	for key, value := range b {
    		if _, found := result[key]; !found {
    			result[key] = value.DeepCopy()
    		}
    	}
    	return result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 06 23:11:22 UTC 2021
    - 8.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/const-values.pbtxt

    node {
      name: "bf16_scalar"
      op: "Const"
      attr {
        key: "dtype"
        value {
          type: DT_BFLOAT16
        }
      }
      attr {
        key: "value"
        value {
          tensor {
            dtype: DT_BFLOAT16
            tensor_shape {
            }
            half_val: 0
            # CHECK: value = dense<0.000000e+00> : tensor<bf16>
          }
        }
      }
    }
    node {
      name: "bf16_vector"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 24 00:20:25 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  8. maven-core/src/test/resources-project-builder/plugin-exec-config-order/wo-plugin-mgmt/pom.xml

                  </stringParams>
                  <propertiesParam>
                    <property>
                      <name>key1</name>
                      <value>value1</value>
                    </property>
                    <property>
                      <name>key2</name>
                      <value>value2</value>
                    </property>
                  </propertiesParam>
                </configuration>
              </execution>
            </executions>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 29 19:02:56 UTC 2020
    - 2.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/tests/convert_ref_variables.mlir

      // CHECK: [[handle:%.*]] = "tf.VarHandleOp"
      // CHECK-SAME: shared_name = "x"
      // CHECK: [[value0:%.*]] = "tf.ReadVariableOp"([[handle]])
      // CHECK: [[value1:%.*]] = "tf.ReadVariableOp"([[handle]])
      // CHECK: "tf.ConcatV2"([[value1]], [[value0]]
      // CHECK-SAME: (tensor<i32>, tensor<i32>, tensor<i32>) -> tensor<2xi32>
      %axis = "tf.Const"() {value = dense<0> : tensor<i32>} : () -> tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  10. src/runtime/pprof/runtime_test.go

    		t.Errorf("Expected parent goroutine's profile labels to be empty before Do, got %v", gotLabels)
    	}
    
    	Do(context.Background(), Labels("key1", "value1", "key2", "value2"), func(ctx context.Context) {
    		wantLabels := map[string]string{"key1": "value1", "key2": "value2"}
    		if gotLabels := getProfLabel(); !reflect.DeepEqual(gotLabels, wantLabels) {
    			t.Errorf("parent goroutine's profile labels: got %v, want %v", gotLabels, wantLabels)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 20:29:37 UTC 2017
    - 3K bytes
    - Viewed (0)
Back to top