Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 862 for otool (0.18 sec)

  1. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchainManagerPrivate.java

                        toRet.add(fact.createToolchain(tm));
                    }
                }
    
                // add default toolchain
                ToolchainPrivate tool = fact.createDefaultToolchain();
                if (tool != null) {
                    toRet.add(tool);
                }
            }
    
            return toRet.toArray(new ToolchainPrivate[0]);
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeBinaryFixture.groovy

        }
    
        void assertDoesNotExist() {
            file.assertDoesNotExist()
        }
    
        // Does nothing when tool chain does not generate a separate debug file
        void assertDebugFileExists() {
            if (toolChain.visualCpp) {
                getSymbolFile().assertIsFile()
            }
        }
    
        // Does nothing when tool chain does not generate a separate debug file
        void assertDebugFileDoesNotExist() {
            if (toolChain.visualCpp) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/tasks/UnexportMainSymbol.java

                        // TODO: should use target platform to make this decision
                        if (OperatingSystem.current().isMacOsX()) {
                            execSpec.executable("ld"); // TODO: Locate this tool from a tool provider
                            execSpec.args(object);
                            execSpec.args("-o", relocatedObject);
                            execSpec.args("-r"); // relink, produce another object file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. src/cmd/go/internal/fix/fix.go

    The -fix flag sets a comma-separated list of fixes to run.
    The default is all known fixes.
    (Its value is passed to 'go tool fix -r'.)
    
    For more about fix, see 'go doc cmd/fix'.
    For more about specifying packages, see 'go help packages'.
    
    To run fix with other options, run 'go tool fix'.
    
    See also: go fmt, go vet.
    	`,
    }
    
    var fixes = CmdFix.Flag.String("fix", "", "comma-separated list of fixes to apply")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/test/reproduciblebuilds_test.go

    			defer tmp.Close()
    			for i := 0; i < iters; i++ {
    				// Note: use -c 2 to expose any nondeterminism which is the result
    				// of the runtime scheduler.
    				out, err := testenv.Command(t, testenv.GoToolPath(t), "tool", "compile", "-p=p", "-c", "2", "-o", tmp.Name(), filepath.Join("testdata", "reproducible", test)).CombinedOutput()
    				if err != nil {
    					t.Fatalf("failed to compile: %v\n%s", err, out)
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/link_matching_actionid.txt

    env GOROOT=$WORK/goroot2
    symlink $GOROOT -> $TESTGO_GOROOT
    
    env GOCACHE=$WORK/gocache2
    mkdir $GOCACHE
    
    go build -o binary2 -trimpath -x main.go
    
    # Check that the binaries match exactly
    go tool buildid binary1
    cp stdout buildid1
    go tool buildid binary2
    cp stdout buildid2
    cmp buildid1 buildid2
    
    
    -- main.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 14:18:11 UTC 2020
    - 835 bytes
    - Viewed (0)
  7. src/race.bat

    L8:@echo off
    L9:
    L10:setlocal
    L11:
    L12:if exist make.bat goto ok
    L13:echo race.bat must be run from go\src
    L14::: cannot exit: would kill parent command interpreter
    L15:goto end
    L16::ok
    L17:
    L18:set GOROOT=%CD%\..
    L19:call .\make.bat --dist-tool >NUL
    L20:if errorlevel 1 goto fail
    L21:.\cmd\dist\dist.exe env -w -p >env.bat
    L22:if errorlevel 1 goto fail
    L23:call .\env.bat
    L24:del env.bat
    L25:
    L26:if %GOHOSTARCH% == amd64 goto continue
    L27:echo Race detector is only supported on windows/amd64.
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 16:59:17 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    //
    //	-V=full         describe executable               (to the build tool)
    //	-flags          describe flags                    (to the build tool)
    //	foo.cfg         description of compilation unit (from the build tool)
    //
    // This package does not depend on go/packages.
    // If you need a standalone tool, use multichecker,
    // which supports this mode but can also load packages
    // from source using go/packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  9. src/net/http/pprof/pprof.go

    //
    // # Usage examples
    //
    // Use the pprof tool to look at the heap profile:
    //
    //	go tool pprof http://localhost:6060/debug/pprof/heap
    //
    // Or to look at a 30-second CPU profile:
    //
    //	go tool pprof http://localhost:6060/debug/pprof/profile?seconds=30
    //
    // Or to look at the goroutine blocking profile, after calling
    // [runtime.SetBlockProfileRate] in your program:
    //
    //	go tool pprof http://localhost:6060/debug/pprof/block
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/NativePlatformToolChain.java

    import org.gradle.api.Incubating;
    import org.gradle.nativeplatform.platform.NativePlatform;
    
    /**
     * A platform specific configurable tool chain.
     */
    @Incubating
    public interface NativePlatformToolChain {
        /**
         * Returns the platform which this tool chain builds for.
         */
        NativePlatform getPlatform();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 981 bytes
    - Viewed (0)
Back to top