Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for MIN_VALUE (0.2 sec)

  1. src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java

            searchRenderData.setAllRecordCount(Long.MIN_VALUE);
            searchRenderData.setCurrentStartRecordNumber(Long.MIN_VALUE);
            searchRenderData.setCurrentEndRecordNumber(Long.MIN_VALUE + 10);
            searchRenderData.setPageSize(Integer.MIN_VALUE);
            searchRenderData.setAllPageCount(Integer.MIN_VALUE);
            searchRenderData.setCurrentPageNumber(Integer.MIN_VALUE);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 23.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/AllocInfoTest.java

            void shouldHandleMinimumLongValues() {
                // Given
                TestAllocInfo allocInfo = new TestAllocInfo(Long.MIN_VALUE, Long.MIN_VALUE);
    
                // When & Then
                assertEquals(Long.MIN_VALUE, allocInfo.getCapacity());
                assertEquals(Long.MIN_VALUE, allocInfo.getFree());
            }
    
            @Test
            @DisplayName("Should calculate used space correctly")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/math/MathTesting.java

        integralBuilder.addAll(Doubles.asList(0.0, -0.0, Double.MAX_VALUE, -Double.MAX_VALUE));
        // Add small multiples of MIN_VALUE and MIN_NORMAL
        for (int scale = 1; scale <= 4; scale++) {
          for (double d : Doubles.asList(Double.MIN_VALUE, Double.MIN_NORMAL)) {
            fractionalBuilder.add(d * scale).add(-d * scale);
          }
        }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/dict/DictionaryItemTest.java

            assertEquals(Long.MAX_VALUE, dictionaryItem.getId());
        }
    
        public void test_getId_minValue() {
            // Test with minimum Long value
            dictionaryItem.id = Long.MIN_VALUE;
            assertEquals(Long.MIN_VALUE, dictionaryItem.getId());
        }
    
        public void test_multipleInstances() {
            // Test that different instances have independent ID values
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/math/LongMath.java

       *       Long.MIN_VALUE}
       *   <li>{@link Math#absExact(long)}, which throws {@link ArithmeticException} when passed {@code
       *       Long.MIN_VALUE}
       *   <li>this method, {@code LongMath.saturatedAbs(long)}, which returns {@code Long.MAX_VALUE}
       *       when passed {@code Long.MIN_VALUE}
       * </ul>
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 29 16:20:07 UTC 2025
    - 46.8K bytes
    - Viewed (0)
  6. src/test/java/org/codelibs/fess/score/ScoreUpdaterTest.java

            // The comparator b2 - b1 with MAX_VALUE and MIN_VALUE causes overflow
            List<Integer> executionOrder = PriorityTrackingBooster.getExecutionOrder();
            assertEquals(3, executionOrder.size());
            assertEquals(Integer.valueOf(Integer.MIN_VALUE), executionOrder.get(0));
            assertEquals(Integer.valueOf(Integer.MAX_VALUE), executionOrder.get(1));
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/CommonServerMessageBlockTest.java

            when(messageBlock.getMid()).thenReturn(maxMid);
    
            messageBlock.setMid(maxMid);
            assertEquals(maxMid, messageBlock.getMid());
    
            // Test with MIN_VALUE
            long minMid = Long.MIN_VALUE;
            doNothing().when(messageBlock).setMid(minMid);
            when(messageBlock.getMid()).thenReturn(minMid);
    
            messageBlock.setMid(minMid);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 15.7K bytes
    - Viewed (0)
  8. src/test/java/jcifs/ntlmssp/av/AvFlagsTest.java

            // Test with minimum integer value
            int minFlags = Integer.MIN_VALUE;
            AvFlags minAvFlags = new AvFlags(minFlags);
            assertNotNull(minAvFlags, "AvFlags object should not be null for min flags");
            assertEquals(minFlags, minAvFlags.getFlags(), "Flags should match Integer.MIN_VALUE");
    
            // Test with a negative integer
            int negativeFlags = -12345;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  9. src/test/java/jcifs/dcerpc/ndr/NdrLongTest.java

            // Test case 5: Min int value
            int minIntValue = Integer.MIN_VALUE;
            NdrLong ndrLongMin = new NdrLong(minIntValue);
            assertEquals(minIntValue, ndrLongMin.value, "Constructor should correctly initialize with Integer.MIN_VALUE.");
        }
    
        @Test
        void encode_shouldCallEncNdrLongWithCorrectValue() throws NdrException {
            int testValue = 98765;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  10. src/test/java/jcifs/dcerpc/msrpc/MsrpcQueryInformationPolicyTest.java

        }
    
        @Test
        void constructor_withMinimumShortValue() {
            // Arrange
            short level = Short.MIN_VALUE;
    
            // Act
            queryPolicy = new MsrpcQueryInformationPolicy(mockPolicyHandle, level, mockNdrObject);
    
            // Assert
            assertEquals(Short.MIN_VALUE, queryPolicy.level);
        }
    
        @Test
        void constructor_withMaximumShortValue() {
            // Arrange
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 6.6K bytes
    - Viewed (0)
Back to top