Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 296 for Executable (0.14 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/api/tasks/compile/JavaCompile.java

            }
    
            String customExecutablePath = forkOptions.getExecutable();
            if (customExecutablePath != null) {
                // We do not match the custom executable against the compiler executable from the toolchain (javac),
                // because the custom executable can be set to the path of another tool in the toolchain such as a launcher (java).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:33:35 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  2. src/os/executable_solaris.go

    package os
    
    import (
    	"syscall"
    	_ "unsafe" // for linkname
    )
    
    //go:linkname executablePath
    var executablePath string // set by sysauxv in ../runtime/os3_solaris.go
    
    var initCwd, initCwdErr = Getwd()
    
    func executable() (string, error) {
    	path := executablePath
    	if len(path) == 0 {
    		path, err := syscall.Getexecname()
    		if err != nil {
    			return path, err
    		}
    	}
    	if len(path) > 0 && path[0] != '/' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 757 bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/xla_launch_util.cc

      std::vector<std::unique_ptr<xla::PjRtBuffer>> execute_outputs;
      std::optional<xla::PjRtFuture<>> future;
      if (executable->num_replicas() != 1 || executable->num_partitions() != 1) {
        TF_ASSIGN_OR_RETURN(
            execute_outputs,
            executable->ExecuteSharded(
                executable_args, device,
                GetPjRtExecuteOptions(device_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  4. src/cmd/link/doc.go

    // license that can be found in the LICENSE file.
    
    /*
    Link, typically invoked as “go tool link”, reads the Go archive or object
    for a package main, along with its dependencies, and combines them
    into an executable binary.
    
    # Command Line
    
    Usage:
    
    	go tool link [flags] main.a
    
    Flags:
    
    	-B note
    		Add an ELF_NT_GNU_BUILD_ID note when using ELF.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:11:52 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/kotlin-multiplatform-js-jvm-example/gradle.properties

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    #
    kotlin.code.style=official
    kotlin.js.generate.executable.default=false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 07:33:24 UTC 2024
    - 704 bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/xcode/XcodeSwiftApplicationProjectIntegrationTest.groovy

                project(':greeter') {
                    apply plugin: 'swift-library'
                }
            """
            def app = new SwiftAppWithLibrary()
            app.library.writeToProject(file('greeter'))
            app.executable.writeToProject(file('app'))
    
            when:
            succeeds("xcode")
    
            then:
            executedAndNotSkipped(":app:xcodeProject", ":app:xcodeProjectWorkspaceSettings", ":app:xcode",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/macho_update_uuid.go

    // difficult/impossible to support reproducible builds. Since we try
    // hard to maintain build reproducibility for Go, the APIs here
    // compute a new UUID (based on the Go build ID) and write it to the
    // final executable generated by the external linker.
    
    import (
    	"cmd/internal/notsha256"
    	"debug/macho"
    	"io"
    	"os"
    	"unsafe"
    )
    
    // uuidFromGoBuildId hashes the Go build ID and returns a slice of 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  8. src/runtime/vdso_test.go

    		strace = "/usr/bin/strace"
    		if _, err := os.Stat(strace); err != nil {
    			t.Skipf("skipping test because strace not found: %v", err)
    		}
    	}
    
    	exe, err := os.Executable()
    	if err != nil {
    		t.Skipf("skipping because Executable failed: %v", err)
    	}
    
    	t.Logf("GO_WANT_HELPER_PROCESS=1 %s -f -e clock_gettime %s -test.run=^TestUsingVDSO$", strace, exe)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 17 19:47:47 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  9. src/cmd/go/internal/clean/clean.go

    		p.DefaultExecName()+".test.exe",
    	)
    
    	// Remove a potential executable, test executable for each .go file in the directory that
    	// is not part of the directory's package.
    	for _, dir := range dirs {
    		name := dir.Name()
    		if packageFile[name] {
    			continue
    		}
    
    		if dir.IsDir() {
    			continue
    		}
    
    		if base, found := strings.CutSuffix(name, "_test.go"); found {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaToolchainBuildOperationsIntegrationTest.groovy

            "java home"  | 'options.forkOptions.javaHome = file("<path>")' | ''
            "executable" | 'options.forkOptions.executable = "<path>"'     | OperatingSystem.current().getExecutableName('/bin/javac')
        }
    
        @Issue("https://github.com/gradle/gradle/issues/21367")
        def "emits toolchain usages for test that configures executable path"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top