Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 862 for otool (0.04 sec)

  1. src/make.rc

    # GOARCH: The target architecture for installed packages and tools.
    #
    # GOOS: The target operating system for installed packages and tools.
    #
    # GO_GCFLAGS: Additional go tool compile arguments to use when
    # building the packages and commands.
    #
    # GO_LDFLAGS: Additional go tool link arguments to use when
    # building the commands.
    #
    # CGO_ENABLED: Controls cgo usage during the build. Set it to 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/CommandLineToolConfiguration.java

     */
    
    package org.gradle.nativeplatform.toolchain;
    
    import org.gradle.api.Action;
    import org.gradle.api.Incubating;
    
    import java.util.List;
    
    /**
     * An executable tool that forms part of a tool chain.
     */
    @Incubating
    public interface CommandLineToolConfiguration {
        /**
         * Adds an action that will be applied to the command-line arguments prior to execution.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  3. src/cmd/vet/doc.go

    Vet's exit code is non-zero for erroneous invocation of the tool or if a
    problem was reported, and 0 otherwise. Note that the tool does not
    check every possible problem and depends on unreliable heuristics,
    so it should be used as guidance only, not as a firm indicator of
    program correctness.
    
    To list the available checks, run "go tool vet help":
    
    	appends          check for missing values after append
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 00:17:30 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/promotion/PromotionProject.kt

            password("env.ORG_GRADLE_PROJECT_gradleS3SecretKey", "%gradleS3SecretKey%")
            password("env.ORG_GRADLE_PROJECT_artifactoryUserPassword", "%gradle.internal.repository.build-tool.publish.password%")
            password("env.DOTCOM_DEV_DOCS_AWS_ACCESS_KEY", "%dotcomDevDocsAwsAccessKey%")
            password("env.DOTCOM_DEV_DOCS_AWS_SECRET_KEY", "%dotcomDevDocsAwsSecretKey%")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 04:36:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/plugins/XCTestPluginOnUnsupportedPlatformIntegrationTest.groovy

            app.writeToProject(testDirectory)
    
            when:
            fails "check"
            then:
            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' in system path.""")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/PlatformToolProvider.java

        String getExecutableName(String executablePath);
    
        String getSharedLibraryName(String libraryPath);
    
        /**
         * Does this tool chain produce an import library when linking a shared library?
         */
        boolean producesImportLibrary();
    
        /**
         * Whether or not this tool chain requires a debuggable binary to be stripped or whether the binary is stripped by default.
         */
        boolean requiresDebugBinaryStripping();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/DefaultCommandLineToolInvocationWorkerTest.groovy

                newExecAction() >> execAction
            }
    
            def context = new DefaultMutableCommandLineToolContext()
            def executable = Mock(File)
            def commandLineTool = new DefaultCommandLineToolInvocationWorker("Tool", executable, execActionFactory)
            def invocation = new DefaultCommandLineToolInvocation("doing something", null, [], context, Mock(BuildOperationLogger))
    
            when:
            commandLineTool.execute(invocation, null)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/distpack/archive_test.go

    	{"a/**", "z/a/b/c/d/e/f", false},
    	{"**/a", "a", true},
    	{"**/a", "b", false},
    	{"**/a", "x/a", true},
    	{"**/a", "x/a/b", false},
    	{"**/a", "x/y/z/a", true},
    	{"**/a", "x/y/z/a/b", false},
    
    	{"go/pkg/tool/*/compile", "go/pkg/tool/darwin_amd64/compile", true},
    }
    
    func TestAmatch(t *testing.T) {
    	for _, tt := range amatchTests {
    		ok, err := amatch(tt.pattern, tt.name)
    		if ok != tt.ok || err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 11 21:29:13 UTC 2023
    - 938 bytes
    - Viewed (0)
  9. test/fixedbugs/issue36437.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Tests that when non-existent files are passed to the
    // compiler, such as in:
    //    go tool compile foo
    // we don't print the beginning position:
    //    foo:0: open foo: no such file or directory
    // but instead omit it and print out:
    //    open foo: no such file or directory
    
    package main
    
    import (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. src/cmd/objdump/main.go

    // Objdump disassembles executable files.
    //
    // Usage:
    //
    //	go tool objdump [-s symregexp] binary
    //
    // Objdump prints a disassembly of all text symbols (code) in the binary.
    // If the -s option is present, objdump only disassembles
    // symbols with names matching the regular expression.
    //
    // Alternate usage:
    //
    //	go tool objdump binary start end
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top