Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 839 for TOOL (0.05 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirResolveExtensionInfoProvider.kt

            crossinline getDeclarationsByProvider: (LLFirResolveExtensionToolDeclarationProvider) -> Sequence<D>,
        ): Sequence<S> = sequence {
            for (tool in tools) {
                for (declaration in getDeclarationsByProvider(tool.declarationProvider)) {
                    val declarationName = declaration.nameAsName ?: continue
                    if (!nameFilter(declarationName)) continue
                    with(analysisSession) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_nomod.txt

    ! go list
    ! go run
    ! go test
    ! go vet
    
    # clean succeeds, even with -modcache
    go clean -modcache
    
    # doc succeeds for standard library
    go doc unsafe
    
    # env succeeds
    go env
    
    # tool succeeds
    go tool -n test2json
    
    # version succeeds
    go version
    
    -- x.mod --
    module m
    
    -- x.go --
    package main
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 29 18:57:53 UTC 2018
    - 644 bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/versions/types_go121.go

    	// In x/tools built with Go <= 1.21, we do not have Info.FileVersions
    	// available. We use a go version derived from the toolchain used to
    	// compile the tool by default.
    	// This will be <= go1.21. We take this as the maximum version that
    	// this tool can support.
    	//
    	// There are no features currently in x/tools that need to tell fine grained
    	// differences for versions <1.22.
    	return toolchain
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 938 bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainIntegrationTest.groovy

            "unconfigured"                              | false           | false
        }
    
        def "identify whether #tool toolchain corresponds to the #current JVM"() {
            def jdkMetadata = AvailableJavaHomes.getJvmInstallationMetadata(jvm as Jvm)
    
            buildScript """
                apply plugin: "java"
    
                def tool = javaToolchains.${toolMethod} {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 15:18:26 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  5. src/cmd/pack/pack_test.go

    	goBin := testenv.GoToolPath(t)
    	run(goBin, "tool", "compile", "-importcfg="+importcfgfile, "-p=large", "large.go")
    	run(packPath(t), "grc", "large.a", "large.o")
    	testenv.WriteImportcfg(t, importcfgfile, map[string]string{"large": filepath.Join(dir, "large.o")}, "runtime")
    	run(goBin, "tool", "compile", "-importcfg="+importcfgfile, "-p=main", "main.go")
    	run(goBin, "tool", "link", "-importcfg="+importcfgfile, "-L", ".", "-o", "a.out", "main.o")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 04 16:27:35 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchainManagerPrivate.java

                        toRet.add(fact.createToolchain(tm));
                    }
                }
    
                // add default toolchain
                ToolchainPrivate tool = fact.createDefaultToolchain();
                if (tool != null) {
                    toRet.add(tool);
                }
            }
    
            return toRet.toArray(new ToolchainPrivate[0]);
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/NativeBinaryFixture.groovy

        }
    
        void assertDoesNotExist() {
            file.assertDoesNotExist()
        }
    
        // Does nothing when tool chain does not generate a separate debug file
        void assertDebugFileExists() {
            if (toolChain.visualCpp) {
                getSymbolFile().assertIsFile()
            }
        }
    
        // Does nothing when tool chain does not generate a separate debug file
        void assertDebugFileDoesNotExist() {
            if (toolChain.visualCpp) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/tasks/UnexportMainSymbol.java

                        // TODO: should use target platform to make this decision
                        if (OperatingSystem.current().isMacOsX()) {
                            execSpec.executable("ld"); // TODO: Locate this tool from a tool provider
                            execSpec.args(object);
                            execSpec.args("-o", relocatedObject);
                            execSpec.args("-r"); // relink, produce another object file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/fix/fix.go

    The -fix flag sets a comma-separated list of fixes to run.
    The default is all known fixes.
    (Its value is passed to 'go tool fix -r'.)
    
    For more about fix, see 'go doc cmd/fix'.
    For more about specifying packages, see 'go help packages'.
    
    To run fix with other options, run 'go tool fix'.
    
    See also: go fmt, go vet.
    	`,
    }
    
    var fixes = CmdFix.Flag.String("fix", "", "comma-separated list of fixes to apply")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:52:29 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. src/race.bat

    L8:@echo off
    L9:
    L10:setlocal
    L11:
    L12:if exist make.bat goto ok
    L13:echo race.bat must be run from go\src
    L14::: cannot exit: would kill parent command interpreter
    L15:goto end
    L16::ok
    L17:
    L18:set GOROOT=%CD%\..
    L19:call .\make.bat --dist-tool >NUL
    L20:if errorlevel 1 goto fail
    L21:.\cmd\dist\dist.exe env -w -p >env.bat
    L22:if errorlevel 1 goto fail
    L23:call .\env.bat
    L24:del env.bat
    L25:
    L26:if %GOHOSTARCH% == amd64 goto continue
    L27:echo Race detector is only supported on windows/amd64.
    ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 12 16:59:17 UTC 2022
    - 1.1K bytes
    - Viewed (0)
Back to top