Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for value6 (0.08 sec)

  1. 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)
  2. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

    custom.prop = providers.provider { "\${'some value 2'.substring(5)}" }
    assert custom.prop.get() == "value 2"
    
    custom.prop = null
    custom.prop.convention("\${'some value 3'.substring(5)}")
    assert custom.prop.get() == "value 3"
    
    custom.prop.convention(providers.provider { "\${'some value 4'.substring(5)}" })
    assert custom.prop.get() == "value 4"
    """
    
            expect:
            succeeds()
        }
    
        @Requires(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. cmd/bucket-lifecycle-handlers_test.go

    			accessKey:          creds.AccessKey,
    			secretKey:          creds.SecretKey,
    			body:               []byte(`<LifecycleConfiguration><Rule><ID>id</ID><Filter><Prefix>logs/</Prefix><Tag><Key>Key1</Key><Value>Value1</Value></Tag></Filter><Status>Enabled</Status><Expiration><Days>365</Days></Expiration></Rule></LifecycleConfiguration>`),
    			expectedRespStatus: http.StatusBadRequest,
    			lifecycleResponse:  []byte(``),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

      return s;
    }
    
    class MlirTensor : public TracingTensorHandle {
     public:
      explicit MlirTensor(Value value)
          : TracingTensorHandle(kMlir), value_(value) {}
    
      tensorflow::DataType DataType() const override {
        tensorflow::DataType type;
        Status s = ConvertToDataType(value_.getType(), &type);
        if (!s.ok()) {
          return tensorflow::DT_INVALID;
        }
        return type;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

        Note: if the entries in `value` are all the same, we can just keep one copy.
          In other words, the following two lines are effectively the same.
          %tensor = tfrt_fallback_async.const_string_tensor {shape = [1, 2], value = ["string", "string"]}
          %tensor = tfrt_fallback_async.const_string_tensor {shape = [1, 2], value = ["string"]}
      }];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache_test.go

    	// In background, update the store.
    	go func() {
    		store.Add(makeTestPodDetails("pod1", 2, "node1", map[string]string{"label": "value1"}))
    		store.Add(makeTestPodDetails("pod2", 3, "node1", map[string]string{"label": "value1"}))
    		store.Add(makeTestPodDetails("pod3", 5, "node2", map[string]string{"label": "value2"}))
    	}()
    
    	// list by empty MatchValues.
    	list, resourceVersion, indexUsed, err := store.WaitUntilFreshAndList(ctx, 5, nil)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 09:20:10 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/pod_devices_test.go

    				},
    				Mounts: []kubecontainer.Mount{
    					{Name: "/home/lib1", HostPath: "/home/lib1", ContainerPath: "/home/lib1", ReadOnly: true},
    				},
    				Envs: []kubecontainer.EnvVar{
    					{Name: "ENV1", Value: "VALUE1"},
    				},
    			},
    		},
    		{
    			description: "cdi devices are handled when feature gate is enabled",
    			gate:        true,
    			responsesPerResource: map[string]*pluginapi.ContainerAllocateResponse{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

      // visit the members of FooTest via 'this'.
      TypeParam n = this->value_;
    
      // To visit static members of the fixture, add the TestFixture::
      // prefix.
      n += TestFixture::shared_;
    
      // To refer to typedefs in the fixture, add the "typename
      // TestFixture::" prefix.
      typename TestFixture::List values;
      values.push_back(n);
      ...
    }
    
    TYPED_TEST(FooTest, HasPropertyA) { ... }
    
    #endif  // 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/const-fold.mlir

      %index1 = "tfl.pseudo_const"() {value = dense<[0, 1, 0]> : tensor<3xi32>} : () -> tensor<3xi32>
      %value0 = "tfl.pseudo_const"() {value = dense<[[1.0, 2.0], [3.0, 4.0], [5.0, 6.0]]> : tensor<3x2xf32>} : () -> tensor<3x2xf32>
      %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>
    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. 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)
Back to top