Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 202 for Implementation (0.28 sec)

  1. src/fmt/scan.go

    	// The unit is Unicode code points.
    	Width() (wid int, ok bool)
    	// Because ReadRune is implemented by the interface, Read should never be
    	// called by the scanning routines and a valid implementation of
    	// ScanState may choose always to return an error from Read.
    	Read(buf []byte) (n int, err error)
    }
    
    // Scanner is implemented by any value that has a Scan method, which scans
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  2. src/syscall/syscall_solaris.go

    // but it is also input to mksyscall,
    // which parses the //sys lines and generates system call stubs.
    // Note that sometimes we use a lowercase //sys name and wrap
    // it in our own nicer implementation, either here or in
    // syscall_solaris.go or syscall_unix.go.
    
    package syscall
    
    import "unsafe"
    
    const _F_DUP2FD_CLOEXEC = F_DUP2FD_CLOEXEC
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. src/runtime/mgclimit.go

    		// our total assist time.
    		return
    	}
    	if l.transitioning {
    		throw("update during transition")
    	}
    	l.updateLocked(now)
    	l.unlock()
    }
    
    // updateLocked is the implementation of update. l.lock must be held.
    func (l *gcCPULimiterState) updateLocked(now int64) {
    	lastUpdate := l.lastUpdate.Load()
    	if now < lastUpdate {
    		// Defensively avoid overflow. This isn't even the latest update anyway.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. src/runtime/heapdump.go

    // Copyright 2014 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Implementation of runtime/debug.WriteHeapDump. Writes all
    // objects in the heap plus additional info (roots, threads,
    // finalizers, etc.) to a file.
    
    // The format of the dumped file is described at
    // https://golang.org/s/go15heapdump.
    
    package runtime
    
    import (
    	"internal/abi"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/hash/crc32/crc32_ppc64le.s

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // The vectorized implementation found below is a derived work
    // from code written by Anton Blanchard <******@****.***> found
    // at https://github.com/antonblanchard/crc32-vpmsum.  The original
    // is dual licensed under GPL and Apache 2.  As the copyright holder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 12:09:50 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. test/typeparam/list2.go

    package main
    
    import (
    	"fmt"
    	"strconv"
    )
    
    // _Element is an element of a linked list.
    type _Element[T any] struct {
    	// Next and previous pointers in the doubly-linked list of elements.
    	// To simplify the implementation, internally a list l is implemented
    	// as a ring, such that &l.root is both the next element of the last
    	// list element (l.Back()) and the previous element of the first list
    	// element (l.Front()).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  7. src/os/file_windows.go

    }
    
    // DevNull is the name of the operating system's “null device.”
    // On Unix-like systems, it is "/dev/null"; on Windows, "NUL".
    const DevNull = "NUL"
    
    // openFileNolog is the Windows implementation of OpenFile.
    func openFileNolog(name string, flag int, perm FileMode) (*File, error) {
    	if name == "" {
    		return nil, &PathError{Op: "open", Path: name, Err: syscall.ENOENT}
    	}
    	path := fixLongPath(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. src/os/file_plan9.go

    		o |= syscall.DMAPPEND
    	}
    	if i&ModeExclusive != 0 {
    		o |= syscall.DMEXCL
    	}
    	if i&ModeTemporary != 0 {
    		o |= syscall.DMTMP
    	}
    	return
    }
    
    // openFileNolog is the Plan 9 implementation of OpenFile.
    func openFileNolog(name string, flag int, perm FileMode) (*File, error) {
    	var (
    		fd     int
    		e      error
    		create bool
    		excl   bool
    		trunc  bool
    		append bool
    	)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  9. src/net/cgo_unix.go

    //	 Multicast DNS	UTF-8 in RFC 5198 or		<=253 + a NUL terminator
    //				the same as unicast DNS ASCII	<=253 + a NUL terminator
    //	 Local database	various				depends on implementation
    const (
    	nameinfoLen    = 64
    	maxNameinfoLen = 4096
    )
    
    func cgoLookupPTR(ctx context.Context, addr string) (names []string, err error) {
    	ip, err := netip.ParseAddr(addr)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. src/html/template/template.go

    // t.
    func (t *Template) New(name string) *Template {
    	t.nameSpace.mu.Lock()
    	defer t.nameSpace.mu.Unlock()
    	return t.new(name)
    }
    
    // new is the implementation of New, without the lock.
    func (t *Template) new(name string) *Template {
    	tmpl := &Template{
    		nil,
    		t.text.New(name),
    		nil,
    		t.nameSpace,
    	}
    	if existing, ok := tmpl.set[name]; ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:00:46 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top