Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for 75 (0.03 sec)

  1. android/guava-tests/test/com/google/common/base/SuppliersTest.java

        CountingSupplier countingSupplier = new CountingSupplier();
    
        Supplier<Integer> memoizedSupplier =
            Suppliers.memoizeWithExpiration(countingSupplier, 75, MILLISECONDS);
    
        checkExpiration(countingSupplier, memoizedSupplier);
      }
    
      @J2ktIncompatible
      @GwtIncompatible // Thread.sleep
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 17.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        for (int i = 0; i < 8; i++) {
          limiter.acquire(); // #7
        }
        assertEvents(
            "R0.00, R1.75, R1.26, R0.76, R0.30, R0.20, R0.20, R0.20", // #1
            "U0.20", // #2
            "U4.00", // #3
            "R0.00, R1.75, R1.26, R0.76, R0.30, R0.20, R0.20, R0.20", // #4
            "U0.20", // #5
            "U1.00", // #6
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        for (int i = 0; i < 8; i++) {
          limiter.acquire(); // #7
        }
        assertEvents(
            "R0.00, R1.75, R1.26, R0.76, R0.30, R0.20, R0.20, R0.20", // #1
            "U0.20", // #2
            "U4.00", // #3
            "R0.00, R1.75, R1.26, R0.76, R0.30, R0.20, R0.20, R0.20", // #4
            "U0.20", // #5
            "U1.00", // #6
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Aug 11 19:31:30 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  4. src/test/java/jcifs/dcerpc/ndr/NdrShortTest.java

                when(buffer2.dec_ndr_short()).thenReturn(75);
    
                // When: Performing multiple operations
                ndrShort.encode(buffer1);
                ndrShort.decode(buffer2);
    
                // Then: Should handle both operations correctly
                verify(buffer1).enc_ndr_short(50);
                verify(buffer2).dec_ndr_short();
                assertEquals(75, ndrShort.value);
            }
    
            @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  5. docs/metrics/prometheus/grafana/node/minio-node.json

          "gridPos": {
            "h": 5,
            "w": 6,
            "x": 6,
            "y": 0
          },
          "id": 22,
          "maxDataPoints": 100,
          "options": {
            "minVizHeight": 75,
            "minVizWidth": 75,
            "orientation": "auto",
            "reduceOptions": {
              "calcs": [
                "lastNotNull"
              ],
              "fields": "",
              "values": false
            },
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Aug 04 01:46:49 UTC 2025
    - 22.5K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/score/LtrQueryRescorerTest.java

            // Test with null parameters - should throw NPE due to OpenSearch StoredLtrQueryBuilder requirements
            final String testModelName = "test_model";
            final int testWindowSize = 75;
    
            ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
                @Override
                public String getLtrModelName() {
                    return testModelName;
                }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb1/trans/TransWaitNamedPipeResponseTest.java

        }
    
        @Test
        @DisplayName("writeDataWireFormat with offset should return 0")
        void testWriteDataWireFormatWithOffset() {
            // Arrange
            byte[] dst = new byte[100];
            int dstIndex = 75;
    
            // Act
            int result = response.writeDataWireFormat(dst, dstIndex);
    
            // Assert
            assertEquals(0, result);
        }
    
        @Test
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  8. cmd/apierrorcode_string.go

    	_ = x[ErrPreconditionFailed-69]
    	_ = x[ErrRequestTimeTooSkewed-70]
    	_ = x[ErrSignatureDoesNotMatch-71]
    	_ = x[ErrMethodNotAllowed-72]
    	_ = x[ErrInvalidPart-73]
    	_ = x[ErrInvalidPartOrder-74]
    	_ = x[ErrMissingPart-75]
    	_ = x[ErrAuthorizationHeaderMalformed-76]
    	_ = x[ErrMalformedPOSTRequest-77]
    	_ = x[ErrPOSTFileRequired-78]
    	_ = x[ErrSignatureVersionNotSupported-79]
    	_ = x[ErrBucketNotEmpty-80]
    	_ = x[ErrAllAccessDisabled-81]
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Wed Apr 16 07:34:24 UTC 2025
    - 21.6K bytes
    - Viewed (0)
  9. src/test/java/jcifs/internal/smb2/lock/Smb2LockResponseTest.java

                assertEquals(0, response.writeBytesWireFormat(dst, 25));
                assertEquals(0, response.writeBytesWireFormat(dst, 50));
                assertEquals(0, response.writeBytesWireFormat(dst, 75));
                assertEquals(0, response.writeBytesWireFormat(dst, 99));
            }
    
            @Test
            @DisplayName("Should return 0 with empty array")
            void testWriteBytesWireFormatWithEmptyArray() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17.1K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb1/trans2/Trans2SetFileInformationResponseTest.java

            byte[] buffer = new byte[100];
            int result = response.writeDataWireFormat(buffer, 0);
            assertEquals(0, result);
    
            // Test with different offset
            result = response.writeDataWireFormat(buffer, 75);
            assertEquals(0, result);
        }
    
        @Test
        @DisplayName("Test readSetupWireFormat returns 0")
        void testReadSetupWireFormat() {
            // Test that readSetupWireFormat always returns 0
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.9K bytes
    - Viewed (0)
Back to top