Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 69 for Keys (0.05 sec)

  1. CHANGELOG/CHANGELOG-1.5.md

    ### Other notable changes
    
    * The kube-apiserver --service-account-key-file option can be specified multiple times, or can point to a file containing multiple keys, to enable rotation of signing keys. ([#34029](https://github.com/kubernetes/kubernetes/pull/34029), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/tests/side-effect-analysis-test.mlir

      }
      func.return
      // expected-remark@above {{ID: 7}}
      // expected-remark@above {{Sinks: {6}}}
    }
    
    // -----
    
    // Tests that we create dependencies between `_XlaRecvAtHostV2` ops with equal
    // keys.
    !tf_res = tensor<*x!tf_type.resource<tensor<f32>>>
    func.func @recv_equal_keys(
      // expected-remark@above {{ID: 8}}
      %arg0: tensor<!tf_type.string>,
      %arg1: tensor<i64>) {
      tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 20 04:39:18 UTC 2023
    - 129.7K bytes
    - Viewed (0)
  3. src/reflect/all_test.go

    	mv := ValueOf(m)
    	if n := mv.Len(); n != len(m) {
    		t.Errorf("Len = %d, want %d", n, len(m))
    	}
    	keys := mv.MapKeys()
    	newmap := MakeMap(mv.Type())
    	for k, v := range m {
    		// Check that returned Keys match keys in range.
    		// These aren't required to be in the same order.
    		seen := false
    		for _, kv := range keys {
    			if kv.String() == k {
    				seen = true
    				break
    			}
    		}
    		if !seen {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

        const std::string& summary_title) {
      std::string op_str;
      llvm::raw_string_ostream os(op_str);
    
      std::vector<std::string> keys;
      keys.reserve(ops.size());
    
      std::vector<std::string> values;
      values.reserve(ops.size());
    
      for (auto const& op_name_and_details : ops) {
        keys.push_back(op_name_and_details.first);
        for (auto const& op_detail : op_name_and_details.second) {
          values.push_back(op_detail);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/resources/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/report/uikit.min.js

    rDocument).defaultView:window}function q(t){return k(t)?t:D(t)?t.split(/,(?![^(]*\))/).map(function(t){return B(t)?F(t):L(t.trim())}):[t]}function Y(t){return t?c(t,"ms")?j(t):1e3*j(t):0}function U(t,i){return t===i||I(t)&&I(i)&&Object.keys(t).length===Object.keys(i).length&&J(t,function(t,e){return t===i[e]})}function X(t,e,i){return t.replace(new RegExp(e+"|"+i,"mg"),function(t){return t===e?i:e})}var G=Object.assign||function(t){for(var e=[],i=arguments.length-1;0<i--;)e[i]=arguments[i+1];t=Object(t);for(var...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 130.5K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

    # under the provided name. If the encoded structure is empty, echoes nothing.
    # 1: name to be output in yaml
    # 2: encoded map-string-string (which may contain duplicate keys - resulting in map-string-stringarray)
    # 3: key-value separator (defaults to ':')
    # 4: item separator (defaults to ',')
    function yaml-map-string-stringarray {
      declare -r name="${1}"
      declare -r encoded="${2}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    constant key value. For non-constant map keys, see the section on
    <a href="#Order_of_evaluation">evaluation order</a>.
    </p>
    
    <p>
    For struct literals the following rules apply:
    </p>
    <ul>
    	<li>A key must be a field name declared in the struct type.
    	</li>
    	<li>An element list that does not contain any keys must
    	    list an element for each struct field in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  8. pkg/config/validation/validation.go

    	if vm == nil || len(vm.Env) == 0 {
    		return nil
    	}
    
    	keys := sets.New[string]()
    	for _, env := range vm.Env {
    		if env == nil {
    			continue
    		}
    
    		if env.Name == "" {
    			return fmt.Errorf("spec.vmConfig.env invalid")
    		}
    
    		if keys.InsertContains(env.Name) {
    			return fmt.Errorf("duplicate env")
    		}
    	}
    
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

          mergingList: []
        twoWay:
          mergingList: []
        modified:
          mergingList: []
      - description: delete all keys from map
        original:
          name: 1
          value: 1
        twoWay:
          $patch: replace
        modified: {}
      - description: add key and delete all keys from map
        original:
          name: 1
          value: 1
        twoWay:
          other: a
          $patch: replace
        modified:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  10. cluster/gce/gci/configure-helper.sh

      MASTER_PD_DEVICE="/dev/disk/by-id/${relative_path}"
    }
    
    # Mounts a persistent disk (formatting if needed) to store the persistent data
    # on the master -- etcd's data, a few settings, and security certs/keys/tokens.
    # safe-format-and-mount only formats an unformatted disk, and mkdir -p will
    # leave a directory be if it already exists.
    function mount-master-pd {
      find-master-pd
      if [[ -z "${MASTER_PD_DEVICE:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
Back to top