Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for getFilePath (0.29 sec)

  1. tensorflow/compiler/jit/device_executable_persistor_test.cc

                         persistor.device_type(), persistor.persistence_prefix());
      // File for key2 contains the same content as key1.
      TF_ASSERT_OK(Env::Default()->CopyFile(
          GetFilePath(key1, persistor.persistent_cache_directory()),
          GetFilePath(key2, persistor.persistent_cache_directory())));
    
      MockXlaCompilerClient mock_client;
      // Try to load an executable from file corresponding to key2 (whose file
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_executable_persistor.h

                                    const XlaSerializedCacheEntry& entry) const;
    
      std::string XlaSerializedCacheKeyToString(
          const XlaSerializedCacheKey& key) const;
      std::string GetFilePath(const XlaSerializedCacheKey& key) const;
    
      const DeviceType device_type_;
      const bool disable_strict_signature_checks_;
      const std::string persistence_prefix_;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  3. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/RuntimePluginValidationIntegrationTest.groovy

                    @Input
                    public FileCollection getFileCollection() {
                        return getProject().files();
                    }
    
                    @Input
                    public Path getFilePath() {
                        return new File("some-file").toPath();
                    }
    
                    @Input
                    public FileTree getFileTree() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/DependencyVerificationReportWriter.java

                    explainMultiFailure(renderer, state, failures);
                }
            });
        }
    
        private String extractFailedFilePaths(VerificationFailure f) {
            String shortenPath = shortenPath(f.getFilePath());
            File signatureFile = f.getSignatureFile();
            if (signatureFile != null) {
                return shortenPath + " (signature: " + shortenPath(signatureFile) + ")";
            }
            return shortenPath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/HtmlDependencyVerificationReportRenderer.java

            String fileLink = "<div uk-tooltip=\"title: From repository '" + repositoryName + "'\">";
            fileLink += "<a href=\"" + vf.getFilePath().toURI().toASCIIString() + "\">" + key.getFileName() + "</a>";
            File signatureFile = vf.getSignatureFile();
            if (signatureFile != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 14:42:50 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/ValidatePluginsPart2IntegrationTest.groovy

                    @Input
                    public FileCollection getFileCollection() {
                        return getProject().files();
                    }
    
                    @Input
                    public Path getFilePath() {
                        return new File("some-file").toPath();
                    }
    
                    @Input
                    public FileTree getFileTree() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 40K bytes
    - Viewed (0)
Back to top