Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for helper (0.13 sec)

  1. src/archive/tar/reader.go

    			}
    			if hdr.Typeflag == TypeXGlobalHeader {
    				mergePAX(hdr, paxHdrs)
    				return &Header{
    					Name:       hdr.Name,
    					Typeflag:   hdr.Typeflag,
    					Xattrs:     hdr.Xattrs,
    					PAXRecords: hdr.PAXRecords,
    					Format:     format,
    				}, nil
    			}
    			continue // This is a meta header affecting the next header
    		case TypeGNULongName, TypeGNULongLink:
    			format.mayOnlyBe(FormatGNU)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 08 01:59:14 GMT 2024
    - 26.8K bytes
    - Viewed (0)
  2. internal/s3select/csv/reader.go

    		}
    		// Move to next block
    		item, ok := <-r.queue
    		if !ok {
    			r.err = io.EOF
    			return nil, r.err
    		}
    		//nolint:staticcheck // SA6002 Using pointer would allocate more since we would have to copy slice header before taking a pointer.
    		r.csvDstPool.Put(r.current)
    		r.current = <-item.dst
    		r.err = item.err
    		r.recordsRead = 0
    	}
    	csvRecord := r.current[r.recordsRead]
    	r.recordsRead++
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 8.9K bytes
    - Viewed (0)
Back to top