Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 862 for otool (0.04 sec)

  1. src/cmd/trace/doc.go

      - sync: synchronization blocking profile
      - syscall: syscall blocking profile
      - sched: scheduler latency profile
    
    Then, you can use the pprof tool to analyze the profile:
    
    	go tool pprof TYPE.pprof
    
    Note that while the various profiles available when launching
    'go tool trace' work on every browser, the trace viewer itself
    (the 'view trace' page) comes from the Chrome/Chromium project
    and is only actively tested on that browser.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 1K bytes
    - Viewed (0)
  2. test/linkmain_run.go

    	// helloworld.go is package main
        run("go tool compile -p=main -importcfg", tmp("importcfg"), "-o", tmp("linkmain.o"), "helloworld.go")
    	run("go tool compile -p=main -importcfg", tmp("importcfg"), " -pack -o", tmp("linkmain.a"), "helloworld.go")
    	run("go tool link -importcfg", tmp("importcfg"), "-o", tmp("linkmain.exe"), tmp("linkmain.o"))
    	run("go tool link -importcfg", tmp("importcfg"), "-o", tmp("linkmain.exe"), tmp("linkmain.a"))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeToolChainTestInterceptor.java

        // TODO: This exists because we detect all available native tool chains on a system (clang, gcc, swiftc, msvc).
        //
        // Many of our old tests assume that available tool chains can compile many/most languages, so they do not try to
        // restrict the required set of tool chains.
        //
        // The swiftc tool chain can build _only_ Swift, so tests that expect to use the swiftc tool chain properly annotate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/cpp/tests/nativeComponentReport.out

            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/hello/shared/libhello.dylib
        Static library 'hello:staticLibrary'
            build using task: :helloStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform 'current'
            tool chain: Tool chain 'clang' (Clang)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppMissingToolchainIntegrationTest.groovy

      - Tool chain 'clang' (Clang):
          - Could not find C++ compiler 'clang++'. Searched in:
              - ${file('clang-bin')}""")
            } else {
                failure.assertHasCause("""No tool chain is available to build C++ for host operating system '${osName}' architecture '${archName}':
      - Tool chain 'visualCpp' (Visual Studio):
          - Visual Studio is not available on this operating system.
      - Tool chain 'gcc' (GNU GCC):
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K 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. src/cmd/go/testdata/script/cover_build_pkg_select.txt

    grep 'bufio/bufio.go:' $WORK/covdata/out.txt
    
    # Use the covdata tool to select a specific set of module paths
    mkdir $WORK/covdata2
    go tool covdata merge -pkg=rsc.io/quote -i=$WORK/covdata -o=$WORK/covdata2
    
    # Examine the result.
    go tool covdata percent -i=$WORK/covdata2
    stdout  'coverage:.*[1-9][0-9.]+%'
    
    # Check for expected packages + check that we don't see things from stdlib.
    go tool covdata textfmt -i=$WORK/covdata2 -o=$WORK/covdata2/out.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  8. 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)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/DefaultTool.java

     */
    package org.gradle.nativeplatform.internal;
    
    import org.gradle.nativeplatform.Tool;
    
    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    
    /**
     * A tool that is part of a tool chain (compiler, linker, assembler, etc).
     */
    public class DefaultTool implements Tool {
        private final ArrayList<String> args = new ArrayList<String>();
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/GccCommandLineToolConfiguration.java

    import org.gradle.api.Incubating;
    
    /**
     * An executable tool used for GCC that allows customizing the executable.
     */
    @Incubating
    public interface GccCommandLineToolConfiguration extends CommandLineToolConfiguration {
        /**
         * The name of the executable file for this tool.
         */
        String getExecutable();
    
        /**
         * Set the name of the executable file for this tool.
         * The executable will be located in the tool chain path.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top