Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for cherries (0.11 sec)

  1. cmd/xl-storage-format-v2.go

    }
    
    // xlMetaV2Version describes the journal entry, Type defines
    // the current journal entry type other types might be nil based
    // on what Type field carries, it is imperative for the caller
    // to verify which journal type first before accessing rest of the fields.
    type xlMetaV2Version struct {
    	Type             VersionType           `json:"Type" msg:"Type"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. cmd/erasure-object.go

    }
    
    // PutObject - creates an object upon reading from the input stream
    // until EOF, erasure codes the data across all disk and additionally
    // writes `xl.meta` which carries the necessary metadata for future
    // object operations.
    func (er erasureObjects) PutObject(ctx context.Context, bucket string, object string, data *PutObjReader, opts ObjectOptions) (objInfo ObjectInfo, err error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers.go

    	podPhase := pod.Status.Phase
    	reason := string(podPhase)
    	if pod.Status.Reason != "" {
    		reason = pod.Status.Reason
    	}
    
    	// If the Pod carries {type:PodScheduled, reason:SchedulingGated}, set reason to 'SchedulingGated'.
    	for _, condition := range pod.Status.Conditions {
    		if condition.Type == api.PodScheduled && condition.Reason == apiv1.PodReasonSchedulingGated {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    	}
    	f.startWrite(http2FrameWindowUpdate, 0, streamID)
    	f.writeUint32(incr)
    	return f.endWrite()
    }
    
    // A HeadersFrame is used to open a stream and additionally carries a
    // header block fragment.
    type http2HeadersFrame struct {
    	http2FrameHeader
    
    	// Priority is set if FlagHeadersPriority is set in the FrameHeader.
    	Priority http2PriorityParam
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top