Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 596 for otool (0.13 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/AbstractNativeBinarySpec.java

        private final Set<? super Object> libs = new LinkedHashSet<Object>();
        private final Tool linker = new DefaultTool();
        private final Tool staticLibArchiver = new DefaultTool();
    
        // TODO:HH Use managed views for this, only applied when the respective language is applied
        private final Tool assembler = new DefaultTool();
        private final PreprocessingTool cCompiler = new DefaultPreprocessingTool();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. src/make.bat

    if...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. Jenkinsfile

                String mvnName = jenkinsEnv.mvnFromVersion(buildOs, buildMvn)
                try {
                    withEnv(["JAVA_HOME=${ tool "$jdkName" }",
                             "PATH+MAVEN=${ tool "$jdkName" }/bin:${tool "$mvnName"}/bin",
                             "MAVEN_OPTS=-Xms2g -Xmx4g -Djava.awt.headless=true"]) {                   
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. src/runtime/defs_openbsd.go

    // license that can be found in the LICENSE file.
    
    //go:build ignore
    
    /*
    Input to cgo.
    
    GOARCH=amd64 go tool cgo -godefs defs_openbsd.go
    GOARCH=386 go tool cgo -godefs defs_openbsd.go
    GOARCH=arm go tool cgo -godefs defs_openbsd.go
    GOARCH=arm64 go tool cgo -godefs defs_openbsd.go
    GOARCH=mips64 go tool cgo -godefs defs_openbsd.go
    */
    
    package runtime
    
    /*
    #include <sys/types.h>
    #include <sys/event.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 17:31:23 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/ssa_test.go

    // of the generated test.
    func runGenTest(t *testing.T, filename, tmpname string, ev ...string) {
    	testenv.MustHaveGoRun(t)
    	gotool := testenv.GoToolPath(t)
    	var stdout, stderr bytes.Buffer
    	cmd := testenv.Command(t, gotool, "run", filepath.Join("testdata", filename))
    	cmd.Stdout = &stdout
    	cmd.Stderr = &stderr
    	if err := cmd.Run(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. src/cmd/cover/doc.go

    is referred to "instrumentation"). Cover can operate in "legacy mode"
    on a single Go source file at a time, or when invoked by the Go tool
    it will process all the source files in a single package at a time
    (package-scope instrumentation is enabled via "-pkgcfg" option).
    
    When generated instrumented code, the cover tool computes approximate
    basic block information by studying the source. It is thus more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. test/fixedbugs/bug369.go

    	run("go", "tool", "compile", "-importcfg="+tmp("importcfg"), "-p=test/slow", "-N", "-o", tmp("test/slow.o"), "pkg.go")
    	run("go", "tool", "compile", "-importcfg="+tmp("importcfg"), "-p=test/fast", "-o", tmp("test/fast.o"), "pkg.go")
    	run("go", "tool", "compile", "-importcfg="+tmp("importcfg"), "-p=main", "-D", "test", "-o", tmp("main.o"), "main.go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/VisualCppToolChainDiscoveryIntegrationTest.groovy

            failure.assertHasCause("""No tool chain is available to build for platform '${NativePlatformsTestFixture.defaultPlatformName}':
      - ${toolChain.instanceDisplayName}:
          - The specified installation directory '${file('does-not-exist')}' does not appear to contain a Visual Studio installation.""")
        }
    
        def "tool chain is not available when SDK install is not available"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/tools/ToolSearchPathTest.groovy

            os.path >> [file.parentFile]
    
            when:
            def result = registry.locate(ToolType.C_COMPILER, "cc")
    
            then:
            result.available
            result.tool == file
        }
    
        def "finds executable in provided path"() {
            def file = tmpDir.createFile("cc.bin")
    
            given:
            os.getExecutableName("cc") >> "cc.bin"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  10. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitComponentReportIntegrationTest.groovy

            install using task: :installSomeExeExecutable
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform '$currentNative'
            tool chain: Tool chain 'clang' (Clang)
            executable file: build/exe/someExe/someExe
    
    Cunit test suite 'someExeTest'
    ------------------------------
    
    Source sets
        C source 'someExeTest:c'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top