Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 839 for TOOL (0.07 sec)

  1. src/run.bat

    L16:setlocal
    L17::nolocal
    L18:
    L19:set GOBUILDFAIL=0
    L20:
    L21:set GOENV=off
    L22:..\bin\go tool dist env > env.bat
    L23:if errorlevel 1 goto fail
    L24:call .\env.bat
    L25:del env.bat
    L26:
    L27:set GOPATH=c:\nonexist-gopath
    L28:
    L29:if x%1==x--no-rebuild goto norebuild
    L30:..\bin\go tool dist test --rebuild
    L31:if errorlevel 1 goto fail
    L32:goto end
    L33:
    L34::norebuild
    L35:..\bin\go tool dist test
    L36:if errorlevel 1 goto fail
    L37:goto end
    L38:
    L39::fail
    L40:set GOBUILDFAIL=1
    L41:
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 17 20:19:28 UTC 2022
    - 859 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/syscall/js/js_js.s

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The runtime package uses //go:linkname to push the setEventHandler to this
    // package.  To prevent the go tool from passing -complete to the compile tool,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 356 bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/cmd/go/testdata/script/cover_build_cmdline_pkgs.txt

    # always instrumented (but not their dependencies). This rule applies
    # inside and outside the standard library.
    
    [short] skip
    [!GOEXPERIMENT:coverageredesign] skip
    
    # Compile an object.
    go tool compile -p tiny tiny/tiny.go tiny/tiny2.go
    
    # Build a stdlib command with coverage.
    go build -o $WORK/nm.exe -cover cmd/nm 
    
    # Save off old GOCOVERDIR setting
    env SAVEGOCOVERDIR=$GOCOVERDIR
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:17 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. 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)
  9. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/toolchain/ToolChainAvailability.java

            }
    
            return this;
        }
    
        public ToolChainAvailability mustBeAvailable(ToolSearchResult tool) {
            if (!tool.isAvailable() && reason == null) {
                reason = tool;
            }
            return this;
        }
    
        private static class FixedMessageToolSearchResult implements ToolSearchResult {
            private final String message;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. src/cmd/internal/cov/covcmd/cmddefs.go

    	EmitMetaFile string
    }
    
    // CoverFixupConfig contains annotations/notes generated by the
    // cmd/cover tool (during instrumentation) to be passed on to the
    // compiler when the instrumented code is compiled. The cmd/cover tool
    // creates a struct of this type, JSON-encodes it, and emits the
    // result to a file, which the Go command then passes to the compiler
    // when the instrumented package is built.
    type CoverFixupConfig struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 30 16:13:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
Back to top