Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for 150 (0.46 sec)

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

              protected void doStart() {
                super.doStart();
                // This will delay service listener execution at least 150 milliseconds
                Uninterruptibles.sleepUninterruptibly(150, TimeUnit.MILLISECONDS);
              }
            };
        Service a =
            new NoOpDelayedService(150) {
              @Override
              protected void doStart() {
                b.startAsync();
                super.doStart();
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 02 17:20:27 GMT 2023
    - 23.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

              protected void doStart() {
                super.doStart();
                // This will delay service listener execution at least 150 milliseconds
                Uninterruptibles.sleepUninterruptibly(150, TimeUnit.MILLISECONDS);
              }
            };
        Service a =
            new NoOpDelayedService(150) {
              @Override
              protected void doStart() {
                b.startAsync();
                super.doStart();
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Oct 02 17:20:27 GMT 2023
    - 23.2K bytes
    - Viewed (0)
  3. internal/etag/etag_test.go

    	ShouldFail bool
    }{
    	{String: "3b83ef96387f1465", ETag: ETag{59, 131, 239, 150, 56, 127, 20, 101}},                                                                    // 0
    	{String: "3b83ef96387f14655fc854ddc3c6bd57", ETag: ETag{59, 131, 239, 150, 56, 127, 20, 101, 95, 200, 84, 221, 195, 198, 189, 87}},               // 1
    	{String: `"3b83ef96387f14655fc854ddc3c6bd57"`, ETag: ETag{59, 131, 239, 150, 56, 127, 20, 101, 95, 200, 84, 221, 195, 198, 189, 87}},             // 2
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Sep 18 17:00:54 GMT 2023
    - 12.6K bytes
    - Viewed (0)
  4. docs/en/docs/img/deployment/concepts/process-ram.drawio

                        <mxGeometry x="1130" y="490" width="150" height="150" as="geometry"/>
                    </mxCell>
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu May 12 00:06:16 GMT 2022
    - 10K bytes
    - Viewed (0)
  5. okhttp/src/test/java/okhttp3/internal/connection/ConnectionPoolTest.kt

        assertThat(pool.connectionCount()).isEqualTo(2)
    
        // Running at time 150, the pool evicts c2.
        assertThat(pool.closeConnections(150L)).isEqualTo(0L)
        assertThat(pool.connectionCount()).isEqualTo(1)
        assertThat(c1.socket().isClosed).isFalse()
        assertThat(c2.socket().isClosed).isTrue()
    
        // Running at time 150, the pool returns that nothing can be evicted until time 175.
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Apr 24 04:40:49 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/base/SuppliersTest.java

        assertEquals(10, (int) memoizedSupplier.get());
        // it still should only have executed once due to memoization
        assertEquals(1, countingSupplier.calls);
    
        Thread.sleep(150);
    
        assertEquals(20, (int) memoizedSupplier.get());
        // old value expired
        assertEquals(2, countingSupplier.calls);
    
        assertEquals(20, (int) memoizedSupplier.get());
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 18.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/base/SuppliersTest.java

        assertEquals(10, (int) memoizedSupplier.get());
        // it still should only have executed once due to memoization
        assertEquals(1, countingSupplier.calls);
    
        Thread.sleep(150);
    
        assertEquals(20, (int) memoizedSupplier.get());
        // old value expired
        assertEquals(2, countingSupplier.calls);
    
        assertEquals(20, (int) memoizedSupplier.get());
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 18.1K bytes
    - Viewed (0)
  8. cmd/bucket-metadata-sys.go

    	}
    }
    
    func (sys *BucketMetadataSys) refreshBucketsMetadataLoop(ctx context.Context, failedBuckets map[string]struct{}) {
    	const bucketMetadataRefresh = 15 * time.Minute
    
    	sleeper := newDynamicSleeper(2, 150*time.Millisecond, false)
    
    	t := time.NewTimer(bucketMetadataRefresh)
    	defer t.Stop()
    	for {
    		select {
    		case <-ctx.Done():
    			return
    		case <-t.C:
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 19.8K bytes
    - Viewed (0)
  9. cmd/apierrorcode_string.go

    	_ = x[ErrKMSNotConfigured-145]
    	_ = x[ErrKMSKeyNotFoundException-146]
    	_ = x[ErrKMSDefaultKeyAlreadyConfigured-147]
    	_ = x[ErrNoAccessKey-148]
    	_ = x[ErrInvalidToken-149]
    	_ = x[ErrEventNotification-150]
    	_ = x[ErrARNNotification-151]
    	_ = x[ErrRegionNotification-152]
    	_ = x[ErrOverlappingFilterNotification-153]
    	_ = x[ErrFilterNameInvalid-154]
    	_ = x[ErrFilterNamePrefix-155]
    	_ = x[ErrFilterNameSuffix-156]
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 21.2K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/concurrent/TaskRunnerTest.kt

          "FINE: Q10000 run again after  50 µs: task",
          "FINE: Q10000 finished run in   0 µs: task",
          "FINE: Q10000 starting              : task",
          "FINE: Q10000 run again after 150 µs: task",
          "FINE: Q10000 finished run in   0 µs: task",
          "FINE: Q10000 starting              : task",
          "FINE: Q10000 finished run in   0 µs: task",
        )
      }
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 20K bytes
    - Viewed (0)
Back to top