Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for reuse (0.31 sec)

  1. src/cmd/asm/internal/asm/parse.go

    //
    // It adds any labels to p.pendingLabels and returns the word, cond,
    // operand list, and true. If there is an error or EOF, it returns
    // ok=false.
    //
    // line may reuse the memory from scratch.
    func (p *Parser) line(scratch [][]lex.Token) (word, cond string, operands [][]lex.Token, ok bool) {
    next:
    	// Skip newlines.
    	var tok lex.ScanToken
    	for {
    		tok = p.nextToken()
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Feb 21 14:34:57 GMT 2024
    - 36.9K bytes
    - Viewed (0)
  2. src/arena/arena.go

    Note that by allowing for this limited form of manual memory allocation
    that use-after-free bugs are possible with regular Go values. This package
    limits the impact of these use-after-free bugs by preventing reuse of freed
    memory regions until the garbage collector is able to determine that it is
    safe. Typically, a use-after-free bug will result in a fault and a helpful
    error message, but this package reserves the right to not force a fault on
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Oct 12 20:23:36 GMT 2022
    - 4.3K bytes
    - Viewed (0)
  3. api/go1.1.txt

    pkg syscall (darwin-386), const LOCK_UN = 8
    pkg syscall (darwin-386), const MADV_CAN_REUSE = 9
    pkg syscall (darwin-386), const MADV_DONTNEED = 4
    pkg syscall (darwin-386), const MADV_FREE = 5
    pkg syscall (darwin-386), const MADV_FREE_REUSABLE = 7
    pkg syscall (darwin-386), const MADV_FREE_REUSE = 8
    pkg syscall (darwin-386), const MADV_NORMAL = 0
    pkg syscall (darwin-386), const MADV_RANDOM = 1
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
  4. api/go1.7.txt

    pkg net/http/httptrace, type GotConnInfo struct
    pkg net/http/httptrace, type GotConnInfo struct, Conn net.Conn
    pkg net/http/httptrace, type GotConnInfo struct, IdleTime time.Duration
    pkg net/http/httptrace, type GotConnInfo struct, Reused bool
    pkg net/http/httptrace, type GotConnInfo struct, WasIdle bool
    pkg net/http/httptrace, type WroteRequestInfo struct
    pkg net/http/httptrace, type WroteRequestInfo struct, Err error
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Jun 28 15:08:11 GMT 2016
    - 13.6K bytes
    - Viewed (0)
  5. api/go1.16.txt

    pkg syscall (darwin-arm64), const LOCK_SH ideal-int
    pkg syscall (darwin-arm64), const LOCK_UN = 8
    pkg syscall (darwin-arm64), const LOCK_UN ideal-int
    pkg syscall (darwin-arm64), const MADV_CAN_REUSE = 9
    pkg syscall (darwin-arm64), const MADV_CAN_REUSE ideal-int
    pkg syscall (darwin-arm64), const MADV_DONTNEED = 4
    pkg syscall (darwin-arm64), const MADV_DONTNEED ideal-int
    pkg syscall (darwin-arm64), const MADV_FREE = 5
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Dec 02 16:30:41 GMT 2022
    - 479.2K bytes
    - Viewed (0)
  6. src/cmd/api/main_test.go

    	}
    
    	context := w.context
    	if context == nil {
    		context = &build.Default
    	}
    
    	// Look in cache.
    	// If we've already done an import with the same set
    	// of relevant tags, reuse the result.
    	var key string
    	if usePkgCache {
    		if tags, ok := pkgTags[dir]; ok {
    			key = tagKey(dir, context, tags)
    			if pkg := pkgCache[key]; pkg != nil {
    				w.imported[name] = pkg
    				return pkg, nil
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Tue Apr 09 20:48:51 GMT 2024
    - 31.4K bytes
    - Viewed (0)
  7. api/go1.txt

    pkg syscall (darwin-386), const LOCK_UN ideal-int
    pkg syscall (darwin-386), const MADV_CAN_REUSE ideal-int
    pkg syscall (darwin-386), const MADV_DONTNEED ideal-int
    pkg syscall (darwin-386), const MADV_FREE ideal-int
    pkg syscall (darwin-386), const MADV_FREE_REUSABLE ideal-int
    pkg syscall (darwin-386), const MADV_FREE_REUSE ideal-int
    pkg syscall (darwin-386), const MADV_NORMAL ideal-int
    Plain Text
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Aug 14 18:58:28 GMT 2013
    - 1.7M bytes
    - Viewed (1)
  8. src/cmd/cgo/internal/test/issue1435.go

    		for _, line := range lines {
    			// Different kernel vintages pad differently.
    			line = strings.TrimSpace(line)
    			if strings.HasPrefix(line, "Pid:\t") {
    				// On loaded systems, it is possible
    				// for a TID to be reused really
    				// quickly. As such, we need to
    				// validate that the thread status
    				// info we just read is a task of the
    				// same process PID as we are
    				// currently running, and not a
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Fri Jul 28 21:31:41 GMT 2023
    - 7.5K bytes
    - Viewed (0)
Back to top