Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 49 of 49 for epstest (0.62 sec)

  1. src/runtime/chan.go

     * then the protocol will not
     * sleep but return if it could
     * not complete.
     *
     * sleep can wake up with g.param == nil
     * when a channel involved in the sleep has
     * been closed.  it is easiest to loop and re-run
     * the operation; we'll see that it's now closed.
     */
    func chansend(c *hchan, ep unsafe.Pointer, block bool, callerpc uintptr) bool {
    	if c == nil {
    		if !block {
    			return false
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:50 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/pcln.go

    	// then not loading extra filenames), and just use the hash value of the
    	// symbol name to do this cataloging.
    	//
    	// TODO: Store filenames as symbols. (Note this would be easiest if you
    	// also move strings to ALWAYS using the larger content addressable hash
    	// function, and use that hash value for uniqueness testing.)
    	cuEntries := make([]goobj.CUFileIndex, len(compUnits))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  3. src/runtime/pprof/pprof.go

    	// (objects and bytes, not distinguishing alloc from inuse),
    	// but then such a profile can't be merged using pprof *.prof with
    	// other 4-column profiles where alloc != inuse.
    	// The easiest way to avoid this bug is to adjust allocBytes so it's never == inuseBytes.
    	// pprof doesn't use these header values anymore except for checking equality.
    	inUseBytes := total.InUseBytes()
    	allocBytes := total.AllocBytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/asm/asm.go

    	case obj.TYPE_CONST, obj.TYPE_FCONST, obj.TYPE_SCONST, obj.TYPE_ADDR:
    		// OK
    	default:
    		p.errorf("DATA value must be an immediate constant or address")
    		return
    	}
    
    	// The addresses must not overlap. Easiest test: require monotonicity.
    	if lastAddr, ok := p.dataAddr[name]; ok && nameAddr.Offset < lastAddr {
    		p.errorf("overlapping DATA entry for %s", name)
    		return
    	}
    	p.dataAddr[name] = nameAddr.Offset + int64(sz)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  5. src/crypto/internal/bigmod/nat.go

    	// the Montgomery domain, meaning we can use Montgomery multiplication now).
    	// We could do that by doubling _W * n times, or with a square-and-double
    	// chain log2(_W * n) long. Turns out the fastest thing is to start out with
    	// doublings, and switch to square-and-double once the exponent is large
    	// enough to justify the cost of the multiplications.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/performance.adoc

    The build scan above shows that `:task1` and `:task3` could be improved and made cacheable
    and shows why Gradle didn't cache them.
    
    == Create builds for specific developer workflows
    
    The fastest task is one that doesn’t execute.
    If you can find ways to skip tasks you don’t need to run, you’ll end up with a faster build overall.
    
    If your build includes multiple subprojects, create tasks to build those subprojects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/edit.go

    	// indirect upgrade never introduces a conflict that leads to further
    	// downgrades. I really want to be able to prove that editRequirements
    	// terminates, and the easiest way to prove it is to add this map.
    	//
    	// Then the proof of termination is this:
    	// On every iteration where we mark the roots as dirty, we add some new module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  8. src/cmd/go/internal/vcs/vcs.go

    func (v *Cmd) IsSecure(repo string) bool {
    	u, err := urlpkg.Parse(repo)
    	if err != nil {
    		// If repo is not a URL, it's not secure.
    		return false
    	}
    	if VCSTestRepoURL != "" && web.IsLocalHost(u) {
    		// If the vcstest server is in use, it may redirect to other local ports for
    		// other protocols (such as svn). Assume that all loopback addresses are
    		// secure during testing.
    		return true
    	}
    	return v.isSecureScheme(u.Scheme)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  9. src/runtime/asm_ppc64x.s

    // module containing runtime) to the frame that goexit will execute in when
    // the goroutine exits. It's implemented in assembly mainly because that's the
    // easiest way to get access to R2.
    TEXT runtime·prepGoExitFrame(SB),NOSPLIT,$0-8
    	MOVD    sp+0(FP), R3
    	MOVD    R2, 24(R3)
    	RET
    
    TEXT runtime·addmoduledata(SB),NOSPLIT|NOFRAME,$0-0
    	ADD	$-8, R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
Back to top