Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for value_ (0.26 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

       public:
        Iterator(const ParamGeneratorInterface<T>* base, T value, int index,
                 IncrementT step)
            : base_(base), value_(value), index_(index), step_(step) {}
        virtual ~Iterator() {}
    
        virtual const ParamGeneratorInterface<T>* BaseGenerator() const {
          return base_;
        }
        virtual void Advance() {
          value_ = value_ + step_;
          index_++;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

      // functions (C++Builder 2009 and above only).
      static const bool value = __is_convertible(From, To);
    #else
      static const bool value =
          sizeof(Helper(ImplicitlyConvertible::MakeFrom())) == 1;
    #endif  // _MSV_VER
    };
    template <typename From, typename To>
    const bool ImplicitlyConvertible<From, To>::value;
    
    // IsAProtocolMessage<T>::value is a compile-time bool constant that's
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/MapPropertyIntegrationTest.groovy

                    prop = ['key1': 'value1']
                    prop.put('key2', 'value2')
                    prop.put('key3', project.provider { 'value3' })
                    prop.putAll(['key4': 'value4'])
                    prop.putAll(project.provider { ['key5': 'value5'] })
                    expected = ['key1': 'value1', 'key2': 'value2', 'key3': 'value3', 'key4': 'value4', 'key5': 'value5']
                }
                '''.stripIndent()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 15:28:53 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. pkg/apis/core/v1/helper/helpers_test.go

    							Values:   []string{"test-value2"},
    						},
    						{
    							Key:      "key3",
    							Operator: v1.NodeSelectorOpIn,
    							Values:   []string{"test-value3"},
    						},
    					},
    				},
    				{
    					MatchExpressions: []v1.NodeSelectorRequirement{
    						{
    							Key:      "key1",
    							Operator: v1.NodeSelectorOpIn,
    							Values:   []string{"test-value11, test-value12"},
    						},
    						{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. pkg/controller/controller_utils_test.go

    								{Key: "key3", Value: "value3", Effect: "NoSchedule"},
    								{Key: "key4", Value: "value4", Effect: "NoExecute"},
    							},
    						},
    					},
    				},
    				Clientset: fake.NewSimpleClientset(&v1.PodList{Items: []v1.Pod{*testutil.NewPod("pod0", "node0")}}),
    			},
    			nodeName: "node1",
    			taintsToRemove: []*v1.Taint{
    				{Key: "key2", Value: "value2", Effect: "NoExecute"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  8. tests/common/jwt/jwt_token.go

    	// Payload {
    	//  "exp": 4757607896,
    	//  "iat": 1604007896,
    	//  "iss": "******@****.***",
    	//  "nested": {
    	//    "key1": [
    	//      "valueA",
    	//      "valueB"
    	//    ],
    	//    "nested-2": {
    	//      "key1": [
    	//        "valueA",
    	//        "valueB"
    	//      ]
    	//    }
    	//  },
    	//  "sub": "sub-1"
    	// }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  9. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/integtests/ApplicationIntegrationSpec.groovy

            if (OperatingSystem.current().windows) {
                builder.environment('APPLICATION_OPTS', '-DtestValue=value -DtestValue2="some value" -DtestValue3="some value"')
            } else {
                builder.environment('APPLICATION_OPTS', '-DtestValue=value -DtestValue2=\'some value\' -DtestValue3=some\\ value')
            }
    
            def result = builder.run()
    
            then:
            result.assertNormalExitValue()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 22:15:44 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. 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)
Back to top