Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for original (0.16 sec)

  1. src/cmd/compile/internal/types2/alias.go

    //
    // [underlying type]: https://go.dev/ref/spec#Underlying_types.
    func (a *Alias) Underlying() Type { return unalias(a).Underlying() }
    
    // Origin returns the generic Alias type of which a is an instance.
    // If a is not an instance of a generic alias, Origin returns a.
    func (a *Alias) Origin() *Alias { return a.orig }
    
    // TypeParams returns the type parameters of the alias type a, or nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. src/go/types/alias.go

    //
    // [underlying type]: https://go.dev/ref/spec#Underlying_types.
    func (a *Alias) Underlying() Type { return unalias(a).Underlying() }
    
    // Origin returns the generic Alias type of which a is an instance.
    // If a is not an instance of a generic alias, Origin returns a.
    func (a *Alias) Origin() *Alias { return a.orig }
    
    // TypeParams returns the type parameters of the alias type a, or nil.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. src/syscall/rlimit.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build unix
    
    package syscall
    
    import (
    	"sync/atomic"
    )
    
    // origRlimitNofile, if non-nil, is the original soft RLIMIT_NOFILE.
    var origRlimitNofile atomic.Pointer[Rlimit]
    
    // Some systems set an artificially low soft limit on open file count, for compatibility
    // with code that uses select and its hard-coded maximum file descriptor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:57 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/stdversion/stdversion.go

    // origin returns the original uninstantiated symbol for obj.
    func origin(obj types.Object) types.Object {
    	switch obj := obj.(type) {
    	case *types.Var:
    		return obj.Origin()
    	case *types.Func:
    		return obj.Origin()
    	case *types.TypeName:
    		if named, ok := obj.Type().(*types.Named); ok { // (don't unalias)
    			return named.Origin().Obj()
    		}
    	}
    	return obj
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/crypto/sha3/sha3_s390x.go

    // It does not change the underlying hash state.
    func (s *asmState) Sum(b []byte) []byte {
    	if s.state != spongeAbsorbing {
    		panic("sha3: Sum after Read")
    	}
    
    	// Copy the state to preserve the original.
    	a := s.a
    
    	// Hash the buffer. Note that we don't clear it because we
    	// aren't updating the state.
    	switch s.function {
    	case sha3_224, sha3_256, sha3_384, sha3_512:
    		klmd(s.function, &a, nil, s.buf)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top