Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,359 for executable_ (0.25 sec)

  1. tensorflow/compiler/jit/xla_launch_util_gpu_test.cc

                               xla::PjRtLoadedExecutable** executable,
                               XlaCompiler::CompileOptions compile_options = {}) {
        TF_EXPECT_OK(device_compiler_->CompileSingleOpIfNeeded(
            compiler_options_, args, compile_options, context_.get(), profiler_,
            result, executable));
      }
      // Creates a Variable. Doesn't add it to the resource manager.
      template <typename T>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. src/cmd/go/internal/clean/clean.go

    	}
    
    	_, elem := filepath.Split(p.Dir)
    	var allRemove []string
    
    	// Remove dir-named executable only if this is package main.
    	if p.Name == "main" {
    		allRemove = append(allRemove,
    			elem,
    			elem+".exe",
    			p.DefaultExecName(),
    			p.DefaultExecName()+".exe",
    		)
    	}
    
    	// Remove package test executables.
    	allRemove = append(allRemove,
    		elem+".test",
    		elem+".test.exe",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/cfg/cfg.go

    		// depend on the executable's location.
    		return def
    	}
    
    	// canonical returns a directory path that represents
    	// the same directory as dir,
    	// preferring the spelling in def if the two are the same.
    	canonical := func(dir string) string {
    		if isSameDir(def, dir) {
    			return def
    		}
    		return dir
    	}
    
    	exe, err := os.Executable()
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultBinaryNamingSchemeTest.groovy

            "test"        | "executable" | []                                         | null       | "test/executable"
            "test"        | "executable" | ["one", "two"]                             | null       | "test/executable/one/two"
            "mainLibrary" | "executable" | ["enterpriseEdition", "osx_x64", "static"] | null       | "mainLibrary/executable/enterpriseEdition/osx_x64/static"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10K bytes
    - Viewed (0)
  5. platforms/core-runtime/process-services/src/main/java/org/gradle/process/ProcessForkOptions.java

        /**
         * Returns the name of the executable to use.
         *
         * @return The executable.
         */
        String getExecutable();
    
        /**
         * Sets the name of the executable to use.
         *
         * @param executable The executable. Must not be null.
         * @since 4.0
         */
        void setExecutable(String executable);
    
        /**
         * Sets the name of the executable to use.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. src/runtime/traceback_system_test.go

    func TestTracebackSystem(t *testing.T) {
    	testenv.MustHaveExec(t)
    	if runtime.GOOS == "android" {
    		t.Skip("Can't read source code for this file on Android")
    	}
    
    	// Fork+exec the crashing process.
    	exe, err := os.Executable()
    	if err != nil {
    		t.Fatal(err)
    	}
    	cmd := testenv.Command(t, exe)
    	cmd.Env = append(cmd.Environ(), entrypointVar+"=crash")
    	var stdout, stderr bytes.Buffer
    	cmd.Stdout = &stdout
    	cmd.Stderr = &stderr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:19:04 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/tests/sanityCheck.sample.conf

    commands: [{
        executable: gradle
        args: tasks -q
    },{
        execution-subdirectory: admin-feature
        executable: gradle
        args: tasks -q
    },{
        execution-subdirectory: aggregation
        executable: gradle
        args: tasks -q
    },{
        execution-subdirectory: android-app
        executable: gradle
        args: tasks -q
    },{
        execution-subdirectory: build-logic
        executable: gradle
        args: tasks -q
    },{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 835 bytes
    - Viewed (0)
  8. 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)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainDiscoveryIntegrationTest.groovy

                    assembler.executable = 'does-not-exist'
                    cCompiler.executable = 'does-not-exist'
                    cppCompiler.executable = 'does-not-exist'
                    linker.executable = 'does-not-exist'
                    staticLibArchiver.executable = 'does-not-exist'
                    objcCompiler.executable = 'does-not-exist'
                    objcppCompiler.executable = 'does-not-exist'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/process/internal/DefaultProcessForkOptions.java

            this.executable = executable;
        }
    
        @Override
        public void setExecutable(Object executable) {
            this.executable = executable;
        }
    
        @Override
        public ProcessForkOptions executable(Object executable) {
            setExecutable(executable);
            return this;
        }
    
        @Override
        public File getWorkingDir() {
            if (workingDir == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top