Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,211 for toolID (0.2 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/SwiftcPlatformToolChain.java

    /**
     * Swiftc specific settings for the tools used to build for a particular platform.
     *
     * @since 4.1
     */
    @Incubating
    public interface SwiftcPlatformToolChain extends NativePlatformToolChain {
        /**
         * Returns the compiler tool.
         */
        CommandLineToolConfiguration getSwiftCompiler();
    
        /**
         * Returns the linker tool.
         */
        CommandLineToolConfiguration getLinker();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/versions/toolchain.go

    // license that can be found in the LICENSE file.
    
    package versions
    
    // toolchain is maximum version (<1.22) that the go toolchain used
    // to build the current tool is known to support.
    //
    // When a tool is built with >=1.22, the value of toolchain is unused.
    //
    // x/tools does not support building with go <1.18. So we take this
    // as the minimum possible maximum.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 506 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/credentials-handling/pass-credentials-to-external-tool-via-stdin/README.adoc

    NOTE: You can open the samples inside an IDE using the https://www.jetbrains.com/help/idea/gradle.html#gradle_import_project_start[IntelliJ native importer] or https://projects.eclipse.org/projects/tools.buildship[Eclipse Buildship].
    
    This sample shows how credentials can be passed to an external tool that normally accepts them via standard input.
    
    Let's pretend that we have to log in to some system before performing some operation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChain.java

    import org.gradle.nativeplatform.toolchain.internal.tools.CommandLineToolSearchResult;
    import org.gradle.nativeplatform.toolchain.internal.tools.DefaultGccCommandLineToolConfiguration;
    import org.gradle.nativeplatform.toolchain.internal.tools.GccCommandLineToolConfigurationInternal;
    import org.gradle.nativeplatform.toolchain.internal.tools.ToolSearchPath;
    import org.gradle.platform.base.internal.toolchain.SearchResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 20K bytes
    - Viewed (0)
  5. src/cmd/cover/doc.go

    on a single Go source file at a time, or when invoked by the Go tool
    it will process all the source files in a single package at a time
    (package-scope instrumentation is enabled via "-pkgcfg" option).
    
    When generated instrumented code, the cover tool computes approximate
    basic block information by studying the source. It is thus more
    portable than binary-rewriting coverage tools, but also a little less
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppPlatformToolProvider.java

    import org.gradle.nativeplatform.toolchain.internal.msvcpp.metadata.VisualCppMetadata;
    import org.gradle.nativeplatform.toolchain.internal.tools.CommandLineToolConfigurationInternal;
    import org.gradle.nativeplatform.toolchain.internal.tools.CommandLineToolSearchResult;
    import org.gradle.process.internal.ExecActionFactory;
    import org.gradle.util.internal.VersionNumber;
    
    import java.io.File;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    	"reflect"
    	"sort"
    	"strings"
    	"sync"
    	"time"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/internal/analysisflags"
    	"golang.org/x/tools/internal/analysisinternal"
    	"golang.org/x/tools/internal/facts"
    	"golang.org/x/tools/internal/versions"
    )
    
    // A Config describes a compilation unit to be analyzed.
    // It is provided to the tool in a JSON-encoded file
    // whose name ends with ".cfg".
    type Config struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/GccPlatformToolProvider.java

    import org.gradle.nativeplatform.toolchain.internal.tools.CommandLineToolSearchResult;
    import org.gradle.nativeplatform.toolchain.internal.tools.GccCommandLineToolConfigurationInternal;
    import org.gradle.nativeplatform.toolchain.internal.tools.ToolRegistry;
    import org.gradle.nativeplatform.toolchain.internal.tools.ToolSearchPath;
    import org.gradle.platform.base.internal.toolchain.ComponentNotFound;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/install_cmd_gobin.txt

    # Verifies golang.org/issue/32674.
    env GOBIN=gobin
    mkdir gobin
    go list -f '{{.Target}}' cmd/go
    stdout $GOROOT${/}bin${/}go$GOEXE
    
    # Check that tools are installed to $GOTOOLDIR, not $GOBIN.
    go list -f '{{.Target}}' cmd/compile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 14:52:30 UTC 2022
    - 364 bytes
    - Viewed (0)
  10. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/PlatformToolProvider.java

    import org.gradle.nativeplatform.toolchain.internal.tools.CommandLineToolSearchResult;
    import org.gradle.platform.base.internal.toolchain.ToolProvider;
    
    public interface PlatformToolProvider extends ToolProvider {
        String getObjectFileExtension();
    
        String getExecutableName(String executablePath);
    
        String getSharedLibraryName(String libraryPath);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top