Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 603 for toolID (0.17 sec)

  1. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/msvcpp/DefaultVisualStudioLocatorTest.groovy

        }
    
        def "finds correct VS2017 paths for #targetPlatform on #os operating system (64-bit install: #is64BitInstall)"() {
            def vsDir = fullVs2017Dir("vs", is64BitInstall)
            def vcDir = new File(vsDir, "VC/Tools/MSVC/1.2.3.4")
    
            given:
            systemInfo.getArchitecture() >> systemArchitecture
            1 * commandLineLocator.getVisualStudioInstalls() >> []
            1 * windowsRegistryLocator.getVisualStudioInstalls() >> []
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 25.1K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginExtension.java

         * to determine for each entry if it is passed to Java tools using '-classpath' or '--module-path'.
         *
         * @since 6.4
         */
        ModularitySpec getModularity();
    
        /**
         * Gets the project wide toolchain requirements that will be used for tasks requiring a tool from the toolchain (e.g. {@link org.gradle.api.tasks.compile.JavaCompile}).
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.4K bytes
    - Viewed (1)
  3. hack/update-codegen.sh

    PLURAL_EXCEPTIONS="Endpoints:Endpoints,ResourceClaimParameters:ResourceClaimParameters,ResourceClassParameters:ResourceClassParameters"
    
    # Any time we call sort, we want it in the same locale.
    export LC_ALL="C"
    
    # Work around for older grep tools which might have options we don't want.
    unset GREP_OPTIONS
    
    if [[ "${DBG_CODEGEN}" == 1 ]]; then
        kube::log::status "DBG: starting generated_files"
    fi
    
    # Generate a list of directories we don't want to play in.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    import (
    	"bytes"
    	"fmt"
    	"go/ast"
    	"go/token"
    	"go/types"
    
    	"golang.org/x/tools/go/analysis"
    	"golang.org/x/tools/go/analysis/passes/inspect"
    	"golang.org/x/tools/go/analysis/passes/internal/analysisutil"
    	"golang.org/x/tools/go/ast/astutil"
    	"golang.org/x/tools/go/ast/inspector"
    	"golang.org/x/tools/internal/aliases"
    	"golang.org/x/tools/internal/typeparams"
    )
    
    const Doc = `check for locks erroneously passed by value
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. CONTRIBUTING.md

    your changes by running the command:
    
    ```bash
    tensorflow/tools/ci_build/ci_build.sh CPU tensorflow/tools/ci_build/ci_sanity.sh
    ```
    
    This will catch most license, Python coding style and BUILD file issues that
    may exist in your changes.
    
    #### Running unit tests
    
    There are two ways to run TensorFlow unit tests.
    
    1.  Using tools and libraries installed directly on your system.
    
        Refer to the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. docs/de/docs/tutorial/security/oauth2-jwt.md

        Es wurde jedoch aktualisiert, stattdessen python-jose zu verwenden, da dieses alle Funktionen von PyJWT sowie einige Extras bietet, die Sie später möglicherweise benötigen, wenn Sie Integrationen mit anderen Tools erstellen.
    
    ## Passwort-Hashing
    
    „Hashing“ bedeutet: Konvertieren eines Inhalts (in diesem Fall eines Passworts) in eine Folge von Bytes (ein schlichter String), die wie Kauderwelsch aussieht.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:06 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. docs/de/docs/deployment/concepts.md

    Und es muss etwas geben, das für die **Erneuerung der HTTPS-Zertifikate** zuständig ist, es könnte sich um dieselbe Komponente handeln oder um etwas anderes.
    
    ### Beispieltools für HTTPS
    
    Einige der Tools, die Sie als TLS-Terminierungsproxy verwenden können, sind:
    
    * Traefik
        * Handhabt automatisch Zertifikat-Erneuerungen ✨
    * Caddy
        * Handhabt automatisch Zertifikat-Erneuerungen ✨
    * Nginx
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:16:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  8. misc/go_android_exec/main.go

    		return err
    	}
    
    	// Copy only the relevant subdirectories from pkg: pkg/include and the
    	// platform-native binaries in pkg/tool.
    	if err := adb("exec-out", "mkdir", "-p", path.Join(deviceGoroot, "pkg", "tool")); err != nil {
    		return err
    	}
    	if err := adb("push", filepath.Join(goroot, "pkg", "include"), path.Join(deviceGoroot, "pkg", "include")); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    include::sample[dir="snippets/tutorial/logging/groovy",files="build.gradle[tags=use-slf4j]"]
    ====
    
    [[sec:external_tools]]
    == Logging from external tools and libraries
    
    Internally, Gradle uses Ant and Ivy.
    Both have their own logging system.
    Gradle redirects their logging output into the Gradle logging system.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. platforms/jvm/language-groovy/src/main/java/org/gradle/api/internal/tasks/compile/daemon/DaemonGroovyCompiler.java

        private final static Iterable<String> SHARED_PACKAGES = Arrays.asList("groovy", "org.codehaus.groovy", "groovyjarjarantlr", "groovyjarjarasm", "groovyjarjarcommonscli", "org.apache.tools.ant", "com.sun.tools.javac");
        private final ClassPathRegistry classPathRegistry;
        private final ClassLoaderRegistry classLoaderRegistry;
        private final JavaForkOptionsFactory forkOptionsFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
Back to top