Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for may (0.22 sec)

  1. src/archive/tar/writer.go

    func (sw sparseFileWriter) logicalRemaining() int64 {
    	return sw.sp[len(sw.sp)-1].endOffset() - sw.pos
    }
    func (sw sparseFileWriter) physicalRemaining() int64 {
    	return sw.fw.physicalRemaining()
    }
    
    // zeroWriter may only be written with NULs, otherwise it returns errWriteHole.
    type zeroWriter struct{}
    
    func (zeroWriter) Write(b []byte) (int, error) {
    	for i, c := range b {
    		if c != 0 {
    			return i, errWriteHole
    		}
    	}
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Oct 13 18:36:46 GMT 2023
    - 19.6K bytes
    - Viewed (0)
  2. src/archive/zip/writer.go

    	}
    	return nil
    }
    
    // CreateHeader adds a file to the zip archive using the provided [FileHeader]
    // for the file metadata. [Writer] takes ownership of fh and may mutate
    // its fields. The caller must not modify fh after calling [Writer.CreateHeader].
    //
    // This returns a [Writer] to which the file contents should be written.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 04 14:28:57 GMT 2024
    - 19.3K bytes
    - Viewed (0)
Back to top