Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. src/cmd/go/testdata/script/cover_build_simple.txt

    exec ./example.exe normal
    ! stderr '^warning: GOCOVERDIR not set, no coverage data emitted'
    go tool covdata percent -i=data/normal
    stdout  'coverage:.*[1-9][0-9.]+%'
    
    # Program makes a direct call to os.Exit(0).
    env GOCOVERDIR=data/goodexit
    exec ./example.exe goodexit
    ! stderr '^warning: GOCOVERDIR not set, no coverage data emitted'
    go tool covdata percent -i=data/goodexit
    stdout  'coverage:.*[1-9][0-9.]+%'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 11:50:58 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/GccCompatibleToolChain.java

        /**
         * The paths setting required for executing the tool chain.
         * These are used to locate tools for this tool chain, and are prepended to the system PATH when executing these tools.
         */
        List<File> getPath();
    
        /**
         * Append an entry or entries to the tool chain path.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/toolchain/java/JavaToolchainImpl.java

            if (Files.isDirectory(bin)) {
                if (Os.IS_WINDOWS) {
                    Path tool = bin.resolve(toolName + ".exe");
                    if (Files.exists(tool)) {
                        return tool;
                    }
                }
                Path tool = bin.resolve(toolName);
                if (Files.exists(tool)) {
                    return tool;
                }
            }
            return null;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:01:36 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_json_exit.txt

    ! go test -json ./mainpanic
    stdout '"Action":"fail"'
    ! stdout '"Action":"pass"'
    
    ! go tool test2json ./mainpanic.exe
    stdout '"Action":"fail"'
    ! stdout '"Action":"pass"'
    
    # Test binaries that exit with status 0 should be marked as passing.
    
    go test -json ./mainexit0
    stdout '"Action":"pass"'
    ! stdout '"Action":"fail"'
    
    go tool test2json ./mainexit0.exe
    stdout '"Action":"pass"'
    ! stdout '"Action":"fail"'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 19:43:21 UTC 2020
    - 2K bytes
    - Viewed (0)
  7. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/ToolSearchBuildAbilityTest.groovy

        }
    
        def "explains reason when tool search is not successful" () {
            def visitor = Mock(DiagnosticsVisitor)
    
            when:
            result.isAvailable() >> false
            result.explain(_) >> { DiagnosticsVisitor v ->
                v.node("Tool search failed")
            }
            ability.explain(visitor)
    
            then:
            1 * visitor.node("Tool search failed")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/toolchain/Toolchain.java

         *
         * @return the toolchain type
         */
        String getType();
    
        /**
         * Gets the platform tool executable.
         *
         * @param toolName the tool platform independent tool name.
         * @return file representing the tool executable, or null if the tool can not be found
         */
        String findTool(String toolName);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ForcedModulesIntegrationTest.groovy

            mavenRepo.module("org", "foo", '1.3.3').publish()
            mavenRepo.module("org", "foo", '1.4.4').publish()
    
            createDirs("api", "impl", "tool")
            settingsFile << "include 'api', 'impl', 'tool'"
    
            buildFile << """
    allprojects {
    	apply plugin: 'java'
    	repositories { maven { url "${mavenRepo.uri}" } }
    }
    
    project(':api') {
    	dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/SwiftcPlatformToolChain.java

     *
     * @since 4.1
     */
    @Incubating
    public interface SwiftcPlatformToolChain extends NativePlatformToolChain {
        /**
         * Returns the compiler tool.
         */
        CommandLineToolConfiguration getSwiftCompiler();
    
        /**
         * Returns the linker tool.
         */
        CommandLineToolConfiguration getLinker();
    
        /**
         * Returns the settings to use for the archiver.
         *
         * @since 4.5
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top