Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for getVendor (0.12 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. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/info/GlobalBuildInfoPlugin.java

        }
    
        private String formatJavaVendorDetails(JvmInstallationMetadata runtimeJdkMetaData) {
            JvmVendor vendor = runtimeJdkMetaData.getVendor();
            return runtimeJdkMetaData.getVendor().getKnownVendor().name() + "/" + vendor.getRawVendor();
        }
    
        /* Introspect all versions of ES that may be tested against for backwards
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Aug 17 10:02:58 GMT 2021
    - 18.1K bytes
    - Click Count (0)
  4. 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)
  5. 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)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/DistroTestPlugin.java

            String vendor,
            String version,
            String platform,
            String architecture
        ) {
            Jdk jdk = JdkDownloadPlugin.getContainer(project).create(platform + "-" + purpose);
            jdk.setVendor(vendor);
            jdk.setVersion(version);
            jdk.setPlatform(platform);
            jdk.setArchitecture(architecture);
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Sep 28 21:31:21 GMT 2021
    - 23.1K bytes
    - Click Count (0)
  7. tensorflow/c/c_api_experimental.cc

    }
    
    TF_Tensor* TF_CheckpointReaderGetTensor(TF_CheckpointReader* reader,
                                            const char* name, TF_Status* status) {
      std::unique_ptr<tensorflow::Tensor> tensor;
      reader->GetTensor(name, &tensor, status);
      if (!status->status.ok()) return nullptr;
      return tensorflow::TF_TensorFromTensor(*tensor, &status->status);
    }
    
    void TF_CheckpointReaderGetVariableShape(TF_CheckpointReader* reader,
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Sat Oct 04 05:55:32 GMT 2025
    - 29.4K bytes
    - Click Count (0)
Back to Top