Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 343 for original (0.1 sec)

  1. src/log/slog/handler.go

    			//
    			// Adapted from the code in fmt/print.go.
    			if v := reflect.ValueOf(v.any); v.Kind() == reflect.Pointer && v.IsNil() {
    				s.appendString("<nil>")
    				return
    			}
    
    			// Otherwise just print the original panic message.
    			s.appendString(fmt.Sprintf("!PANIC: %v", r))
    		}
    	}()
    
    	var err error
    	if s.h.json {
    		err = appendJSONValue(s, v)
    	} else {
    		err = appendTextValue(s, v)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 18:18:13 UTC 2023
    - 17.5K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    	}
    	// Now, the top bit of each m-aligned group in x is set
    	// that group was all zero in the original x.
    
    	// From each group of m bits subtract 1.
    	// Because we know only the top bits of each
    	// m-aligned group are set, we know this will
    	// set each group to have all the bits set except
    	// the top bit, so just OR with the original
    	// result to set all the bits.
    	return ^((x - (x >> (m - 1))) | x)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/load/pkg.go

    	CompiledImports   []string             // additional Imports necessary when using CompiledGoFiles (all from standard library); 1:1 with the end of PackagePublic.Imports
    	RawImports        []string             // this package's original imports as they appear in the text of the program; 1:1 with the end of PackagePublic.Imports
    	ForceLibrary      bool                 // this package is a library (even if named "main")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modget/get.go

    }
    
    type resolver struct {
    	localQueries      []*query // queries for absolute or relative paths
    	pathQueries       []*query // package path literal queries in original order
    	wildcardQueries   []*query // path wildcard queries in original order
    	patternAllQueries []*query // queries with the pattern "all"
    
    	// Indexed "none" queries. These are also included in the slices above;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ir/func.go

    	// function for go:nowritebarrierrec analysis. Only filled in
    	// if nowritebarrierrecCheck != nil.
    	NWBRCalls *[]SymAndPos
    
    	// For wrapper functions, WrappedFunc point to the original Func.
    	// Currently only used for go/defer wrappers.
    	WrappedFunc *Func
    
    	// WasmImport is used by the //go:wasmimport directive to store info about
    	// a WebAssembly function import.
    	WasmImport *WasmImport
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    			for i, p := range inst.Prefix {
    				switch p & 0xFFF {
    				case PrefixPN, PrefixPT:
    					inst.Prefix[i] &= 0xF0FF // cut interpretation bits, producing original segment prefix
    				}
    			}
    		}
    	}
    
    	// XACQUIRE/XRELEASE adjustment.
    	if inst.Op == MOV {
    		// MOV into memory is a candidate for turning REP into XRELEASE.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/codehost/git.go

    		return nil, err
    	}
    
    	// Stat may return cached info, so make a copy to modify here.
    	info := new(RevInfo)
    	*info = *statInfo
    	info.Origin = new(Origin)
    	if statInfo.Origin != nil {
    		*info.Origin = *statInfo.Origin
    	}
    	info.Origin.Ref = "HEAD"
    	info.Origin.Hash = refs["HEAD"]
    
    	return info, nil
    }
    
    // findRef finds some ref name for the given hash,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  8. src/syscall/exec_freebsd.go

    	}
    
    	// Set the controlling TTY to Ctty
    	if sys.Setctty {
    		_, _, err1 = RawSyscall(SYS_IOCTL, uintptr(sys.Ctty), uintptr(TIOCSCTTY), 0)
    		if err1 != 0 {
    			goto childerror
    		}
    	}
    
    	// Restore original rlimit.
    	if rlim != nil {
    		RawSyscall(SYS_SETRLIMIT, uintptr(RLIMIT_NOFILE), uintptr(unsafe.Pointer(rlim)), 0)
    	}
    
    	// Time to exec.
    	_, _, err1 = RawSyscall(SYS_EXECVE,
    		uintptr(unsafe.Pointer(argv0)),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 29 18:51:35 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  9. 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)
  10. src/crypto/cipher/gcm.go

    // slice with the contents of the given slice followed by that many bytes and a
    // second slice that aliases into it and contains only the extra bytes. If the
    // original slice has sufficient capacity then no allocation is performed.
    func sliceForAppend(in []byte, n int) (head, tail []byte) {
    	if total := len(in) + n; cap(in) >= total {
    		head = in[:total]
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
Back to top