Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 23 of 23 for Accounting (0.24 sec)

  1. cmd/xl-storage-format-v2.go

    					// Version IDs match, but otherwise unable to resolve.
    					// We are either strict, or don't have enough information to match.
    					// Switch to a pure counting algo.
    					x := make(map[xlMetaV2VersionHeader]int, len(tops))
    					for _, a := range tops {
    						if a.header.VersionID != ver.header.VersionID {
    							continue
    						}
    						if !strict {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    		d--
    	}
    	return nil // too far away
    found:
    	// At this point, r is the first value in a that we find by walking backwards.
    	// if we return anything, r will be it.
    	r := b
    
    	// Keep going, counting the other a's that we find. They must all dominate r.
    	na := 0
    	for d > 0 {
    		for _, x := range a {
    			if b == x.Block {
    				na++
    			}
    		}
    		if na == len(a) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    	if t.MaxConnsPerHost <= 0 {
    		return
    	}
    
    	t.connsPerHostMu.Lock()
    	defer t.connsPerHostMu.Unlock()
    	n := t.connsPerHost[key]
    	if n == 0 {
    		// Shouldn't happen, but if it does, the counting is buggy and could
    		// easily lead to a silent deadlock, so report the problem loudly.
    		panic("net/http: internal error: connCount underflow")
    	}
    
    	// Can we hand this count to a goroutine still waiting to dial?
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
Back to top