Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 194 for otool (0.04 sec)

  1. src/internal/testenv/testenv.go

    	}
    }
    
    // GoToolPath reports the path to the Go tool.
    // It is a convenience wrapper around GoTool.
    // If the tool is unavailable GoToolPath calls t.Skip.
    // If the tool should be available and isn't, GoToolPath calls t.Fatal.
    func GoToolPath(t testing.TB) string {
    	MustHaveGoBuild(t)
    	path, err := GoTool()
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. misc/go_android_exec/main.go

    // and temporary data. Then, it copies relevant parts of GOROOT to the device,
    // including the go tool built for android.
    // A lock file ensures this only happens once, even with concurrent exec
    // wrappers.
    func adbCopyGoroot() error {
    	goTool, err := goTool()
    	if err != nil {
    		return err
    	}
    	cmd := exec.Command(goTool, "version")
    	cmd.Stderr = os.Stderr
    	out, err := cmd.Output()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryCompilationIntegrationTest.groovy

                        }
                    }
                }
            }
    
            subproject('b') {
                'build.gradle'('''
                    apply plugin: 'java-library'
                ''')
                src {
                    main {
                        java {
                            'Tool.java'('public interface Tool { void execute(); }')
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 13:02:41 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformWithFileInputsIntegrationTest.groovy

                    }
                }
    """
    
            when:
            run(":a:resolve")
    
            then:
            outputContains("processing b.jar using [tool-a-1.2.jar, tool-b-1.2.jar]")
            outputContains("processing c.jar using [tool-a-1.2.jar, tool-b-1.2.jar]")
            outputContains("result = [b.jar.green, c.jar.green]")
        }
    
        def "transform can receive a file input from a nested bean on the parameter object"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 20.6K bytes
    - Viewed (0)
  5. src/syscall/mkall.sh

    	mksyscall="./mksyscall_libc.pl -aix"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	;;
    darwin_amd64)
    	mkerrors="$mkerrors -m64"
    	mksyscall="./mksyscall.pl -darwin"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	mkasm="go run mkasm.go"
    	;;
    darwin_arm64)
    	mkerrors="$mkerrors -m64"
    	mksyscall="./mksyscall.pl -darwin"
    	mktypes="GOARCH=$GOARCH go tool cgo -godefs"
    	mkasm="go run mkasm.go"
    	;;
    dragonfly_amd64)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 18:22:23 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  6. src/cmd/link/elf_test.go

    	"text/template"
    )
    
    func getCCAndCCFLAGS(t *testing.T, env []string) (string, []string) {
    	goTool := testenv.GoToolPath(t)
    	cmd := testenv.Command(t, goTool, "env", "CC")
    	cmd.Env = env
    	ccb, err := cmd.Output()
    	if err != nil {
    		t.Fatal(err)
    	}
    	cc := strings.TrimSpace(string(ccb))
    
    	cmd = testenv.Command(t, goTool, "env", "GOGCCFLAGS")
    	cmd.Env = env
    	cflagsb, err := cmd.Output()
    	if err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:34:01 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

                return "Test"
            }
        }
    
        def argsFor(GccCommandLineToolConfiguration tool) {
            assert tool instanceof GccCommandLineToolConfigurationInternal : "Expected argument to be an instance of GccCommandLineToolConfigurationInternal"
            def args = []
            tool.getArgAction().execute(args)
            args
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

            return name();
        }
    
        /**
         * Returns the identification of this path in the {@code javax.tool} API.
         * The value may be an instance of {@link StandardLocation} or {@link DocumentationTool.Location},
         * depending which tool will use this location.
         *
         * @return the {@code javax.tool} enumeration value corresponding to this {@code JavaPathType}
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppPlatformToolProvider.java

            return new LibExeStaticLibraryArchiver(buildOperationExecutor, commandLineTool, context(commandLineToolConfigurations.get(ToolType.STATIC_LIB_ARCHIVER)), Transformers.<StaticLibraryArchiverSpec>noOpTransformer(), workerLeaseService);
        }
    
        private CommandLineToolInvocationWorker tool(String toolName, File exe) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            where:
            when                                  | tool    | javaHome  | executable | errorFor
            "java home disagrees with executable" | null    | "other"   | "current"  | "executable"
            "tool disagrees with executable"      | "other" | null      | "current"  | "executable"
            "tool disagrees with java home"       | "other" | "current" | null       | "javaHome"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top