Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 111 for value_ (0.21 sec)

  1. tensorflow/cc/experimental/libtf/object.h

        auto it = value_.dict().find(key.value_);
        if (it != value_.dict().end()) return Cast<T>(Handle(it->second));
        return absl::NotFoundError("Key not in dictionary.");
      }
      /// Sets `key` with value `value`.
      void Set(const String& key, Handle value) {
        value_.dict()[key.value_] = std::move(value.value_);
      }
      /// Sets `key` with value `value`.
      void Set(const Handle& key, Handle value) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_plugin.adoc

    `(read-only) File libsDir`::
    The directory to generate libraries into. Default value: `layout.buildDirectory.dir(__libsDirName__)`
    
    `String distsDirName`::
    The name of the directory to generate distributions into, relative to the build directory. Default value: `distributions`
    
    `(read-only) File distsDir`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/jvm/groovy_plugin.adoc

    _Default value_: Not null
    +
    The Groovy source files of this source set. Contains all `.groovy` and `.java` files found in the Groovy source directories, and excludes all other types of files.
    
    `groovy.srcDirs` — `Set&lt;File&gt;`::
    _Default value_: `[__projectDir__/src/__name__/groovy]`
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.6K 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. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  10. 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)
Back to top