Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 63 for original (0.14 sec)

  1. src/io/fs/fs.go

    	Type() FileMode
    
    	// Info returns the FileInfo for the file or subdirectory described by the entry.
    	// The returned FileInfo may be from the time of the original directory read
    	// or from the time of the call to Info. If the file has been removed or renamed
    	// since the directory read, Info may return an error satisfying errors.Is(err, ErrNotExist).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 15 21:21:41 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  2. src/compress/gzip/gzip_test.go

    	z := NewWriter(buf)
    	msg := []byte("hello world")
    	z.Write(msg)
    	z.Close()
    	z.Reset(buf2)
    	z.Write(msg)
    	z.Close()
    	if buf.String() != buf2.String() {
    		t.Errorf("buf2 %q != original buf of %q", buf2.String(), buf.String())
    	}
    }
    
    type limitedWriter struct {
    	N int
    }
    
    func (l *limitedWriter) Write(p []byte) (n int, err error) {
    	if n := l.N; n < len(p) {
    		l.N = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:10:06 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. src/internal/coverage/cformat/format.go

    // source position information (e.g. file and line). Note that we don't
    // include function name as part of the sorting criteria, the thinking
    // being that is better to provide things in the original source order.
    func (p *pstate) sortUnits(units []extcu) {
    	slices.SortFunc(units, func(ui, uj extcu) int {
    		ifile := p.funcs[ui.fnfid].file
    		jfile := p.funcs[uj.fnfid].file
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. src/internal/poll/fd_wasip1.go

    	// underlying file descriptor with reference counting.
    	RefCountPtr *int32
    
    	// RefCount is the reference count of Sysfd. When a copy of an FD is made,
    	// it points to the reference count of the original FD instance.
    	RefCount int32
    
    	// Cache for the file type, lazily initialized when Seek is called.
    	Filetype uint32
    
    	// If the file represents a directory, this field contains the current
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:14:02 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. src/slices/sort.go

    func SortFunc[S ~[]E, E any](x S, cmp func(a, b E) int) {
    	n := len(x)
    	pdqsortCmpFunc(x, 0, n, bits.Len(uint(n)), cmp)
    }
    
    // SortStableFunc sorts the slice x while keeping the original order of equal
    // elements, using cmp to compare elements in the same way as [SortFunc].
    func SortStableFunc[S ~[]E, E any](x S, cmp func(a, b E) int) {
    	stableCmpFunc(x, len(x), cmp)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 23:54:41 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/looprotate.go

    		after[p.ID] = []*Block{b}
    		for {
    			nextIdx := idToIdx[b.ID] + 1
    			if nextIdx >= len(f.Blocks) { // reached end of function (maybe impossible?)
    				break
    			}
    			nextb := f.Blocks[nextIdx]
    			if nextb == p { // original loop predecessor is next
    				break
    			}
    			if loopnest.b2l[nextb.ID] == loop {
    				after[p.ID] = append(after[p.ID], nextb)
    			}
    			b = nextb
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. src/os/zero_copy_linux.go

    // tryLimitedReader tries to assert the io.Reader to io.LimitedReader, it returns the io.LimitedReader,
    // the underlying io.Reader and the remaining amount of bytes if the assertion succeeds,
    // otherwise it just returns the original io.Reader and the theoretical unlimited remaining amount of bytes.
    func tryLimitedReader(r io.Reader) (*io.LimitedReader, io.Reader, int64) {
    	var remain int64 = 1<<63 - 1 // by default, copy until EOF
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 18:12:56 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. src/crypto/md5/md5block_s390x.s

    // Original source:
    //	http://www.zorinaq.com/papers/md5-amd64.html
    //	http://www.zorinaq.com/papers/md5-amd64.tar.bz2
    //
    // MD5 adapted for s390x using Go's assembler for
    // s390x, based on md5block_amd64.s implementation by
    // the Go authors.
    //
    // Author: Marc Bevand <bevand_m (at) epita.fr>
    // Licence: I hereby disclaim the copyright on this code and place it
    // in the public domain.
    
    //go:build !purego
    
    #include "textflag.h"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. src/go/types/typeparam.go

    	}
    
    	// compute type set if necessary
    	if ityp.tset == nil {
    		// pos is used for tracing output; start with the type parameter position.
    		pos := t.obj.pos
    		// use the (original or possibly instantiated) type bound position if we have one
    		if n := asNamed(bound); n != nil {
    			pos = n.obj.pos
    		}
    		computeInterfaceTypeSet(t.check, pos, ityp)
    	}
    
    	return ityp
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. src/crypto/md5/md5block_amd64.s

    // Original source:
    //	http://www.zorinaq.com/papers/md5-amd64.html
    //	http://www.zorinaq.com/papers/md5-amd64.tar.bz2
    //
    // Translated from Perl generating GNU assembly into
    // #defines generating 6a assembly by the Go Authors.
    
    //go:build !purego
    
    #include "textflag.h"
    
    // MD5 optimized for AMD64.
    //
    // Author: Marc Bevand <bevand_m (at) epita.fr>
    // Licence: I hereby disclaim the copyright on this code and place it
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top