Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 596 for otool (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/internal/abi/abi_test.go

    	// parse assembly code for symabi.
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "tool", "asm", "-p=p", "-gensymabis", "-o", symabi, asmSrc)
    	out, err := cmd.CombinedOutput()
    	if err != nil {
    		t.Fatalf("go tool asm -gensymabis failed: %v\n%s", err, out)
    	}
    
    	// compile go code.
    	cmd = testenv.Command(t, testenv.GoToolPath(t), "tool", "compile", "-importcfg="+importcfgfile, "-p=p", "-symabis", symabi, "-o", obj, goSrc)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 18:31:05 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileToolchainIntegrationTest.groovy

            where:
            when                                  | tool    | javaHome  | executable | errorFor
            "java home disagrees with executable" | null    | "other"   | "current"  | "executable"
            "tool disagrees with executable"      | "other" | null      | "current"  | "executable"
            "tool disagrees with java home"       | "other" | "current" | null       | "javaHome"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 10:21:26 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavaCompiler.java

     *
     * @since 6.7
     */
    public interface JavaCompiler {
    
        /**
         * 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)
  9. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/toolchain/GccToolChainDiscoveryIntegrationTest.groovy

            failure.assertHasCause("""No tool chain is available to build for platform '${NativePlatformsTestFixture.defaultPlatformName}':
      - ${toolChain.instanceDisplayName}:
          - Could not find C compiler 'does-not-exist'""")
        }
    
        @Requires(IntegTestPreconditions.NotParallelExecutor)
        @ToBeFixedForConfigurationCache
        def "fails when required language tool is not available but other language tools are available"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  10. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/internal/antlr2/MetadataExtracter.java

     * be processed for generation in proper order later.
     */
    public class MetadataExtracter {
    
        public XRef extractMetadata(Set<File> sources) {
            antlr.Tool tool = new antlr.Tool();
            antlr.preprocessor.Hierarchy hierarchy = new antlr.preprocessor.Hierarchy(tool);
    
            // first let antlr preprocess the grammars...
            for (File grammarFileFile : sources) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 3.8K bytes
    - Viewed (0)
Back to top