Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 336 for a_value (0.14 sec)

  1. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

        public void test_print_parameterSorting() {
            activityHelper.useEcsFormat = false;
            Map<String, String> params = new HashMap<>();
            params.put("z_param", "z_value");
            params.put("a_param", "a_value");
            params.put("m_param", "m_value");
            activityHelper.print("test", OptionalThing.empty(), params);
            String result = localLogMsg.get();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 12 05:35:01 UTC 2025
    - 18.7K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/smb2/lock/Smb2LockTest.java

            void testEncodingWithMaxValues() {
                long maxValue = Long.MAX_VALUE;
                int maxFlags = Integer.MAX_VALUE;
    
                lock = new Smb2Lock(maxValue, maxValue, maxFlags);
                lock.encode(buffer, 0);
    
                assertEquals(maxValue, SMBUtil.readInt8(buffer, 0));
                assertEquals(maxValue, SMBUtil.readInt8(buffer, 8));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/ContiguousSetTest.java

          new DiscreteDomain<Integer>() {
            @Override
            public Integer next(Integer value) {
              return integers().next(value);
            }
    
            @Override
            public Integer previous(Integer value) {
              return integers().previous(value);
            }
    
            @Override
            public long distance(Integer start, Integer end) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            form.logLevel = ComponentUtil.getSystemHelper().getLogLevel().toUpperCase();
        }
    
        private void updateProperty(final String key, final String value) {
            systemProperties.setProperty(key, value == null ? StringUtil.EMPTY : value);
        }
    
        private List<String> getDayItems() {
            final List<String> items = new ArrayList<>();
            for (int i = 0; i < 32; i++) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                        <label for="appValue" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.app_value"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="appValue"/>
                                            <la:textarea styleId="appValue" property="appValue"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 14 00:36:40 UTC 2025
    - 39.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/misc/AssertionUtil.java

         * @param argValue
         *            The value of the argument.
         * @throws EmptyArgumentException
         *             If the argument is <code>null</code> or an empty string.
         */
        public static void assertArgumentNotEmpty(final String argName, final CharSequence argValue) {
            if (argValue == null || argValue.length() == 0) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/math/BigDecimalMathTest.java

        BigDecimal maxDoubleAsBigDecimal = new BigDecimal(Double.MAX_VALUE);
        new RoundToDoubleTester(maxDoubleAsBigDecimal)
            .setExpectation(Double.MAX_VALUE, values())
            .test();
      }
    
      public void testRoundToDouble_maxDoublePlusOne() {
        BigDecimal maxDoubleAsBigDecimal = new BigDecimal(Double.MAX_VALUE).add(BigDecimal.ONE);
        new RoundToDoubleTester(maxDoubleAsBigDecimal)
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/smb2/io/Smb2ReadRequestTest.java

                request.setPadding((byte) 0xFF);
                request.setReadFlags((byte) 0xFF);
                request.setReadLength(Integer.MAX_VALUE);
                request.setOffset(Long.MAX_VALUE);
                request.setMinimumCount(Integer.MAX_VALUE);
                request.setRemainingBytes(Integer.MAX_VALUE);
    
                byte[] buffer = new byte[256];
                int bytesWritten = request.writeBytesWireFormat(buffer, 0);
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb1/smb1/TransWaitNamedPipeResponseTest.java

         */
        @Nested
        @DisplayName("Wire format method behaviour")
        class WireFormatMethods {
            @ParameterizedTest
            @ValueSource(ints = { 0, 1, -1, Integer.MAX_VALUE, Integer.MIN_VALUE })
            @DisplayName("writeSetupWireFormat returns 0 for all indices")
            void writeSetupWireFormatReturnsZero(int index) {
                TransWaitNamedPipeResponse resp = new TransWaitNamedPipeResponse();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/AllocInfoTest.java

            void shouldHandleMaximumLongValues() {
                // Given
                TestAllocInfo allocInfo = new TestAllocInfo(Long.MAX_VALUE, Long.MAX_VALUE);
    
                // When & Then
                assertEquals(Long.MAX_VALUE, allocInfo.getCapacity());
                assertEquals(Long.MAX_VALUE, allocInfo.getFree());
            }
    
            @Test
            @DisplayName("Should handle minimum long values")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.8K bytes
    - Viewed (0)
Back to top