Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 281 for value_ (0.96 sec)

  1. tensorflow/cc/experimental/libtf/impl/string.cc

    using StringTable = std::unordered_set<std::string>;
    
    namespace tf {
    namespace libtf {
    namespace impl {
    
    String::String(const char* s) {
      static StringTable* table = new StringTable;
      value_ = &*table->insert(s).first;
    }
    
    }  // namespace impl
    }  // namespace libtf
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 28 21:37:07 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    template <typename T>
    class ThreadLocal {
     public:
      ThreadLocal() : value_() {}
      explicit ThreadLocal(const T& value) : value_(value) {}
      T* pointer() { return &value_; }
      const T* pointer() const { return &value_; }
      const T& get() const { return value_; }
      void set(const T& value) { value_ = value; }
     private:
      T value_;
    };
    
    // The above synchronization primitives have dummy implementations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  9. pkg/config/labels/instance_test.go

    			tags: labels.Instance{"istio./key": "value"},
    		},
    		{
    			name: "bad tag value 1",
    			tags: labels.Instance{"key": ".value"},
    		},
    		{
    			name: "bad tag value 2",
    			tags: labels.Instance{"key": "value_"},
    		},
    		{
    			name: "bad tag value 3",
    			tags: labels.Instance{"key": "value$"},
    		},
    	}
    	for _, c := range cases {
    		if got := c.tags.Validate(); (got == nil) != c.valid {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 16 06:54:36 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    template <typename T>
    class ThreadLocal {
     public:
      ThreadLocal() : value_() {}
      explicit ThreadLocal(const T& value) : value_(value) {}
      T* pointer() { return &value_; }
      const T* pointer() const { return &value_; }
      const T& get() const { return value_; }
      void set(const T& value) { value_ = value; }
     private:
      T value_;
    };
    
    // The above synchronization primitives have dummy implementations.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
Back to top