Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for 144 (0.22 sec)

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

      }
    
      public void testAwaitTermination() throws Exception {
        boolean result = executorService.awaitTermination(Duration.ofMinutes(144));
    
        assertThat(result).isTrue();
        assertThat(recordedTimeUnit).isEqualTo(NANOSECONDS);
        assertThat(Duration.ofNanos(recordedTimeout)).isEqualTo(Duration.ofMinutes(144));
      }
    
      private class FakeExecutorService extends AbstractListeningExecutorService {
        @Override
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Fri Jun 02 12:45:23 GMT 2023
    - 4.5K bytes
    - Viewed (0)
  2. internal/etag/etag_test.go

    	{ // 4
    		ETag:   ETag{144, 64, 44, 120, 210, 220, 205, 222, 225, 233, 232, 98, 34, 206, 44, 99, 97, 103, 95, 53, 41, 210, 96, 0, 174, 46, 144, 15, 242, 22, 179, 203, 89, 225, 48, 224, 146, 216, 162, 152, 30, 119, 111, 77, 11, 214, 9, 65},
    		String: "90402c78d2dccddee1e9e86222ce2c6361675f3529d26000ae2e900ff216b3cb59e130e092d8a2981e776f4d0bd60941",
    	},
    	{ // 5
    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)
  3. docs/en/layouts/custom.yml

    # Card size and layers
    size: { width: 1200, height: 630 }
    layers:
    
      # Background
      - background:
          image: *background_image
          color: *background_color
    
      # Logo
      - size: { width: 144, height: 144 }
        offset: { x: 992, y: 64 }
        background:
          image: *logo
        icon:
          value: *logo_icon
          color: *color
    
      # Site name
      - size: { width: 832, height: 42 }
    Others
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Mon Jun 26 14:05:43 GMT 2023
    - 6.5K bytes
    - Viewed (0)
  4. cmd/apierrorcode_string.go

    	_ = x[ErrMissingSSECustomerKey-140]
    	_ = x[ErrMissingSSECustomerKeyMD5-141]
    	_ = x[ErrSSECustomerKeyMD5Mismatch-142]
    	_ = x[ErrInvalidSSECustomerParameters-143]
    	_ = x[ErrIncompatibleEncryptionMethod-144]
    	_ = x[ErrKMSNotConfigured-145]
    	_ = x[ErrKMSKeyNotFoundException-146]
    	_ = x[ErrKMSDefaultKeyAlreadyConfigured-147]
    	_ = x[ErrNoAccessKey-148]
    	_ = x[ErrInvalidToken-149]
    	_ = x[ErrEventNotification-150]
    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)
  5. docs/distributed/DESIGN.md

    ```
    minio server http://host{1...32}/export{1...32} http://host{1...12}/export{1...12}
    ```
    
    In above example there are two server pools
    
    - 32 * 32 = 1024 drives pool1
    - 12 * 12 = 144 drives pool2
    
    Plain Text
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Aug 15 23:04:20 GMT 2023
    - 8K bytes
    - Viewed (0)
  6. cmd/endpoint-ellipses_test.go

    			[][]uint64{{15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15, 15}},
    			15,
    			true,
    		},
    		{
    			[]string{"http://host{1...12}/data{1...12}"},
    			[]uint64{144},
    			[][]uint64{{12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12, 12}},
    			12,
    			true,
    		},
    		{
    			[]string{"http://host{0...5}/data{1...28}"},
    			[]uint64{168},
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Dec 07 09:33:56 GMT 2023
    - 15.2K bytes
    - Viewed (0)
  7. src/archive/zip/zip_test.go

    // which contains no body.
    func TestZeroLengthHeader(t *testing.T) {
    	h := FileHeader{
    		Name:   "extadata.txt",
    		Method: Deflate,
    		Extra: []byte{
    			85, 84, 5, 0, 3, 154, 144, 195, 77, // tag 21589 size 5
    			85, 120, 0, 0, // tag 30805 size 0
    		},
    	}
    	testValidHeader(&h, t)
    }
    
    // Just benchmarking how fast the Zip64 test above is. Not related to
    Go
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/math/QuantilesTest.java

          ImmutableList.of(
              25L, 100L, 0L, 144L, 9L, 121L, 4L, 225L, 169L, 64L, 49L, 16L, 36L, 1L, 81L, 196L);
      private static final ImmutableList<Integer> SIXTEEN_SQUARES_INTEGERS =
          ImmutableList.of(25, 100, 0, 144, 9, 121, 4, 225, 169, 64, 49, 16, 36, 1, 81, 196);
      private static final double SIXTEEN_SQUARES_MIN = 0.0;
      private static final double SIXTEEN_SQUARES_DECILE_1 = 0.5 * (1.0 + 4.0);
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 29.7K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/math/QuantilesTest.java

          ImmutableList.of(
              25L, 100L, 0L, 144L, 9L, 121L, 4L, 225L, 169L, 64L, 49L, 16L, 36L, 1L, 81L, 196L);
      private static final ImmutableList<Integer> SIXTEEN_SQUARES_INTEGERS =
          ImmutableList.of(25, 100, 0, 144, 9, 121, 4, 225, 169, 64, 49, 16, 36, 1, 81, 196);
      private static final double SIXTEEN_SQUARES_MIN = 0.0;
      private static final double SIXTEEN_SQUARES_DECILE_1 = 0.5 * (1.0 + 4.0);
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 29.7K bytes
    - Viewed (0)
  10. api/go1.1.txt

    pkg log/syslog (darwin-386), const LOG_LOCAL0 Priority
    pkg log/syslog (darwin-386), const LOG_LOCAL1 = 136
    pkg log/syslog (darwin-386), const LOG_LOCAL1 Priority
    pkg log/syslog (darwin-386), const LOG_LOCAL2 = 144
    pkg log/syslog (darwin-386), const LOG_LOCAL2 Priority
    pkg log/syslog (darwin-386), const LOG_LOCAL3 = 152
    pkg log/syslog (darwin-386), const LOG_LOCAL3 Priority
    pkg log/syslog (darwin-386), const LOG_LOCAL4 = 160
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Mar 31 20:37:15 GMT 2022
    - 2.6M bytes
    - Viewed (0)
Back to top