Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Keys (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  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. 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)
  6. 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)
  7. 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)
  8. pilot/pkg/networking/core/cluster_builder_test.go

    			subsetClusters := cb.applyDestinationRule(ec, tt.clusterMode, tt.service, tt.port, eb, destRule.GetRule(), nil)
    			if len(subsetClusters) != len(tt.expectedSubsetClusters) {
    				t.Fatalf("Unexpected subset clusters want %v, got %v. keys=%v",
    					len(tt.expectedSubsetClusters), len(subsetClusters), xdstest.MapKeys(xdstest.ExtractClusters(subsetClusters)))
    			}
    			if len(tt.expectedSubsetClusters) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  9. cmd/object-handlers_test.go

    		data       []byte
    		dataLen    int
    		chunkSize  int64
    		// expected output.
    		expectedContent    []byte // expected response body.
    		expectedRespStatus int    // expected response status body.
    		// Access keys
    		accessKey        string
    		secretKey        string
    		shouldPass       bool
    		removeAuthHeader bool
    		fault            streamFault
    		// Custom content encoding.
    		contentEncoding string
    	}{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  10. src/cmd/go/alldocs.go

    // that the results match existing cache entries.
    //
    // GODEBUG=gocachehash=1 causes the go command to print the inputs
    // for all of the content hashes it uses to construct cache lookup keys.
    // The output is voluminous but can be useful for debugging the cache.
    //
    // GODEBUG=gocachetest=1 causes the go command to print details of its
    // decisions about whether to reuse a cached test result.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top