Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 839 for TOOL (0.05 sec)

  1. test/fixedbugs/bug369.go

    	run("go", "tool", "compile", "-importcfg="+tmp("importcfg"), "-p=test/slow", "-N", "-o", tmp("test/slow.o"), "pkg.go")
    	run("go", "tool", "compile", "-importcfg="+tmp("importcfg"), "-p=test/fast", "-o", tmp("test/fast.o"), "pkg.go")
    	run("go", "tool", "compile", "-importcfg="+tmp("importcfg"), "-p=main", "-D", "test", "-o", tmp("main.o"), "main.go")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/tools/ToolSearchPathTest.groovy

            os.path >> [file.parentFile]
    
            when:
            def result = registry.locate(ToolType.C_COMPILER, "cc")
    
            then:
            result.available
            result.tool == file
        }
    
        def "finds executable in provided path"() {
            def file = tmpDir.createFile("cc.bin")
    
            given:
            os.getExecutableName("cc") >> "cc.bin"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitComponentReportIntegrationTest.groovy

            install using task: :installSomeExeExecutable
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform '$currentNative'
            tool chain: Tool chain 'clang' (Clang)
            executable file: build/exe/someExe/someExe
    
    Cunit test suite 'someExeTest'
    ------------------------------
    
    Source sets
        C source 'someExeTest:c'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppPlatformToolProvider.java

            return new LibExeStaticLibraryArchiver(buildOperationExecutor, commandLineTool, context(commandLineToolConfigurations.get(ToolType.STATIC_LIB_ARCHIVER)), Transformers.<StaticLibraryArchiverSpec>noOpTransformer(), workerLeaseService);
        }
    
        private CommandLineToolInvocationWorker tool(String toolName, File exe) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  5. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavaLauncher.java

     *
     * @since 6.7
     */
    public interface JavaLauncher {
    
        /**
         * Returns metadata information about this tool
         *
         * @return the tool metadata
         */
        @Nested
        JavaInstallationMetadata getMetadata();
    
        /**
         * Returns the path to the executable for this tool
         *
         * @return the path to the executable
         */
        @Internal
        RegularFile getExecutablePath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  6. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavadocTool.java

     *
     * @since 6.7
     */
    public interface JavadocTool {
    
    
        /**
         * Returns metadata information about this tool
         *
         * @return the tool metadata
         */
        @Nested
        JavaInstallationMetadata getMetadata();
    
        /**
         * Returns the path to the executable for this tool
         *
         * @return the path to the executable
         */
        @Internal
        RegularFile getExecutablePath();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/CompileTaskConfig.java

            }));
    
            for (String toolName : languageTransform.getBinaryTools().keySet()) {
                Tool tool = binary.getToolByName(toolName);
                if (tool instanceof PreprocessingTool) {
                    task.setMacros(((PreprocessingTool) tool).getMacros());
                }
    
                task.getCompilerArgs().set(tool.getArgs());
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/TestingNativeComponentReportIntegrationTest.groovy

            install using task: :installSomeExeExecutable
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform '$currentNative'
            tool chain: Tool chain 'clang' (Clang)
            executable file: build/exe/someExe/someExe
    
    Google test suite 'someExeTest'
    -------------------------------
    
    Source sets
        C++ source 'someExeTest:cpp'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/components/DiagnosticsComponentReportIntegrationTest.groovy

            tool chain: Tool chain 'clang' (Clang)
            shared library file: build/libs/nativeLib/shared/libnativeLib.dylib
        Static library 'nativeLib:staticLibrary'
            build using task: :nativeLibStaticLibrary
            build type: build type 'debug'
            flavor: flavor 'default'
            target platform: platform '$currentNative'
            tool chain: Tool chain 'clang' (Clang)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jan 16 21:36:13 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  10. test/README.md

    The tool chain and runtime also have regular Go tests in their packages.
    The main reasons to add a new test to this directory are:
    
    * it is most naturally expressed using the test runner; or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 17:18:08 UTC 2023
    - 731 bytes
    - Viewed (0)
Back to top