Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for writeNL (0.13 sec)

  1. src/cmd/link/internal/ld/macho.go

    			out.Write32(s.prot2)
    			out.Write32(s.nsect)
    			out.Write32(s.flag)
    		} else {
    			out.Write32(LC_SEGMENT)
    			out.Write32(56 + 68*s.nsect)
    			out.WriteStringN(s.name, 16)
    			out.Write32(uint32(s.vaddr))
    			out.Write32(uint32(s.vsize))
    			out.Write32(uint32(s.fileoffset))
    			out.Write32(uint32(s.filesize))
    			out.Write32(s.prot1)
    			out.Write32(s.prot2)
    			out.Write32(s.nsect)
    			out.Write32(s.flag)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  2. src/io/io.go

    }
    
    // WriterTo is the interface that wraps the WriteTo method.
    //
    // WriteTo writes data to w until there's no more data to write or
    // when an error occurs. The return value n is the number of bytes
    // written. Any error encountered during the write is also returned.
    //
    // The Copy function uses WriterTo if available.
    type WriterTo interface {
    	WriteTo(w Writer) (n int64, err error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. src/archive/tar/writer.go

    	"path"
    	"slices"
    	"strings"
    	"time"
    )
    
    // Writer provides sequential writing of a tar archive.
    // [Writer.WriteHeader] begins a new file with the provided [Header],
    // and then Writer can be treated as an io.Writer to supply that file's data.
    type Writer struct {
    	w    io.Writer
    	pad  int64      // Amount of padding to write after current file entry
    	curr fileWriter // Writer for current file entry
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. src/image/gif/writer.go

    			return i
    		}
    	}
    	return -1
    }
    
    // writer is a buffered writer.
    type writer interface {
    	Flush() error
    	io.Writer
    	io.ByteWriter
    }
    
    // encoder encodes an image to the GIF format.
    type encoder struct {
    	// w is the writer to write to. err is the first error encountered during
    	// writing. All attempted writes after the first error become no-ops.
    	w   writer
    	err error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  5. src/os/file.go

    // hide the WriteTo method of that other type.
    type noWriteTo struct{}
    
    // WriteTo hides another WriteTo method.
    // It should never be called.
    func (noWriteTo) WriteTo(io.Writer) (int64, error) {
    	panic("can't happen")
    }
    
    // fileWithoutWriteTo implements all the methods of *File other
    // than WriteTo. This is used to permit WriteTo to call io.Copy
    // without leading to a recursive call to WriteTo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	if _, err := r.f.Seek(r.offset+offset, 0); err != nil {
    		return err
    	}
    	return binary.Read(r.f, r.order, data)
    }
    
    func (r loadCmdReader) WriteAt(offset int64, data interface{}) error {
    	if _, err := r.f.Seek(r.offset+offset, 0); err != nil {
    		return err
    	}
    	return binary.Write(r.f, r.order, data)
    }
    
    // machoCombineDwarf merges dwarf info generated by dsymutil into a macho executable.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  7. src/net/net.go

    // hide the WriteTo method of that other type.
    type noWriteTo struct{}
    
    // WriteTo hides another WriteTo method.
    // It should never be called.
    func (noWriteTo) WriteTo(io.Writer) (int64, error) {
    	panic("can't happen")
    }
    
    // tcpConnWithoutWriteTo implements all the methods of *TCPConn other
    // than WriteTo. This is used to permit WriteTo to call io.Copy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/scope.go

    			}
    		}
    		return s
    	}
    	return nil
    }
    
    // WriteTo writes a string representation of the scope to w,
    // with the scope elements sorted by name.
    // The level of indentation is controlled by n >= 0, with
    // n == 0 for no indentation.
    // If recurse is set, it also writes nested (children) scopes.
    func (s *Scope) WriteTo(w io.Writer, n int, recurse bool) {
    	const ind = ".  "
    	indn := strings.Repeat(ind, n)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. src/go/types/scope.go

    			}
    		}
    		return s
    	}
    	return nil
    }
    
    // WriteTo writes a string representation of the scope to w,
    // with the scope elements sorted by name.
    // The level of indentation is controlled by n >= 0, with
    // n == 0 for no indentation.
    // If recurse is set, it also writes nested (children) scopes.
    func (s *Scope) WriteTo(w io.Writer, n int, recurse bool) {
    	const ind = ".  "
    	indn := strings.Repeat(ind, n)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  10. src/net/tcpsock.go

    	}
    	return n, err
    }
    
    // WriteTo implements the io.WriterTo WriteTo method.
    func (c *TCPConn) WriteTo(w io.Writer) (int64, error) {
    	if !c.ok() {
    		return 0, syscall.EINVAL
    	}
    	n, err := c.writeTo(w)
    	if err != nil && err != io.EOF {
    		err = &OpError{Op: "writeto", Net: c.fd.net, Source: c.fd.laddr, Addr: c.fd.raddr, Err: err}
    	}
    	return n, err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 03:10:07 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top