Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 485 for initializer (0.05 sec)

  1. src/main/java/jcifs/util/Hexdump.java

     */
    
    public class Hexdump {
    
        /**
         * Default constructor.
         */
        public Hexdump() {
            // Utility class - no instance variables to initialize
        }
    
        /**
         * Array of hexadecimal digit characters used for converting binary data to hex representation.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/netbios/NbtAddressTest.java

            mockName = new Name(mockConfig, "MYSERVER", 0x20, null);
            NbtAddress nbtAddress = new NbtAddress(mockName, testAddressInt, false, NbtAddress.H_NODE);
            nbtAddress.firstCalledName(); // Initialize calledName
            assertEquals(NbtAddress.SMBSERVER_NAME, nbtAddress.nextCalledName(mockContext));
        }
    
        @Test
        void testNextCalledName_SmbServerName_NameType0x1D() throws UnknownHostException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.4K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/opensearch/client/CrawlerEngineClientTest.java

                assertNotNull(client);
            }
        }
    
        // Test instance fields initialization
        public void test_instanceFieldsInitialization() {
            // Test that instance fields are properly initialized
            assertNotNull(crawlerEngineClient);
            // The actual client initialization happens lazily when needed
        }
    
        // Test that close method exists (inherited)
        public void test_closeMethodExists() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 4.7K bytes
    - Viewed (0)
  4. src/main/java/jcifs/util/SecureCredentialStorage.java

        private final SecureRandom secureRandom = new SecureRandom();
        private volatile SecretKey masterKey;
        private volatile byte[] salt;
        private volatile boolean destroyed = false;
    
        /**
         * Initialize secure credential storage with a master password
         *
         * @param masterPassword the master password for encryption
         * @throws GeneralSecurityException if encryption setup fails
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/entity/DataStoreParams.java

         * Uses ParamMap for automatic case format conversion between camelCase and snake_case.
         */
        protected final Map<String, Object> params;
    
        /**
         * Creates a new empty DataStoreParams instance.
         * Initializes the internal parameter map with a ParamMap wrapper.
         */
        public DataStoreParams() {
            params = new ParamMap<>(new HashMap<>());
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/GroupPager.java

        /** Group name for search filtering. */
        public String name;
    
        /** Version number for optimistic locking. */
        public String versionNo;
    
        /**
         * Default constructor for GroupPager.
         * Initializes the pager with default values for pagination settings.
         */
        public GroupPager() {
            // Default constructor
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/service/DuplicateHostService.java

         * Used to retrieve paging and other configuration parameters.
         */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Creates a new instance of DuplicateHostService.
         * This constructor initializes the service for managing duplicate host configuration operations
         * including CRUD operations and search functionality.
         */
        public DuplicateHostService() {
            super();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.4K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCurtainFinallyHookTest.java

            public static void shutdownAll() {
                throw new RuntimeException("Simulated exception during shutdown");
            }
        }
    
        // Test to verify the logger field is properly initialized
        public void test_loggerFieldInitialization() throws Exception {
            // Use reflection to access the private logger field
            Field loggerField = FessCurtainFinallyHook.class.getDeclaredField("logger");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistantTest.java

                }
            };
            // Should not throw exception
            invokerAssistant.toBeDisposable(process);
        }
    
        // Test static constants are properly initialized
        public void test_staticConstants() {
            // Test DEFAULT_CLIENT_INVOKE_NAMES
            String[] clientNames = ImplementedInvokerAssistant.DEFAULT_CLIENT_INVOKE_NAMES;
            assertNotNull(clientNames);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  10. src/test/java/jcifs/internal/smb1/com/SmbComSeekResponseTest.java

        }
    
        @Test
        @DisplayName("getOffset before any read - should return zero")
        void testOffsetInitiallyZero() {
            assertEquals(0L, response.getOffset(), "Offset should be initialized to 0");
        }
    
        /* ------------------------------------------------------------------ */
        /* 2. Parameter word reading - happy path & edge cases                */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8.1K bytes
    - Viewed (0)
Back to top