Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 488 for initialize (0.06 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/searchlist/ListForm.java

            return new HighlightInfo();
        }
    
        @Override
        public String getSort() {
            return sort;
        }
    
        /**
         * Initializes the form with default values from configuration.
         */
        public void initialize() {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            if (start == null) {
                start = fessConfig.getPagingSearchPageStartAsInteger();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/MultiChannelManagerBasicTest.java

            this.config = new BaseConfiguration(true);
            this.multiChannelManager = new MultiChannelManager(config);
        }
    
        @Test
        @DisplayName("MultiChannelManager should initialize successfully")
        void testInitialization() {
            assertNotNull(multiChannelManager);
            MultiChannelManager.ChannelStatistics stats = multiChannelManager.getStatistics();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/util/Crypto.java

            }
            provider = new BouncyCastleProvider();
            return provider;
        }
    
        /**
         * Initialize Provider Instance with customProvider
         * @param customProvider the custom cryptographic provider to use
         * @throws CIFSUnsupportedCryptoException if Provider has already been initialized.
         */
        public static void initProvider(final Provider customProvider) throws CIFSUnsupportedCryptoException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

            // do nothing
        }
    
        /**
         * Initializes the SPNEGO authenticator and registers it with the SSO manager.
         * This method is called automatically after dependency injection is complete.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java

        /**
         * The timestamp when this web configuration was created.
         */
        @ValidateTypeFailure
        public Long createdTime;
    
        /**
         * Initializes the form with default values for creating a new web configuration.
         */
        public void initialize() {
            crudMode = CrudMode.CREATE;
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/joblog/EditForm.java

         * This field indicates when the job finished, if it has completed.
         */
        public String endTime;
    
        /**
         * Initializes the form with default null values.
         * This method resets all fields to their default state for creating a new entry.
         */
        public void initialize() {
            id = null;
            jobName = null;
            jobStatus = null;
            target = null;
            scriptType = null;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/validation/UriTypeValidator.java

        /**
         * Default constructor for UriTypeValidator.
         */
        public UriTypeValidator() {
            // Default constructor
        }
    
        private String[] protocols;
    
        @Override
        public void initialize(final UriType uriType) {
            protocols = switch (uriType.protocolType()) {
            case WEB -> ComponentUtil.getProtocolHelper().getWebProtocols();
            case FILE -> ComponentUtil.getProtocolHelper().getFileProtocols();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SambaHelper.java

        /**
         * Constructor.
         */
        public SambaHelper() {
            super();
        }
    
        /**
         * Initializes the SambaHelper.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            fessConfig = ComponentUtil.getFessConfig();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb1/smb1/SmbComNegotiateTest.java

        void setUp() {
            // Create a new instance before each test
            smbComNegotiate = new SmbComNegotiate();
        }
    
        /**
         * Test the constructor of SmbComNegotiate.
         * It should initialize the command and flags2 with default values.
         */
        @Test
        void testConstructor() {
            // Verify that the command is set to SMB_COM_NEGOTIATE
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4K bytes
    - Viewed (0)
  10. src/main/java/jcifs/context/SingletonContext.java

        private static SingletonContext INSTANCE;
    
        /**
         * Initialize singleton context using custom properties
         *
         * This method can only be called once.
         *
         * @param props the properties to use for initialization
         * @throws CIFSException if the singleton context is already initialized or there is an error during initialization
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top