Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for Keys (0.29 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    	return arrayType("set", nil, items)
    }
    
    func listMapType(keys []string, items *schema.Structural) schema.Structural {
    	return arrayType("map", keys, items)
    }
    
    func listMapTypePtr(keys []string, items *schema.Structural) *schema.Structural {
    	l := listMapType(keys, items)
    	return &l
    }
    
    func arrayType(listType string, keys []string, items *schema.Structural) schema.Structural {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  2. src/net/http/transport_test.go

    	}
    
    	resp, err := c.Get(ts.URL)
    	if err != nil {
    		t.Error(err)
    	}
    	io.ReadAll(resp.Body)
    
    	keys := tr.IdleConnKeysForTesting()
    	if e, g := 1, len(keys); e != g {
    		t.Fatalf("After Get expected %d idle conn cache keys; got %d", e, g)
    	}
    
    	if e := "|http|" + ts.Listener.Addr().String(); keys[0] != e {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    // while reading the object from another source.
    // Notice: The S3 client can send secret keys in headers for encryption related jobs,
    // the handler should ensure to remove these keys before sending them to the object layer.
    // Currently these keys are:
    //   - X-Amz-Server-Side-Encryption-Customer-Key
    //   - X-Amz-Copy-Source-Server-Side-Encryption-Customer-Key
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

    }
    
    def TFL_HashtableFindOp: TFL_Op<"hashtable_find", []> {
      let summary = "Looks up keys in a table, outputs the corresponding values.";
    
      let description = [{
    The tensor `keys` must of the same type as the keys of the table.
    The output `values` is of the type of the table values.
    
    The scalar `default_value` is the value output for keys not present in the
    table. It must also be of the same type as the table values.
      }];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    	replicateNone     replicationAction = "none"
    	replicateAll      replicationAction = "all"
    )
    
    // matches k1 with all keys, returns 'true' if one of them matches
    func equals(k1 string, keys ...string) bool {
    	for _, k2 := range keys {
    		if strings.EqualFold(k1, k2) {
    			return true
    		}
    	}
    	return false
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. src/net/http/server.go

    	// send by setting the "Trailer" header to the names of the
    	// trailer keys which will come later. In this case, those
    	// keys of the Header map are treated as if they were
    	// trailers. See the example. The second way, for trailer
    	// keys not known to the [Handler] until after the first [ResponseWriter.Write],
    	// is to prefix the [Header] map keys with the [TrailerPrefix]
    	// constant value.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  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