Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 862 for otool (0.04 sec)

  1. src/cmd/go/testdata/script/cover_build_cmdline_pkgs.txt

    # always instrumented (but not their dependencies). This rule applies
    # inside and outside the standard library.
    
    [short] skip
    [!GOEXPERIMENT:coverageredesign] skip
    
    # Compile an object.
    go tool compile -p tiny tiny/tiny.go tiny/tiny2.go
    
    # Build a stdlib command with coverage.
    go build -o $WORK/nm.exe -cover cmd/nm 
    
    # Save off old GOCOVERDIR setting
    env SAVEGOCOVERDIR=$GOCOVERDIR
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/MetadataExtracter.java

     * be processed for generation in proper order later.
     */
    public class MetadataExtracter {
    
        public XRef extractMetadata(Set<File> sources) {
            antlr.Tool tool = new antlr.Tool();
            antlr.preprocessor.Hierarchy hierarchy = new antlr.preprocessor.Hierarchy(tool);
    
            // first let antlr preprocess the grammars...
            for (File grammarFileFile : sources) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/toolchain/ToolChainAvailability.java

            }
    
            return this;
        }
    
        public ToolChainAvailability mustBeAvailable(ToolSearchResult tool) {
            if (!tool.isAvailable() && reason == null) {
                reason = tool;
            }
            return this;
        }
    
        private static class FixedMessageToolSearchResult implements ToolSearchResult {
            private final String message;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. src/run.rc

    rfork e
    
    if(! test -f ../bin/go){
    	echo 'run.rc must be run from $GOROOT/src after installing cmd/go' >[1=2]
    	exit wrongdir
    }
    
    GOENV=off
    eval `{../bin/go tool dist env}
    
    GOPATH=/nonexist-gopath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 20:19:28 UTC 2022
    - 406 bytes
    - Viewed (0)
  5. src/cmd/internal/cov/covcmd/cmddefs.go

    	EmitMetaFile string
    }
    
    // CoverFixupConfig contains annotations/notes generated by the
    // cmd/cover tool (during instrumentation) to be passed on to the
    // compiler when the instrumented code is compiled. The cmd/cover tool
    // creates a struct of this type, JSON-encodes it, and emits the
    // result to a file, which the Go command then passes to the compiler
    // when the instrumented package is built.
    type CoverFixupConfig struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 30 16:13:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  6. src/cmd/pprof/doc.go

    // license that can be found in the LICENSE file.
    
    // Pprof interprets and displays profiles of Go programs.
    //
    // Basic usage:
    //
    //	go tool pprof binary profile
    //
    // For detailed usage information:
    //
    //	go tool pprof -h
    //
    // For an example, see https://blog.golang.org/profiling-go-programs.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 419 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/cover_mod_empty.txt

    go tool cover -func=cover.out
    stdout total.*statements.*0.0%
    
    go mod init golang.org/issue/33855
    
    go tool cover -func=cover.out
    stdout total.*statements.*0.0%
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 30 17:07:53 UTC 2019
    - 176 bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/swift/SwiftMissingToolchainIntegrationTest.groovy

            fails("assemble")
    
            then:
            failure.assertHasDescription("Execution failed for task ':compileDebugSwift'.")
            failure.assertHasCause("""No tool chain is available to build Swift for host operating system '${osName}' architecture '${archName}':
      - Tool chain 'swiftc' (Swift Compiler):
          - Could not find Swift compiler 'swiftc'. Searched in:
              - ${file('swift-bin')}""")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/plugins/ClangCompilerPluginTest.groovy

            expect:
            project.plugins.hasPlugin(pluginClass)
        }
    
        def "makes a Clang tool chain available"() {
            when:
            register()
    
            then:
            toolchain instanceof ClangToolChain
            toolchain.displayName == "Tool chain 'clang' (Clang)"
        }
    
        def "registers default Clang tool chain"() {
            when:
            addDefaultToolchain()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/plugins/GccCompilerPluginTest.groovy

            expect:
            project.plugins.hasPlugin(pluginClass)
        }
    
        def "makes a Gcc tool chain available"() {
            when:
            register()
    
            then:
            toolchain instanceof GccToolChain
            toolchain.displayName == "Tool chain 'gcc' (GNU GCC)"
        }
    
        def "registers default Gcc tool chain"() {
            when:
            addDefaultToolchain()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top