Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,753 for toolID (0.28 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/versions/types_go121.go

    func FileVersion(info *types.Info, file *ast.File) string {
    	// 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.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 938 bytes
    - Viewed (0)
  2. docs/en/docs/benchmarks.md

    When you check the benchmarks, it is common to see several tools of different types compared as equivalent.
    
    Specifically, to see Uvicorn, Starlette and FastAPI compared together (among many other tools).
    
    The simpler the problem solved by the tool, the better performance it will get. And most of the benchmarks don't test the additional features provided by the tool.
    
    The hierarchy is like:
    
    * **Uvicorn**: an ASGI server
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. docs/de/docs/benchmarks.md

    Wenn Sie sich die Benchmarks ansehen, werden häufig mehrere Tools mit unterschiedlichen Eigenschaften als gleichwertig verglichen.
    
    Konkret geht es darum, Uvicorn, Starlette und FastAPI miteinander zu vergleichen (neben vielen anderen Tools).
    
    Je einfacher das Problem, welches durch das Tool gelöst wird, desto besser ist die Performanz. Und die meisten Benchmarks testen nicht die zusätzlichen Funktionen, welche das Tool bietet.
    
    Die Hierarchie ist wie folgt:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 23 16:04:13 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. src/make.rc

    #
    # GOHOSTARCH: The architecture for host tools (compilers and
    # binaries).  Binaries of this type must be executable on the current
    # system, so the only common reason to set this is to set
    # GOHOSTARCH=386 on an amd64 machine.
    #
    # GOARCH: The target architecture for installed packages and tools.
    #
    # GOOS: The target operating system for installed packages and tools.
    #
    # GO_GCFLAGS: Additional go tool compile arguments to use when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:48:46 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. src/make.bat

    if...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/SwiftcPlatformToolChain.java

    /**
     * Swiftc specific settings for the tools used to build for a particular platform.
     *
     * @since 4.1
     */
    @Incubating
    public interface SwiftcPlatformToolChain extends NativePlatformToolChain {
        /**
         * Returns the compiler tool.
         */
        CommandLineToolConfiguration getSwiftCompiler();
    
        /**
         * Returns the linker tool.
         */
        CommandLineToolConfiguration getLinker();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/versions/toolchain.go

    // license that can be found in the LICENSE file.
    
    package versions
    
    // toolchain is maximum version (<1.22) that the go toolchain used
    // to build the current tool is known to support.
    //
    // When a tool is built with >=1.22, the value of toolchain is unused.
    //
    // x/tools does not support building with go <1.18. So we take this
    // as the minimum possible maximum.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 506 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/credentials-handling/pass-credentials-to-external-tool-via-stdin/README.adoc

    NOTE: You can open the samples inside an IDE using the https://www.jetbrains.com/help/idea/gradle.html#gradle_import_project_start[IntelliJ native importer] or https://projects.eclipse.org/projects/tools.buildship[Eclipse Buildship].
    
    This sample shows how credentials can be passed to an external tool that normally accepts them via standard input.
    
    Let's pretend that we have to log in to some system before performing some operation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/gcc/AbstractGccCompatibleToolChain.java

    import org.gradle.nativeplatform.toolchain.internal.tools.CommandLineToolSearchResult;
    import org.gradle.nativeplatform.toolchain.internal.tools.DefaultGccCommandLineToolConfiguration;
    import org.gradle.nativeplatform.toolchain.internal.tools.GccCommandLineToolConfigurationInternal;
    import org.gradle.nativeplatform.toolchain.internal.tools.ToolSearchPath;
    import org.gradle.platform.base.internal.toolchain.SearchResult;
    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/cover/doc.go

    on a single Go source file at a time, or when invoked by the Go tool
    it will process all the source files in a single package at a time
    (package-scope instrumentation is enabled via "-pkgcfg" option).
    
    When generated instrumented code, the cover tool computes approximate
    basic block information by studying the source. It is thus more
    portable than binary-rewriting coverage tools, but also a little less
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 03 12:57:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top