Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 44 of 44 for bytereg (0.12 sec)

  1. src/reflect/deepequal.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Deep equality test via reflection
    
    package reflect
    
    import (
    	"internal/bytealg"
    	"unsafe"
    )
    
    // During deepValueEqual, must keep track of checks that are
    // in progress. The comparison algorithm assumes that all
    // checks in progress are true when it reencounters them.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:30 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. src/net/ipsock_plan9.go

    // Copyright 2009 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.
    
    package net
    
    import (
    	"context"
    	"internal/bytealg"
    	"internal/itoa"
    	"io/fs"
    	"os"
    	"syscall"
    )
    
    // probe probes IPv4, IPv6 and IPv4-mapped IPv6 communication
    // capabilities.
    //
    // Plan 9 uses IPv6 natively, see ip(3).
    func (p *ipStackCapabilities) probe() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 20:38:53 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  3. src/syscall/exec_unix.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build unix
    
    // Fork, exec, wait, etc.
    
    package syscall
    
    import (
    	errorspkg "errors"
    	"internal/bytealg"
    	"runtime"
    	"sync"
    	"unsafe"
    )
    
    // ForkLock is used to synchronize creation of new file descriptors
    // with fork.
    //
    // We want the child in a fork/exec sequence to inherit only the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  4. cmd/untar.go

    			continue
    		}
    
    		switch header.Typeflag {
    		case tar.TypeDir: // = directory
    			if o.ignoreDirs {
    				continue
    			}
    			name = trimLeadingSlash(pathJoin(name, slashSeparator))
    		case tar.TypeReg, tar.TypeChar, tar.TypeBlock, tar.TypeFifo, tar.TypeGNUSparse: // = regular
    			name = trimLeadingSlash(path.Clean(name))
    		default:
    			// ignore symlink'ed
    			continue
    		}
    		if o.prefixAll != "" {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top