Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for jwttool (0.75 sec)

  1. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftPlatformToolProvider.java

        }
    
        private CommandLineToolInvocationWorker commandLineTool(ToolType key, String exeName) {
            return new DefaultCommandLineToolInvocationWorker(key.getToolName(), toolSearchPath.locate(key, exeName).getTool(), execActionFactory);
        }
    
        private CommandLineToolContext context(CommandLineToolConfigurationInternal toolConfiguration) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/tools/ToolSearchPathTest.groovy

            os.findInPath("cc") >> null
    
            when:
            def result = registry.locate(ToolType.C_COMPILER, "cc")
    
            then:
            !result.available
    
            when:
            result.getTool()
    
            then:
            GradleException e = thrown()
            e.message == "Could not find C compiler 'cc' in system path."
        }
    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. src/cmd/go/internal/work/buildid.go

    	if id != "" {
    		return id
    	}
    
    	path := base.Tool(name)
    	desc := "go tool " + name
    
    	// Special case: undocumented -vettool overrides usual vet,
    	// for testing vet or supplying an alternative analysis tool.
    	if name == "vet" && VetTool != "" {
    		path = VetTool
    		desc = VetTool
    	}
    
    	cmdline := str.StringList(cfg.BuildToolexec, path, "-V=full")
    	cmd := exec.Command(cmdline[0], cmdline[1:]...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    // The unitchecker package defines the main function for an analysis
    // driver that analyzes a single compilation unit during a build.
    // It is invoked by a build system such as "go vet":
    //
    //	$ go vet -vettool=$(which vet)
    //
    // It supports the following command-line protocol:
    //
    //	-V=full         describe executable               (to the build tool)
    //	-flags          describe flags                    (to the build tool)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftcToolChain.java

            }
            SearchResult<SwiftcMetadata> swiftcMetaData = compilerMetaDataProvider.getCompilerMetaData(toolSearchPath.getPath(), spec -> spec.executable(compiler.getTool()));
            result.mustBeAvailable(swiftcMetaData);
            if (!result.isAvailable()) {
                return new UnavailablePlatformToolProvider(targetPlatform.getOperatingSystem(), result);
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  6. platforms/native/tooling-native/src/main/java/org/gradle/language/cpp/internal/tooling/CppModelBuilder.java

                CommandLineToolSearchResult compilerLookup = platformToolProvider.locateTool(ToolType.CPP_COMPILER);
                File compilerExe = compilerLookup.isAvailable() ? compilerLookup.getTool() : null;
                LaunchableGradleTask compileTaskModel = buildLaunchableTask(projectIdentifier, compileTask);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppPlatformToolProvider.java

            switch (compilerType) {
                case C_COMPILER:
                case CPP_COMPILER:
                    return new CommandLineToolSearchResult() {
                        @Override
                        public File getTool() {
                            return visualCpp.getCompilerExecutable();
                        }
    
                        @Override
                        public boolean isAvailable() {
                            return true;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChainTest.groovy

        def execActionFactory = Mock(ExecActionFactory)
        def toolSearchPath = Stub(ToolSearchPath)
        def tool = Stub(CommandLineToolSearchResult) {
            isAvailable() >> true
            getTool() >> new File("tool")
        }
        def missing = Stub(CommandLineToolSearchResult) {
            isAvailable() >> false
        }
        def correctCompiler = new ComponentFound(Stub(GccMetadata))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChain.java

                if (compiler.isAvailable()) {
                    SearchResult<GccMetadata> gccMetadata = getMetaDataProvider().getCompilerMetaData(toolSearchPath.getPath(), spec -> spec.executable(compiler.getTool()).args(platformToolChain.getCompilerProbeArgs()));
                    availability.mustBeAvailable(gccMetadata);
                    if (!gccMetadata.isAvailable()) {
                        return;
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 20K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    			vcfg.PackageFile[p1.ImportPath] = a1.built
    		}
    		if p1.Standard {
    			vcfg.Standard[p1.ImportPath] = true
    		}
    	}
    }
    
    // VetTool is the path to an alternate vet tool binary.
    // The caller is expected to set it (if needed) before executing any vet actions.
    var VetTool string
    
    // VetFlags are the default flags to pass to vet.
    // The caller is expected to set them before executing any vet actions.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top