Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 291 for cat2 (0.04 sec)

  1. samples/open-telemetry/als/README.md

    ```bash
    istioctl install --set profile=demo -y
    ```
    
    Next, add a Telemetry resource that tells Istio to send access logs to the OpenTelemetry collector.
    
    ```bash
    cat <<EOF | kubectl apply -n istio-system -f -
    apiVersion: telemetry.istio.io/v1alpha1
    kind: Telemetry
    metadata:
      name: mesh-default
      namespace: istio-system
    spec:
      accessLogging:
        - providers:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. src/go/doc/testdata/d.0.golden

    CONSTANTS
    	// CBx constants should appear before CAx constants. 
    	const (
    		CB2	= iota	// before CB1
    		CB1		// before CB0
    		CB0		// at end
    	)
    
    	// CAx constants should appear after CBx constants. 
    	const (
    		CA2	= iota	// before CA1
    		CA1		// before CA0
    		CA0		// at end
    	)
    
    	// C0 should be first. 
    	const C0 = 0
    
    	// C1 should be second. 
    	const C1 = 1
    
    	// C2 should be third. 
    	const C2 = 2
    
    	// 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.5K bytes
    - Viewed (0)
  3. common/scripts/fix_copyright_banner.sh

    set -e
    
    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    
    for fn in "$@"; do
      if ! grep -L -q -e "Apache License, Version 2" -e "Copyright" "${fn}"; then
        if [[ "${fn}" == *.go || "${fn}" == *.rs ]]; then
          newfile=$(cat "${WD}/copyright-banner-go.txt" "${fn}")
          echo "${newfile}" > "${fn}"
          echo "Fixing license: ${fn}"
        else
          echo "Cannot fix license: ${fn}. Unknown file type"
        fi
      fi
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 17 04:35:57 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantized_function_library.mlir

        %clamp_min = "tf.Minimum"(%clamp_max, %i8_max) : (tensor<*xf32>, tensor<f32>) -> tensor<*xf32>
        %round = "tf.Round"(%clamp_min) : (tensor<*xf32>) -> tensor<*xf32>
        %cast2 = "tf.Cast"(%round) {Truncate = false} : (tensor<*xf32>) -> tensor<*xi8>
        func.return %cast2 : tensor<*xi8>
      }
    
    
      // Note that input i64 type is also supported by this.
      // As the output is quantized type, output scale/zp is required for the arguments.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jan 08 01:16:10 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  5. hack/update-vendor.sh

      go mod tidy
    }
    
    function print_go_mod_section() {
      local directive="$1"
      local file="$2"
    
      if [ -s "${file}" ]; then
          echo "${directive} ("
          cat "$file"
          echo ")"
      fi
    }
    
    function group_directives() {
      local local_tmp_dir
      local_tmp_dir=$(mktemp -d "${TMP_DIR}/group_replace.XXXX")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. tools/go-stress-test

      if [[ $? != 0 ]]; then
        echo -e "--- ${red}FAIL:${clr} ${testname}. See ${RESULTS}/${testname} for full logs"
        code=1
      elif [[ "${VERBOSE:-}" == true ]]; then
        echo -e "--- ${green}PASS:${clr} ${testname}. $(cat ${RESULTS}/${testname} | tail -n2 | head -n1)"
      fi
    done
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 04 23:04:41 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/testdata/scopes.go

    var boolvar = true
    
    func gretbool() bool {
    	x := boolvar
    	boolvar = !boolvar
    	return x
    }
    
    var sink string
    
    //go:noinline
    func growstack() {
    	sink = fmt.Sprintf("%#v,%#v,%#v", 1, true, "cat")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 18:05:07 UTC 2018
    - 1.4K bytes
    - Viewed (0)
  8. ci/official/containers/linux_arm64/setup.sources.sh

    apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F23C5A6CF475977595C89F51BA6932366A755776
    
    # LLVM/Clang: https://apt.llvm.org/
    apt-key adv --fetch-keys https://apt.llvm.org/llvm-snapshot.gpg.key
    
    # Set up custom sources
    cat >/etc/apt/sources.list.d/custom.list <<SOURCES
    # More Python versions: Deadsnakes
    deb http://ppa.launchpad.net/deadsnakes/ppa/ubuntu focal main
    deb-src http://ppa.launchpad.net/deadsnakes/ppa/ubuntu focal main
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/TablesTransformValuesTest.java

        table = create("foo", 1, 'a', "bar", 1, 'b', "foo", 3, 'c');
        Table<String, Integer, Character> other = HashBasedTable.create();
        other.put("foo", 1, 'd');
        other.put("bar", 2, 'e');
        other.put("cat", 2, 'f');
        try {
          table.putAll(other);
          fail("Expected UnsupportedOperationException");
        } catch (UnsupportedOperationException expected) {
        }
        assertEquals((Character) 'a', table.get("foo", 1));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 16:54:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/FilteredMultimapTest.java

        assertEquals(1, filtered.size());
        assertTrue(filtered.containsEntry("foo", 1));
        assertTrue(filtered.keySet().retainAll(Arrays.asList("cat", "dog")));
        assertEquals(0, filtered.size());
      }
    
      // TODO(jlevy): Many more tests needed.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3.3K bytes
    - Viewed (0)
Back to top