Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 82 for initialisation (0.5 sec)

  1. src/main/java/org/codelibs/fess/filter/WebApiFilter.java

        public WebApiFilter() {
            // Default constructor
        }
    
        /**
         * Initializes the web API filter.
         *
         * @param filterConfig The filter configuration
         * @throws ServletException If initialization fails
         */
        @Override
        public void init(final FilterConfig filterConfig) throws ServletException {
            // nothing
        }
    
        /**
         * Destroys the web API filter and cleans up resources.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/Striped64.java

      /** Table of cells. When non-null, size is a power of 2. */
      transient volatile Cell @Nullable [] cells;
    
      /**
       * Base value, used mainly when there is no contention, but also as a fallback during table
       * initialization races. Updated via CAS.
       */
      transient volatile long base;
    
      /** Spinlock (locked via CAS) used when resizing and/or creating Cells. */
      transient volatile int busy;
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jan 15 22:17:15 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

         * Sets up encoding mappings and default encoding from filter configuration.
         *
         * @param config the filter configuration containing initialization parameters
         * @throws ServletException if an error occurs during initialization
         */
        @Override
        public void init(final FilterConfig config) throws ServletException {
            servletContext = config.getServletContext();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/message/MessageFormatter.java

        protected static final int CODE_NUMBER_LENGTH = 4;
    
        /** Suffix of the resource bundle name corresponding to the message code */
        protected static final String MESSAGES = "Messages";
    
        /** Flag indicating initialization */
        protected static volatile boolean initialized;
    
        /**
         * Returns the message.
         *
         * @param messageCode
         *            Message code
         * @param args
         *            Arguments
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/lang/ConstructorUtil.java

        /**
         * Do not instantiate.
         */
        protected ConstructorUtil() {
        }
    
        /**
         * Creates and initializes a new instance of the class declared by the specified constructor with the given initialization parameters.
         *
         * @param <T> the type of the object
         * @param constructor the constructor (must not be {@literal null})
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java

         * and ending with ".txt".
         */
        public SynonymCreator() {
            super("synonym.*\\.txt");
        }
    
        /**
         * Registers this creator with the dictionary manager upon initialization.
         * This method is annotated with {@link PostConstruct} to be executed after
         * dependency injection is complete.
         */
        @PostConstruct
        public void register() {
            if (logger.isInfoEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/cors/DefaultCorsHandler.java

         */
        public DefaultCorsHandler() {
            super();
        }
    
        /**
         * Registers this CORS handler with the factory for configured allowed origins.
         * This method is automatically called after bean initialization.
         */
        @PostConstruct
        public void register() {
            final CorsHandlerFactory factory = ComponentUtil.getCorsHandlerFactory();
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3K bytes
    - Viewed (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cache.kt

       * up the necessary in-memory cache information.
       *
       * The initialization time may vary depending on the journal file size and the current actual
       * cache size. The application needs to be aware of calling this function during the
       * initialization phase and preferably in a background worker thread.
       *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 16 09:39:51 UTC 2025
    - 26.9K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessMailDeliveryDepartmentCreatorTest.java

        public void tearDown() throws Exception {
            if (originalFessConfig != null) {
                ComponentUtil.setFessConfig(originalFessConfig);
            }
            super.tearDown();
        }
    
        // Test creator initialization
        public void test_creatorInitialization() {
            assertNotNull(creator);
        }
    
        // Test with different mail configurations
        public void test_mailConfiguration() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/validation/CustomSizeValidatorTest.java

        }
    
        public void test_initialize_withValidParameters() {
            final CustomSize annotation = createBasicAnnotation();
            validator.initialize(annotation);
            // Test that initialization completes without exception
        }
    
        public void test_classStructure() {
            // Test that the class exists and has the expected structure
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 5.2K bytes
    - Viewed (0)
Back to top