Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for u1 (0.03 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        limiter.acquire(3); // R0.00, from capacity
        limiter.acquire(1); // R0.00, concluding a burst of 5 permits
    
        limiter.acquire(); // R0.20, capacity exhausted
        assertEvents(
            "U1.00", "U1.00", "R0.00", "R0.00", "R0.00", "R0.00", // first request and burst
            "R0.20");
      }
    
      public void testCreateWarmupParameterValidation() {
        RateLimiter unused;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        limiter.acquire(3); // R0.00, from capacity
        limiter.acquire(1); // R0.00, concluding a burst of 5 permits
    
        limiter.acquire(); // R0.20, capacity exhausted
        assertEvents(
            "U1.00", "U1.00", "R0.00", "R0.00", "R0.00", "R0.00", // first request and burst
            "R0.20");
      }
    
      public void testCreateWarmupParameterValidation() {
        RateLimiter unused;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Oct 21 14:28:19 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. cmd/site-replication.go

    			return false
    		}
    	}
    	return true
    }
    
    func isUserInfoEqual(u1, u2 madmin.UserInfo) bool {
    	if u1.PolicyName != u2.PolicyName ||
    		u1.Status != u2.Status ||
    		u1.SecretKey != u2.SecretKey {
    		return false
    	}
    	for len(u1.MemberOf) != len(u2.MemberOf) {
    		return false
    	}
    	for _, v1 := range u1.MemberOf {
    		var found bool
    		for _, v2 := range u2.MemberOf {
    			if v1 == v2 {
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 15 12:04:40 UTC 2024
    - 185.1K bytes
    - Viewed (0)
  4. doc/go1.17_spec.html

    var p = 1<<s == 1<<33          // 1 has type int; p == true
    var u = 1.0<<s                 // illegal: 1.0 has type float64, cannot shift
    var u1 = 1.0<<s != 0           // illegal: 1.0 has type float64, cannot shift
    var u2 = 1<<s != 1.0           // illegal: 1 has type float64, cannot shift
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Thu Oct 10 18:25:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  5. doc/go_spec.html

    var p = 1<<s == 1<<33          // 1 has type int; p == true
    var u = 1.0<<s                 // illegal: 1.0 has type float64, cannot shift
    var u1 = 1.0<<s != 0           // illegal: 1.0 has type float64, cannot shift
    var u2 = 1<<s != 1.0           // illegal: 1 has type float64, cannot shift
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Oct 02 00:58:01 UTC 2024
    - 282.5K bytes
    - Viewed (0)
Back to top