Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,392 for toolID (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/msvcpp/VisualCppPlatformToolProvider.java

    import org.gradle.nativeplatform.toolchain.internal.msvcpp.metadata.VisualCppMetadata;
    import org.gradle.nativeplatform.toolchain.internal.tools.CommandLineToolConfigurationInternal;
    import org.gradle.nativeplatform.toolchain.internal.tools.CommandLineToolSearchResult;
    import org.gradle.process.internal.ExecActionFactory;
    import org.gradle.util.internal.VersionNumber;
    
    import java.io.File;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    	"reflect"
    	"sort"
    	"strings"
    	"sync"
    	"time"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/internal/analysisflags"
    	"golang.org/x/tools/internal/analysisinternal"
    	"golang.org/x/tools/internal/facts"
    	"golang.org/x/tools/internal/versions"
    )
    
    // A Config describes a compilation unit to be analyzed.
    // It is provided to the tool in a JSON-encoded file
    // whose name ends with ".cfg".
    type Config struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top