Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 839 for TOOL (0.03 sec)

  1. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavaInstallationMetadata.java

    import org.gradle.api.tasks.Internal;
    
    /**
     * Metadata about a Java tool obtained from a toolchain.
     *
     * @see JavaLauncher
     * @see JavaCompiler
     * @see JavadocTool
     *
     * @since 6.7
     */
    public interface JavaInstallationMetadata {
        /**
         * Returns the language version of the JVM to which this tool belongs
         *
         * @return the {@code JavaLanguageVersion}
         */
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/os/signal/sig.s

    // license that can be found in the LICENSE file.
    
    // The runtime package uses //go:linkname to push a few functions into this
    // package but we still need a .s file so the Go tool does not pass -complete
    // to the go tool compile so the latter does not complain about Go functions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 23:34:33 UTC 2016
    - 410 bytes
    - Viewed (0)
  3. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/DefaultSwiftcPlatformToolChain.java

        public DefaultSwiftcPlatformToolChain(NativePlatform platform) {
            this.platform = platform;
        }
    
        public void add(DefaultCommandLineToolConfiguration tool) {
            tools.put(tool.getToolType(), tool);
        }
    
        @Override
        public CommandLineToolConfiguration getSwiftCompiler() {
            return tools.get(ToolType.SWIFT_COMPILER);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. Jenkinsfile.s390x

                String mvnName = jenkinsEnv.mvnFromVersion(buildOs, buildMvn)
                try {
                    withEnv(["JAVA_HOME=${ tool "$jdkName" }",
                             "PATH+MAVEN=${ tool "$jdkName" }/bin:${tool "$mvnName"}/bin",
                             "MAVEN_OPTS=-Xms2g -Xmx4g -Djava.awt.headless=true"]) {                   
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java-library/src/integTest/groovy/org/gradle/java/JavaLibraryDocumentationIntegrationTest.groovy

                    }
                ''')
                src {
                    main {
                        java {
                            'Tool.java'('public interface Tool { void execute(); }')
                            'ToolHelper.java'('public class ToolHelper { void execute() { new Internal().use(); } ; }')
                        }
                    }
                }
            }
            subproject('c') {
                'build.gradle'('')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/testFixtures/groovy/org/gradle/language/AbstractNativeLanguageComponentIntegrationTest.groovy

                        }
                    }
                }
            """
    
            expect:
            succeeds "verifyBinariesPlatformType"
        }
    
        def "binaries have the right tool chain type"() {
            given:
            makeSingleProject()
            buildFile << """
                task verifyBinariesToolChainType {
                    doLast {
                        ${componentUnderTestDsl}.binaries.get().each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. src/cmd/buildid/doc.go

    /*
    Buildid displays or updates the build ID stored in a Go package or binary.
    
    Usage:
    
    	go tool buildid [-w] file
    
    By default, buildid prints the build ID found in the named file.
    If the -w option is given, buildid rewrites the build ID found in
    the file to accurately record a content hash of the file.
    
    This tool is only intended for use by the go command or
    other build systems.
    */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 558 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/cover_asm.txt

    [short] skip
    [compiler:gccgo] skip # gccgo has no cover tool
    
    # Test cover for a package that has an assembly function.
    
    go test -outputdir=$WORK -coverprofile=cover.out coverasm
    go tool cover -func=$WORK/cover.out
    stdout '\tg\t*100.0%' # Check g is 100% covered.
    ! stdout '\tf\t*[0-9]' # Check for no coverage on the assembly function
    
    -- go.mod --
    module coverasm
    
    go 1.16
    -- p.go --
    package p
    
    func f()
    
    func g() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 604 bytes
    - Viewed (0)
  9. platforms/enterprise/enterprise-operations/src/main/java/org/gradle/jvm/toolchain/internal/operations/JavaToolchainUsageProgressDetails.java

    
    /**
     * Details about the Java tool being used and the toolchain it belongs to.
     *
     * @since 7.6
     */
    public interface JavaToolchainUsageProgressDetails {
    
        /**
         * Name of the tool from Java distribution such as {@code javac}, {@code java} or {@code javadoc}.
         */
        String getToolName();
    
        /**
         * Toolchain to which the tool belongs.
         */
        JavaToolchain getToolchain();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 10 08:07:59 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/build_cwd_newline.txt

    ! stdout .
    ! stderr .
    ! exists obj_
    
    
    # The cgo tool should only accept the source file if the working directory
    # is not written in line directives in the resulting files.
    
    [cgo] ! go tool cgo main.go
    [cgo] stderr 'cgo: input path contains newline character: .*uh-oh'
    [cgo] ! exists _obj
    
    [cgo] go tool cgo -trimpath=$PWD main.go
    [cgo] grep '//line main\.go:1:1' _obj/main.cgo1.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top