Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for xi (0.02 sec)

  1. src/runtime/mprof.go

    	allnext.StoreNoWB(unsafe.Pointer(b))
    
    	unlock(&profInsertLock)
    	return b
    }
    
    func eqslice(x, y []uintptr) bool {
    	if len(x) != len(y) {
    		return false
    	}
    	for i, xi := range x {
    		if xi != y[i] {
    			return false
    		}
    	}
    	return true
    }
    
    // mProf_NextCycle publishes the next heap profile cycle and creates a
    // fresh heap profile cycle. This operation is fast and can be done
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. src/go/build/build.go

    	p.ImportPath = f[1]
    	p.Root = f[2]
    	p.Goroot = f[3] == "true"
    	return nil
    }
    
    func equal(x, y []string) bool {
    	if len(x) != len(y) {
    		return false
    	}
    	for i, xi := range x {
    		if xi != y[i] {
    			return false
    		}
    	}
    	return true
    }
    
    // hasGoFiles reports whether dir contains any files with names ending in .go.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
Back to top