Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 299 for Executable (0.4 sec)

  1. 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)
  2. tensorflow/compiler/jit/device_compilation_cache_test.cc

      EXPECT_TRUE(cache_value->executable != nullptr);
      EXPECT_EQ(cache_value->executable->data, "foo_exe");
    }
    
    TEST(DeviceCompilationCacheTest, StoreLookupOrCreate) {
      auto cache = std::make_unique<Cache>();
    
      TF_ASSERT_OK_AND_ASSIGN(auto key, BuildSampleSignature("foo"));
      auto compilation_result = std::make_unique<XlaCompiler::CompilationResult>();
      auto executable = std::make_unique<FakeExecutable>("foo_exe");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  3. 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)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestTaskToolchainIntegrationTest.groovy

                }
                test {
                    executable = new File(".").getCanonicalFile().toPath().relativize(new File("${executable}").toPath()).toString()
                }
            """
            when:
            executer.expectDocumentedDeprecationWarning("Configuring a Java executable via a relative path. " +
                "This behavior has been deprecated. This will fail with an error in Gradle 9.0. " +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/pjrt_device_compiler_client.cc

      TF_ASSIGN_OR_RETURN(auto executable,
                          client_->Compile(*result.computation,
                                           GetPjRtCompileOptions(options, result)));
    
      VLOG(2) << "Compiled PJRT executable " << executable->name()
              << " num_replicas " << executable->num_replicas()
              << " num_partitions " << executable->num_partitions();
    
      return std::move(executable);
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/preflight/checks_linux.go

    	checks = append(checks,
    		InPathCheck{executable: "crictl", mandatory: false, exec: execer},
    		InPathCheck{executable: "conntrack", mandatory: true, exec: execer},
    		InPathCheck{executable: "ip", mandatory: true, exec: execer},
    		InPathCheck{executable: "iptables", mandatory: true, exec: execer},
    		InPathCheck{executable: "mount", mandatory: true, exec: execer},
    		InPathCheck{executable: "nsenter", mandatory: true, exec: execer},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_launch_util_test.cc

      const XlaCompiler::CompilationResult* result;
      xla::PjRtLoadedExecutable* executable;
      CompileToExecutable(args, &result, &executable);
    
      std::vector<const Tensor*> inputs;
      inputs.push_back(a);
      inputs.push_back(b);
      TF_ASSERT_OK_AND_ASSIGN(auto execute_outputs,
                              RunExecutable(inputs, {}, result, executable));
    
      TF_EXPECT_OK(PopulateCtxOutputsFromPjRtExecutableOutputs(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 28.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_executable_persistor.h

      *serialized_entry.mutable_hlo_module() = hlo_module;
    
      // XLA compiler supports exporting executables as an AOT compilation result
      // to avoid running potentially expensive compilation pipeline twice.
      // Check if XLA compiler can export available executable.
      if (auto serialized_executable =
              compiler_client->SerializeExecutable(executable);
          serialized_executable.ok()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultExecutionStateChangeDetector.java

        private static ChangeContainer errorHandling(Describable executable, ChangeContainer wrapped) {
            return new ErrorHandlingChangeContainer(executable, wrapped);
        }
    
        private static InputFileChanges errorHandling(Describable executable, InputFileChanges wrapped) {
            ErrorHandlingChangeContainer errorHandlingChangeContainer = new ErrorHandlingChangeContainer(executable, wrapped);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/DefaultGroovyJavaJointCompileSpecFactory.java

            private final File executable;
    
            private DefaultCommandLineGroovyJavaJointCompileSpec(File executable) {
                this.executable = executable;
            }
    
            @Override
            public File getExecutable() {
                return executable;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top