Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getVendor (0.16 sec)

  1. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/toolchain/DaemonJavaToolchainQueryServiceTest.groovy

            InstallationLocation currentJavaHome = null,
            Function<String, String> getVersion = { it },
            Function<String, String> getVendor = { "" }
        ) {
            def detector = createJvmMetadataDetector(getVersion, getVendor)
            def currentJavaHomePath = currentJavaHome?.location ?: Jvm.current().javaHome
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm/src/test/groovy/org/gradle/jvm/toolchain/internal/JavaToolchainQueryServiceTest.groovy

            Collection<String> installations,
            InstallationLocation currentJvm = null,
            Function<String, String> getVersion = { it },
            Function<String, String> getVendor = { "" }
        ) {
            def detector = newJvmMetadataDetector(getVersion, getVendor)
            def registry = createInstallationRegistry(installations, detector)
            def currentJvmPath = currentJvm?.location ?: Jvm.current().javaHome
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:46:10 UTC 2024
    - 19K bytes
    - Viewed (0)
  3. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectoryTest.groovy

            lockManager
        }
    
        JvmMetadataDetector mockDetector() {
            JvmInstallationMetadata metadata = Mock(JvmInstallationMetadata)
            metadata.isValidInstallation() >> true
            metadata.getVendor() >> JvmVendor.KnownJvmVendor.IBM.asJvmVendor()
            metadata.getLanguageVersion() >> JavaVersion.VERSION_11
            metadata.getArchitecture() >> "arch"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

        }
    
        public static String getInstallFolderName(JvmInstallationMetadata metadata) {
            String vendor = metadata.getJvmVendor();
            if (vendor == null || vendor.isEmpty()) {
                vendor = metadata.getVendor().getRawVendor();
            }
            String version = metadata.getLanguageVersion().getMajorVersion();
            String architecture = metadata.getArchitecture();
            String os = OperatingSystem.current().getFamilyName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/tensor_list_ops_decomposition.cc

        llvm::SmallDenseMap<Value, SizeInfo>* buffer_to_size) {
      OpBuilder builder(list);
      Value buffer = builder.create<TF::IdentityOp>(
          list.getLoc(), ArrayRef<Type>{list.getTensor().getType()},
          ArrayRef<Value>{list.getTensor()});
      auto type = mlir::cast<TensorType>(buffer.getType());
      if (!type.hasStaticShape()) {
        return list.emitOpError("TensorListFromTensorOp input has unknown shape.");
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  6. 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,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 29.4K bytes
    - Viewed (0)
Back to top