Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for participating (0.26 sec)

  1. cmd/erasure-server-pool.go

    	nSets := make([]int, len(z.serverPools))
    	g := errgroup.WithNErrs(len(z.serverPools))
    	for index := range z.serverPools {
    		index := index
    		// Skip suspended pools or pools participating in rebalance for any new
    		// I/O.
    		if z.IsSuspended(index) || z.IsPoolRebalancing(index) {
    			continue
    		}
    		pool := z.serverPools[index]
    		nSets[index] = pool.setCount
    		g.Go(func() error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/loader/loader.go

    // the symbol first class sym (participating in the link) or is an
    // anonymous aux or sub-symbol containing some sub-part or payload of
    // another symbol.
    func (l *Loader) TopLevelSym(s Sym) bool {
    	return topLevelSym(l.SymName(s), l.SymType(s))
    }
    
    // topLevelSym tests a symbol name and kind to determine whether
    // the symbol first class sym (participating in the link) or is an
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  3. src/net/http/transport.go

    	errServerClosedIdle = errors.New("http: server closed idle connection")
    )
    
    // transportReadFromServerError is used by Transport.readLoop when the
    // 1 byte peek read fails and we're actually anticipating a response.
    // Usually this is just due to the inherent keep-alive shut down race,
    // where the server closed the connection at the same time the client
    // wrote. The underlying err field is usually io.EOF or some
    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