Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,359 for executable_ (0.21 sec)

  1. tensorflow/compiler/jit/kernels/xla_ops.cc

    class ExecutableClosure {
     public:
      explicit ExecutableClosure(
          ClientType* client, ExecutableType* executable,
          const XlaCompiler::CompilationResult* compilation_result,
          ResourceVarsSnapshot resource_var_snapshots, int num_constant_args)
          : client_(client),
            executable_(executable),
            compilation_result_(compilation_result),
            resource_var_snapshots_(std::move(resource_var_snapshots)),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 22:46:36 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  2. src/os/executable.go

    // needed, [path/filepath.EvalSymlinks] might help.
    //
    // Executable returns an absolute path unless an error occurred.
    //
    // The main use case is finding resources located relative to an
    // executable.
    func Executable() (string, error) {
    	return executable()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 776 bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/device_compilation_cache_test.cc

      auto executable1 = std::make_unique<FakeExecutable>("foo_exe");
      auto executable2 = std::make_unique<FakeExecutable>("bar_exe");
      cache->Store(key1, DeviceCompileState::kCompiled,
                   errors::InvalidArgument("Invalid argument."),
                   std::move(compilation_result1), std::move(executable1));
      cache->Store(key2, DeviceCompileState::kCompiling, absl::OkStatus(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/tools/ToolSearchPath.java

            this.pathEntries.addAll(pathEntries);
            executables.clear();
        }
    
        public void path(File pathEntry) {
            pathEntries.add(pathEntry);
            executables.clear();
        }
    
        public CommandLineToolSearchResult locate(ToolType key, String exeName) {
            File executable = executables.get(exeName);
            if (executable == null) {
                executable = findExecutable(operatingSystem, exeName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_device_compiler_client.cc

      TF_ASSIGN_OR_RETURN(
          auto executables,
          client_->Compile(*result.computation, argument_layouts, build_options));
      TF_RET_CHECK(executables.size() == 1);
      return std::move(executables[0]);
    }
    
    absl::StatusOr<std::string> XlaDeviceCompilerClient::SerializeExecutable(
        const xla::LocalExecutable& executable) {
      if (executable.executable() == nullptr) {
        return errors::FailedPrecondition(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. src/os/exec/lp_wasm.go

    //go:build wasm
    
    package exec
    
    import (
    	"errors"
    )
    
    // ErrNotFound is the error resulting if a path search failed to find an executable file.
    var ErrNotFound = errors.New("executable file not found in $PATH")
    
    // LookPath searches for an executable named file in the
    // directories named by the PATH environment variable.
    // If file contains a slash, it is tried directly and the PATH is not consulted.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:38:12 UTC 2023
    - 1012 bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainCustomisationIntegrationTest.groovy

            then:
            executable("build/exe/main/arm/main").arch.name == "x86"
            executable("build/exe/main/arm/main").exec().out == helloWorldApp.frenchOutput
    
            executable("build/exe/main/i386/main").arch.name == "x86"
            executable("build/exe/main/i386/main").exec().out == helloWorldApp.englishOutput
    
            executable("build/exe/main/sparc/main").exec().out == helloWorldApp.englishOutput
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_compilation_cache.h

    template <typename ExecutableType>
    int64_t ExecutableSize(const ExecutableType* executable) {
      return 0;
    }
    
    template <>
    inline int64_t ExecutableSize<xla::LocalExecutable>(
        const xla::LocalExecutable* executable) {
      if (executable != nullptr && executable->executable() != nullptr) {
        return executable->executable()->SizeOfGeneratedCodeInBytes();
      }
    
      return 0;
    }
    
    template <>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 12 08:49:52 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. platforms/jvm/toolchains-jvm/src/main/java/org/gradle/jvm/toolchain/internal/JavaExecutableUtils.java

            // Relying on the layout of the toolchain distribution: <JAVA HOME>/bin/<executable>
            return resolveExecutable(executable).getParentFile().getParentFile();
        }
    
    
        public static void validateExecutable(@Nullable String executable, String executableDescription, File referenceFile, String referenceDescription) {
            if (executable == null) {
                return;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 28 16:17:59 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/clean_binary.txt

    # Build something to create the executable, including several cases
    [short] skip
    
    # --------------------- clean executables -------------------------
    
    # case1: test file-named executable 'main'
    env GO111MODULE=on
    
    ! exists main$GOEXE
    go build main.go
    exists -exec main$GOEXE
    go clean
    ! exists main$GOEXE
    
    # case2: test module-named executable 'a.b.c'
    ! exists a.b.c$GOEXE
    go build
    exists -exec a.b.c$GOEXE
    go clean
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 22 13:36:17 UTC 2020
    - 1.3K bytes
    - Viewed (0)
Back to top