Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for deferpool (0.35 sec)

  1. src/runtime/mgc.go

    	// disconnect cached list before dropping it on the floor,
    	// so that a dangling ref to one entry does not pin all of them.
    	var d, dlink *_defer
    	for d = sched.deferpool; d != nil; d = dlink {
    		dlink = d.link
    		d.link = nil
    	}
    	sched.deferpool = nil
    	unlock(&sched.deferlock)
    }
    
    // Timing
    
    // itoaDiv formats val/(10**dec) into buf.
    func itoaDiv(buf []byte, val uint64, dec int) []byte {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  2. cmd/erasure-server-pool.go

    			return pinfo, noReadQuorumPools, nil
    		}
    	}
    	if opts.ReplicationRequest && opts.DeleteMarker && defPool.Index >= 0 {
    		// If the request is a delete marker replication request, return a default pool
    		// in cases where the object does not exist.
    		// This is to ensure that the delete marker is replicated to the destination.
    		return defPool, noReadQuorumPools, nil
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  3. src/runtime/traceback.go

    	// a safe point for looking up liveness information. In this panicking case,
    	// the function either doesn't return at all (if it has no defers or if the
    	// defers do not recover) or it returns from one of the calls to
    	// deferproc a second time (if the corresponding deferred func recovers).
    	// In the latter case, use a deferreturn call site as the continuation pc.
    	frame.continpc = frame.pc
    	if u.calleeFuncID == abi.FuncID_sigpanic {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top