Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 807 for Binary1 (0.19 sec)

  1. bin/build_ztunnel.sh

      exit 1
    }
    
    # Params:
    #   $1: The URL of the ztunnel binary to be downloaded.
    #   $2: The full path of the output binary.
    #   $3: Non-versioned name to use
    function download_ztunnel_if_necessary () {
      if [[ -f "$2" ]]; then
        return
      fi
      # Enter the output directory.
      mkdir -p "$(dirname "$2")"
      pushd "$(dirname "$2")"
    
      # Download and make the binary executable
      echo "Downloading ztunnel: $1 to $2"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 21:46:06 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. platforms/core-runtime/internal-instrumentation-api/src/main/java/org/gradle/internal/instrumentation/api/annotations/ReplacesEagerProperty.java

        interface DefaultValue {
        }
    
        enum BinaryCompatibility {
            /**
             * Gradle binary compatibility check will fail if the accessor was not removed
             */
            ACCESSORS_REMOVED,
    
            /**
             * Gradle binary compatibility check will fail if the accessor was not kept
             */
            ACCESSORS_KEPT
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/saved_model/internal/testdata/BUILD

    load("//tensorflow:tensorflow.default.bzl", "filegroup")
    
    package(
        # copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
        licenses = ["notice"],
    )
    
    # Run this binary manually, with an argument pointing to the testdata/
    # directory, to generate the test files used by the filegroup rule below.
    py_strict_binary(
        name = "gen_saved_models",
        srcs = ["gen_saved_models.py"],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/BUILD

        srcs = glob(
            [
                "**/importer_test_min_max.cc.mlir",
                "**/reshape.mlir",
            ],
        ),
    )
    
    # A binary to inject min/max to a tflite model.
    # A file check command is used to verify the imported result from this
    # binary format.
    tf_native_cc_binary(
        name = "importer_test_min_max",
        srcs = [
            "importer_test_min_max.cc",
        ],
        deps = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. src/go/doc/comment/testdata/README.md

    TextWidth field to 20:
    
    	{"TextWidth": 20}
    	-- input --
    	Package gob manages streams of gobs - binary values exchanged between an
    	Encoder (transmitter) and a Decoder (receiver).
    	-- text --
    	Package gob
    	manages streams
    	of gobs - binary
    	values exchanged
    	between an Encoder
    	(transmitter) and a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. hack/ginkgo-e2e.sh

    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/cluster/common.sh"
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # Find the ginkgo binary build as part of the release.
    ginkgo=$(kube::util::find-binary "ginkgo")
    e2e_test=$(kube::util::find-binary "e2e.test")
    
    # --- Setup some env vars.
    
    GINKGO_PARALLEL=${GINKGO_PARALLEL:-n} # set to 'y' to run tests in parallel
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/version.txt

    [short] skip
    
    # Check that 'go version' and 'go version -m' work on a binary built in module mode.
    go get rsc.io/fortune
    go build -o fortune.exe rsc.io/fortune
    go version fortune.exe
    stdout '^fortune.exe: .+'
    go version -m fortune.exe
    stdout -buildmode=exe
    stdout '^\tpath\trsc.io/fortune'
    stdout '^\tmod\trsc.io/fortune\tv1.0.0'
    
    # Check the build info of a binary built from $GOROOT/src/cmd
    go build -o test2json.exe cmd/test2json
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 14:52:04 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. src/internal/coverage/encodemeta/encode.go

    		NumFiles:   uint32(b.stab.Nentries()),
    		NumFuncs:   uint32(len(b.funcs)),
    		MetaHash:   digest,
    	}
    	if b.debug {
    		fmt.Fprintf(os.Stderr, "=-= writing header: %+v\n", mh)
    	}
    	if err := binary.Write(w, binary.LittleEndian, mh); err != nil {
    		return digest, fmt.Errorf("error writing meta-file header: %v", err)
    	}
    	off := int64(coverage.CovMetaHeaderSize)
    
    	// Write function offsets section
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 17:16:10 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. maven-core/src/main/mdo/extension.mdo

                Other values define only the prefix of classes/resources being exposed. Their binary name must be equal to the prefix or starting with the prefix (followed by "." or "$").
                In particular this includes all subpackages. Despite the element name one can also only expose individual classes of a particular package by adding its binary name as value.
              ]]></description>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. src/cmd/go/internal/test/test.go

    	pkg.test -test.v -myflag testdata -test.cpuprofile=prof.out
    
    (The -x flag is removed because it applies only to the go command's
    execution, not to the test itself.)
    
    The test flags that generate profiles (other than for coverage) also
    leave the test binary in pkg.test for use when analyzing the profiles.
    
    When 'go test' runs a test binary, it does so from within the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
Back to top