- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for getVendor (0.12 seconds)
-
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/Jdk.java
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) -
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) -
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 backwardsCreated: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Aug 17 10:02:58 GMT 2021 - 18.1K bytes - Click Count (0) -
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) -
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) -
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) -
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)