Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 310 for initializer (0.08 sec)

  1. src/main/java/org/codelibs/fess/helper/LanguageHelper.java

        /**
         * Default constructor.
         */
        public LanguageHelper() {
            // do nothing
        }
    
        /**
         * Initializes the helper.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.10.md

    Kubernetes with a different admission-control flag on API server. ([#58080](https://github.com/kubernetes/kubernetes/pull/58080), [@simonferquel](https://github.com/simonferquel))
    
    * Alpha Initializers have been removed from kubeadm admission control.  Kubeadm users who still want to use Initializers can use apiServerExtraArgs through the kubeadm config file to enable it when booting up the cluster. ([#58428](https://github.com/kubernetes/kubernetes/pull/58428), [@dixudx](https://github.com/dixudx))...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/entity/QueryContext.java

         */
        public Set<String> getHighlightedQuerySet() {
            return highlightedQuerySet != null ? highlightedQuerySet : new HashSet<>();
        }
    
        /**
         * Gets the field log map containing field names and their associated query terms.
         * @return The field log map, or empty map if not initialized.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.7.md

    * fixes upgrade test to work with tightened validation of initializer names in 1.8 ([#52592](https://github.com/kubernetes/kubernetes/pull/52592), [@liggitt](https://github.com/liggitt))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (1)
  5. src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java

         * This placeholder is replaced with the actual search query when
         * a regex pattern matches the query.
         */
        protected String queryPlaceHolder = "__QUERY__";
    
        /**
         * Initializes the RelatedContentHelper by loading related content configurations
         * from the data store. This method is called automatically after dependency
         * injection is complete.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java

         */
        public String versionNo;
    
        /**
         * Default constructor for RelatedQueryPager.
         * Initializes a new instance with default values for pagination
         * and related query fields.
         */
        public RelatedQueryPager() {
            // Default constructor - fields will be initialized to default values
        }
    
        /**
         * Clears all pager data and resets to default values.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/DictionaryManager.java

        public DictionaryManager() {
            // Default constructor
        }
    
        /**
         * Initializes the dictionary manager after construction.
         * Sets up the relationship between this manager and all registered creators.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            creatorList.forEach(creator -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.7K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

        protected final JsonFactory jsonFactory = GsonFactory.getDefaultInstance();
    
        /**
         * Initializes the OpenID Connect authenticator.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            ComponentUtil.getSsoManager().register(this);
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

                Collections.emptyMap();
    
        /**
         * Initializes the helper.
         * It loads KeyMatch settings from the database.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
                logger.debug("Initialize {}", this.getClass().getSimpleName());
            }
            load();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
  10. guava/src/com/google/common/collect/StandardTable.java

           * initialized by next() -- which initializes rowEntry, too.
           *
           * - rowEntry isn't cleared except below. If it was cleared below, then either
           *   columnIterator.remove() would have failed above (if the user hasn't called next() since
           *   then) or rowEntry would have been initialized by next() (as discussed above).
           */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 30.2K bytes
    - Viewed (0)
Back to top