Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 251 for value_ (0.1 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-linked_ptr.h

        depart();
        capture(ptr);
      }
      T* get() const { return value_; }
      T* operator->() const { return value_; }
      T& operator*() const { return *value_; }
    
      bool operator==(T* p) const { return value_ == p; }
      bool operator!=(T* p) const { return value_ != p; }
      template <typename U>
      bool operator==(linked_ptr<U> const& ptr) const {
        return value_ == ptr.get();
      }
      template <typename U>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-linked_ptr.h

        depart();
        capture(ptr);
      }
      T* get() const { return value_; }
      T* operator->() const { return value_; }
      T& operator*() const { return *value_; }
    
      bool operator==(T* p) const { return value_ == p; }
      bool operator!=(T* p) const { return value_ != p; }
      template <typename U>
      bool operator==(linked_ptr<U> const& ptr) const {
        return value_ == ptr.get();
      }
      template <typename U>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/core-plugins/project_report_plugin.adoc

    The projects to generate the reports for. _Default value_: A one element set with the project the plugin was applied to.
    
    `projectReportDirName` — `String`::
    The name of the directory to generate the project report into, relative to the reports directory. _Default value_: `"project"`.
    
    `projectReportDir` — `File` (read-only)::
    The directory to generate the project report into. _Default value_: `__reportsDir__/__projectReportDirName__`.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/war_plugin.adoc

    [[sec:war_convention_properties]]
    == Convention properties (deprecated)
    
    `webAppDirName` — `String`::
    _Default value_: `src/main/webapp`
    +
    The name of the web application source directory, relative to the project directory.
    
    `webAppDir` — (read-only) `File`::
    _Default value_: `$webAppDirName`, e.g. _src/main/webapp_
    +
    The path to the web application source directory.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top