Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,210 for toolID (0.11 sec)

  1. tensorflow/cc/framework/fuzzing/op_fuzzing.bzl

        out_fuzz_files = [op_name + "_fuzz.cc" for op_name in op_names]
        native.genrule(
            name = name + "_genrule",
            outs = out_fuzz_files,
            srcs = api_def_srcs,
            tools = [":op_fuzz_gen_tool"],
            cmd = ("$(location :op_fuzz_gen_tool) " +
                   " $$(dirname $(location " + out_fuzz_files[0] + "))" +
                   " " + api_def_src_locations + " " + (",".join(op_names))),
        )
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 07 19:14:57 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  2. hack/make-rules/test.sh

      junit_xml_filename="${junit_filename_prefix}.xml"
    
      if ! command -v gotestsum >/dev/null 2>&1; then
        kube::log::status "gotestsum not found; installing from ./hack/tools"
        go -C "${KUBE_ROOT}/hack/tools" install gotest.tools/gotestsum
      fi
      gotestsum --junitfile "${junit_xml_filename}" --raw-command cat "${junit_filename_prefix}"*.stdout
      if [[ ! ${KUBE_KEEP_VERBOSE_TEST_OUTPUT} =~ ^[yY]$ ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/caching_android_projects.adoc

    == The Android Gradle Plugin and the Gradle Build Tool
    
    The first thing you should always do when working to optimize your build is ensure you’re on the latest stable, supported versions of the Android Gradle Plugin and the Gradle Build Tool.
    At the time of writing, they are 3.3.0 and 5.0, respectively.
    Each new version of these tools includes many performance improvements, not least of which is to the build cache.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 12:54:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. ci/devinfra/docker_windows/Dockerfile

        $old_path = [Environment]::GetEnvironmentVariable(\"PATH\", \"Machine\"); \
        [Environment]::SetEnvironmentVariable(\"PATH\", $old_path + \";C:\VS\VC\Tools\MSVC\14.33.31629\bin\Hostx64\x64;C:\VS\Common7\Tools;C:\VS\MSBuild\Current\Bin\", \"Machine\");
    
    # Add signtool.exe to the PATH. Note this path may need to be edited if updates
    # are made to the Windows 10 SDK.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 18 17:24:20 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. Makefile

    # Set the environment variable BUILD_WITH_CONTAINER to use a container
    # to build the repo. The only dependencies in this mode are to have make and
    # docker. If you'd rather build with a local tool chain instead, you'll need to
    # figure out all the tools you need in your environment to make that work.
    export BUILD_WITH_CONTAINER ?= 0
    
    ifeq ($(BUILD_WITH_CONTAINER),1)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 11 18:29:15 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/link/dwarf_test.go

    	}
    	if err := testenv.Command(t, "xcrun", "--help").Run(); err != nil {
    		t.Skipf("error running xcrun, required for iOS cross build: %v", err)
    	}
    	// Check to see if the ios tools are installed. It's possible to have the command line tools
    	// installed without the iOS sdk.
    	if output, err := testenv.Command(t, "xcodebuild", "-showsdks").CombinedOutput(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 17:05:14 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. platforms/native/platform-native/src/main/resources/META-INF/gradle-plugins/org.gradle.standard-tool-chains.properties

    Sterling Greene <******@****.***> 1700166003 -0500
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 99 bytes
    - Viewed (0)
  8. docs/en/docs/deployment/docker.md

    ## Container Images
    
    Docker has been one of the main tools to create and manage **container images** and **containers**.
    
    And there's a public <a href="https://hub.docker.com/" class="external-link" target="_blank">Docker Hub</a> with pre-made **official container images** for many tools, environments, databases, and applications.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  9. tools/packaging/common/sidecar.env

    # Ignore Istio iptables custom rules
    # Enable this flag if you would like to manage iptables yourself. Default to false (true/false)
    # ISTIO_CUSTOM_IP_TABLES=false
    
    # Location of provisioning certificates. VM provisioning tools must generate a certificate with
    # the expected SAN. Istio-agent will use it to connect to istiod and get fresh certificates.
    # PROV_CERT=/var/run/secrets/istio
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 18:02:42 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  10. docs/de/docs/tutorial/response-model.md

    Aber in den meisten Fällen, wenn wir so etwas machen, wollen wir nur, dass das Modell einige der Daten **filtert/entfernt**, so wie in diesem Beispiel.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top