Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 524 for Constant (0.75 sec)

  1. src/main/java/org/codelibs/fess/Constants.java

        /** String constant representing boolean true value. */
        public static final String TRUE = "true";
    
        /** String constant representing boolean false value. */
        public static final String FALSE = "false";
    
        /** Boolean constant representing true value. */
        public static final Boolean T = true;
    
        /** Boolean constant representing false value. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 34.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/internal/dtyp/SecurityInfoTest.java

                    String name = field.getName();
                    // Check that constant names follow UPPER_SNAKE_CASE convention
                    assertTrue(name.matches("[A-Z_]+"), "Constant " + name + " should follow UPPER_SNAKE_CASE convention");
                    // Check that all constants end with _SECURITY_INFO
                    assertTrue(name.endsWith("_SECURITY_INFO"), "Constant " + name + " should end with _SECURITY_INFO");
                }
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  3. src/test/java/jcifs/ACETest.java

                    ACE.WRITE_DAC, ACE.WRITE_OWNER, ACE.SYNCHRONIZE })
            @DisplayName("Access constants should be powers of 2")
            void shouldBeValidPowersOfTwo(int constant) {
                assertTrue(constant > 0, "Constant should be positive");
                assertEquals(0, constant & (constant - 1), "Constant should be power of 2: " + Integer.toHexString(constant));
            }
    
            @ParameterizedTest
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  4. src/test/java/jcifs/FileNotifyInformationTest.java

        }
    
        @Nested
        @DisplayName("Action Constants Tests")
        class ActionConstantsTests {
    
            @Test
            @DisplayName("Verify FILE_ACTION_ADDED constant value")
            void testFileActionAdded() {
                assertEquals(0x00000001, FileNotifyInformation.FILE_ACTION_ADDED);
            }
    
            @Test
            @DisplayName("Verify FILE_ACTION_REMOVED constant value")
            void testFileActionRemoved() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 18.1K bytes
    - Viewed (0)
  5. src/test/java/jcifs/SmbPipeResourceTest.java

    import org.junit.jupiter.api.Test;
    
    /**
     * Tests for the SmbPipeResource interface.
     * This test class primarily verifies the constant values defined in the interface.
     */
    class SmbPipeResourceTest {
    
        /**
         * Test if the PIPE_TYPE_RDONLY constant has the correct value.
         */
        @Test
        void testPipeTypeRdonly() {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 2K bytes
    - Viewed (0)
  6. src/test/java/jcifs/dcerpc/DcerpcErrorTest.java

        void testDcerpcFaultInvalidTag() {
            assertEquals(0x1C000006, DcerpcError.DCERPC_FAULT_INVALID_TAG);
        }
    
        @Test
        @DisplayName("Should verify DCERPC_FAULT_CONTEXT_MISMATCH constant value")
        void testDcerpcFaultContextMismatch() {
            assertEquals(0x1C00001A, DcerpcError.DCERPC_FAULT_CONTEXT_MISMATCH);
        }
    
        @Test
        @DisplayName("Should verify DCERPC_FAULT_OP_RNG_ERROR constant value")
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/cache/TestingWeighers.java

      }
    
      static final class ConstantWeigher implements Weigher<Object, Object> {
        private final int constant;
    
        ConstantWeigher(int constant) {
          this.constant = constant;
        }
    
        @Override
        public int weigh(Object key, Object value) {
          return constant;
        }
      }
    
      static final class IntKeyWeigher implements Weigher<Integer, Object> {
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

        /** Log type constant for zero-click search aggregation. */
        public static final String LOG_TYPE_SEARCH_ZEROCLICK = "search_zeroclick_agg";
    
        /** Log type constant for click logs. */
        public static final String LOG_TYPE_CLICK = "click";
    
        /** Log type constant for click count aggregation. */
        public static final String LOG_TYPE_CLICK_COUNT = "click_count_agg";
    
        /** Log type constant for favorite logs. */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/fscc/FileInformation.java

         */
        byte FILE_STANDARD_INFO = 0x5;
    
        /**
         * File internal information class constant.
         */
        byte FILE_INTERNAL_INFO = 0x6;
    
        /**
         * File rename information class constant.
         */
        byte FILE_RENAME_INFO = 10;
    
        /**
         * Gets the file information level/class for this file information object.
         *
         * @return the file information class
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/base/Enums.java

          Class<T> enumClass) {
        synchronized (enumConstantCache) {
          Map<String, WeakReference<? extends Enum<?>>> constants = enumConstantCache.get(enumClass);
          if (constants == null) {
            constants = populateCache(enumClass);
          }
          return constants;
        }
      }
    
      /**
       * Returns a serializable converter that converts between strings and {@code enum} values of type
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 01 13:41:58 UTC 2025
    - 4.8K bytes
    - Viewed (0)
Back to top