Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 131 for Executable (0.34 sec)

  1. src/debug/buildinfo/buildinfo.go

    type BuildInfo = debug.BuildInfo
    
    // errUnrecognizedFormat is returned when a given executable file doesn't
    // appear to be in a known format, or it breaks the rules of that format,
    // or when there are I/O errors reading the file.
    var errUnrecognizedFormat = errors.New("unrecognized file format")
    
    // errNotGoExe is returned when a given executable file is valid but does
    // not contain Go build information.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. platforms/native/tooling-native/src/crossVersionTest/groovy/org/gradle/language/cpp/tooling/r52/CppModelCrossVersionSpec.groovy

            debugX86Binary.compilationDetails.compileTask.path == ":compileDebugX86Cpp"
            debugX86Binary.compilationDetails.compileTask.name == "compileDebugX86Cpp"
            debugX86Binary.linkageDetails.outputLocation == toolchain.executable(file("build/exe/main/debug/x86/app")).file
            debugX86Binary.linkageDetails.additionalArgs.empty
            debugX86Binary.linkageDetails.linkTask.path == ":linkDebugX86"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/cpp/plugins/CppUnitTestPlugin.java

    import java.util.stream.Stream;
    
    import static org.gradle.language.nativeplatform.internal.Dimensions.tryToBuildOnHost;
    
    /**
     * A plugin that sets up the infrastructure for testing C++ binaries using a simple test executable.
     *
     * Gradle will create a {@link RunTestExecutable} task that relies on the exit code of the binary.
     *
     * @since 4.4
     */
    public abstract class CppUnitTestPlugin implements Plugin<Project> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

            def jvm = Jvm.current()
    
            then:
            jvm.isIbmJvm()
    
            where:
            vendorProperty << ['java.vendor', 'java.vm.vendor']
        }
    
        def "finds executable for java home supplied"() {
            System.properties['java.vm.vendor'] = 'Sun'
    
            when:
            def home = tmpDir.createDir("home")
            home.create {
                jre {
                    bin {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. src/syscall/exec_linux_test.go

    		} else if err != nil {
    			fmt.Fprintf(os.Stderr, "unshare: mount %s: %v\n", dir, err)
    			os.Exit(2)
    		}
    		os.Exit(0)
    	}
    
    	testenv.MustHaveExec(t)
    	exe, err := os.Executable()
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	d := t.TempDir()
    	t.Cleanup(func() {
    		// If the subprocess fails to unshare the parent directory, force-unmount it
    		// so that the test can clean it up.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/telemetry/start.go

    	// Fork+exec the telemetry child.
    	exe, err := os.Executable()
    	if err != nil {
    		// There was an error getting os.Executable. It's possible
    		// for this to happen on AIX if os.Args[0] is not an absolute
    		// path and we can't find os.Args[0] in PATH.
    		log.Printf("failed to start telemetry sidecar: os.Executable: %v", err)
    		return
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/macho_combine_dwarf.go

    		return err
    	}
    	return binary.Write(r.f, r.order, data)
    }
    
    // machoCombineDwarf merges dwarf info generated by dsymutil into a macho executable.
    //
    // With internal linking, DWARF is embedded into the executable, this lets us do the
    // same for external linking.
    // exef is the file of the executable with no DWARF. It must have enough room in the macho
    // header to add the DWARF sections. (Use ld's -headerpad option)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

    For example, you can configure the `java` executable for a task as follows:
    
    ====
    include::sample[dir="snippets/java/toolchain-config-task/kotlin/",files="build.gradle.kts[tags=java-executable]"]
    include::sample[dir="snippets/java/toolchain-config-task/groovy/",files="build.gradle[tags=java-executable]"]
    ====
    
    As another example, you can configure the _Java Home_ for a task as follows:
    
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/tfcompile.bzl

        full_cmd = (
            ctx.executable.tfcompile_tool.path + " " + " ".join(flags) + " " + ctx.attr.flags + post_command
        )
        ctx.actions.run_shell(
            inputs = ctx.files.srcs,
            outputs = out_files,
            tools = [ctx.executable.tfcompile_tool] + dfsan_deps,
            env = tfcompile_env,
            command = full_cmd,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/build.go

    executable to an output file named after the last non-major-version
    component of the package import path. The '.exe' suffix is added
    when writing a Windows executable.
    So 'go build example/sam' writes 'sam' or 'sam.exe'.
    'go build example.com/foo/v2' writes 'foo' or 'foo.exe', not 'v2.exe'.
    
    When compiling a package from a list of .go files, the executable
    is named after the first source file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 17:22:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top