Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for getVendor (0.08 seconds)

  1. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/Jdk.java

            this.architecture = objectFactory.property(String.class);
        }
    
        public String getName() {
            return name;
        }
    
        public String getVendor() {
            return vendor.get();
        }
    
        public void setVendor(final String vendor) {
            if (ALLOWED_VENDORS.contains(vendor) == false) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 27 19:29:10 GMT 2021
    - 6.8K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/JdkDownloadPlugin.java

             *
             * For Oracle/OpenJDK/Adoptium we define a repository per-version.
             */
            String repoName = REPO_NAME_PREFIX + jdk.getVendor() + "_" + jdk.getVersion();
            String repoUrl;
            String artifactPattern;
    
            if (jdk.getVendor().equals(VENDOR_ADOPTIUM)) {
                repoUrl = "https://api.adoptium.net/v3/binary/version/";
                if (jdk.getMajor().equals("8")) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 27 19:29:10 GMT 2021
    - 7.6K bytes
    - Click Count (0)
  3. tensorflow/c/checkpoint_reader.cc

      if (reader_ != nullptr) return reader_->DebugString();
      return v2_reader_->DebugString();
    }
    
    void CheckpointReader::GetTensor(
        const string& name, std::unique_ptr<tensorflow::Tensor>* out_tensor,
        TF_Status* out_status) const {
      absl::Status status;
      if (reader_ != nullptr) {
        status = reader_->GetTensor(name, out_tensor);
      } else {
        tensorflow::DataType dtype;
        tensorflow::TensorShape shape;
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Tue Feb 17 18:49:14 GMT 2026
    - 5.4K bytes
    - Click Count (0)
  4. tensorflow/c/checkpoint_reader.h

      const TensorSliceReader::VarToDataTypeMap& GetVariableToDataTypeMap() const;
    
      // Attempts to look up the tensor named "name" and stores the found result in
      // "out_tensor".
      void GetTensor(const std::string& name,
                     std::unique_ptr<tensorflow::Tensor>* out_tensor,
                     TF_Status* out_status) const;
    
     private:
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Wed Jan 07 04:56:09 GMT 2026
    - 3.1K bytes
    - Click Count (0)
Back to Top