Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 117 for insertion (0.12 sec)

  1. src/main/java/org/codelibs/fess/crawler/processor/FessResponseProcessor.java

        /** Factory for creating and managing ingesters */
        private IngestFactory ingestFactory = null;
    
        /**
         * Initializes the processor after dependency injection.
         * Sets up the ingest factory if available in the component system.
         */
        @PostConstruct
        public void init() {
            if (ComponentUtil.hasIngestFactory()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  2. android/guava-tests/benchmark/com/google/common/math/BigIntegerMathBenchmark.java

        }
      }
    
      /** Returns the product of {@code n1} exclusive through {@code n2} inclusive. */
      @SuppressWarnings("UseCorrectAssertInTests") // TODO(b/345814817): Remove or convert assertion.
      private static BigInteger oldSlowFactorial(int n1, int n2) {
        assert n1 <= n2;
        if (IntMath.log2(n2, CEILING) * (n2 - n1) < Long.SIZE - 1) {
          // the result will definitely fit into a long
          long result = 1;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/FileTypeHelper.java

            // Default constructor
        }
    
        /**
         * Initializes the file type mappings by loading configuration from Fess settings.
         * This method is called automatically after dependency injection is complete.
         * The mappings are loaded from the index filetype configuration property,
         * where each line contains a MIME type to file type mapping in the format "mimetype=filetype".
         */
        @PostConstruct
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/GroupService.java

            return groupBhv.selectByPK(id).map(g -> {
                ComponentUtil.getLdapManager().apply(g);
                return g;
            });
        }
    
        /**
         * Stores a group by inserting or updating it in both LDAP and the database.
         * Uses refresh policy to ensure immediate availability of the stored data.
         *
         * @param group the group entity to store
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/entity/FacetQueryView.java

         */
        public FacetQueryView() {
            // Default constructor
        }
    
        /**
         * Initializes the facet query view with default file type queries.
         * This method is called after dependency injection to set up file type facets
         * and register all queries with the FacetInfo component.
         */
        @PostConstruct
        public void init() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/io/BaseEncodingTest.java

        // We use this somewhat weird pattern with an enum for each assertion we want to make as a way
        // of dealing with the fact that one of the assertions is @GwtIncompatible but we don't want to
        // have to have duplicate @GwtIncompatible test methods just to make that assertion.
        for (AssertFailsToDecodeStrategy strategy : AssertFailsToDecodeStrategy.values()) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 24.7K bytes
    - Viewed (0)
  7. dbflute_fess/dfprop/dependencyInjectionMap.dfprop

    # /---------------------------------------------------------------------------
    # dependencyInjectionMap: (NotRequired - Default map:{})
    #
    # The various settings about dependency injection(DI Container). 
    #
    # {Java} Spring Only:
    # o dbfluteBeansPackageName (NotRequired - Default '../resources')
    # o dbfluteBeansFileName: (NotRequired - Default 'dbfluteBeans.xml')
    # o dbfluteBeansDataSourceName: (NotRequired - Default 'dataSource')
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 6.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/crawler/transformer/FessFileTransformer.java

            super();
        }
    
        /** Logger instance for this class */
        private static final Logger logger = LogManager.getLogger(FessFileTransformer.class);
    
        /**
         * Initializes the transformer after dependency injection.
         * Sets up the Fess configuration and data serializer components.
         */
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/RequestHeaderService.java

        /**
         * Fess configuration settings.
         */
        @Resource
        protected FessConfig fessConfig;
    
        /**
         * Default constructor for RequestHeaderService.
         * Initializes the service with dependency injection.
         */
        public RequestHeaderService() {
            // Default constructor
        }
    
        /**
         * Retrieves a paginated list of request headers based on the provided pager criteria.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.2K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/io/BaseEncodingTest.java

        // We use this somewhat weird pattern with an enum for each assertion we want to make as a way
        // of dealing with the fact that one of the assertions is @GwtIncompatible but we don't want to
        // have to have duplicate @GwtIncompatible test methods just to make that assertion.
        for (AssertFailsToDecodeStrategy strategy : AssertFailsToDecodeStrategy.values()) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 24.7K bytes
    - Viewed (0)
Back to top