Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Loadint32 (0.11 sec)

  1. cmd/bucket-replication.go

    func (p *ReplicationPool) ActiveWorkers() int {
    	return int(atomic.LoadInt32(&p.activeWorkers))
    }
    
    // ActiveMRFWorkers returns the number of active workers handling replication failures.
    func (p *ReplicationPool) ActiveMRFWorkers() int {
    	return int(atomic.LoadInt32(&p.activeMRFWorkers))
    }
    
    // ResizeWorkers sets replication workers pool to new size.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    				}
    			}
    			defer res.Body.Close()
    			_, err = io.Copy(io.Discard, res.Body)
    			if err != nil {
    				t.Error(err)
    				return
    			}
    		}()
    	}
    	wg.Wait()
    	if got := atomic.LoadInt32(&n); got != reqs {
    		t.Errorf("handler ran %d times; want %d", got, reqs)
    	}
    }
    
    func TestServerConnStateNew(t *testing.T) {
    	sawNew := false // if the test is buggy, we'll race on this variable.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    		if doBreak != (err != nil) {
    			t.Errorf("for iteration %d, doBreak=%v; unexpected error %v", i, doBreak, err)
    		}
    	}
    	if got, want := atomic.LoadUint32(&gotConns), 1; int(got) != want {
    		t.Errorf("GotConn calls = %v; want %v", got, want)
    	}
    	if got, want := atomic.LoadUint32(&numDials), numReqs; int(got) != want {
    		t.Errorf("Dials = %v; want %v", got, want)
    	}
    }
    
    // Issue 34941
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    		return emptyStruct{}, i
    	}
    	v := ValueOf(f).Call(nil)[0] // out[0] should not alias out[1]'s memory, so the finalizer should run.
    	timeout := time.After(5 * time.Second)
    	for atomic.LoadUint32(&finalized) == 0 {
    		select {
    		case <-timeout:
    			t.Fatal("finalizer did not run")
    		default:
    		}
    		runtime.Gosched()
    		runtime.GC()
    	}
    	runtime.KeepAlive(v)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top