Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 907 for iets (0.01 sec)

  1. src/main/java/org/codelibs/fess/util/QueryResponseList.java

        public <T> T[] toArray(final T[] a) {
            return parent.toArray(a);
        }
    
        /**
         * Gets the starting position of the current page in the overall result set.
         *
         * @return the start position (0-based)
         */
        public int getStart() {
            return start;
        }
    
        /**
         * Gets the offset value used for pagination calculations.
         *
         * @return the offset value
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/pager/FileAuthPager.java

            createdTime = null;
            versionNo = null;
    
        }
    
        /**
         * Gets the default current page number.
         *
         * @return the default current page number
         */
        protected int getDefaultCurrentPageNumber() {
            return DEFAULT_CURRENT_PAGE_NUMBER;
        }
    
        /**
         * Gets the total number of records in the result set.
         *
         * @return the total record count
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/pager/SearchLogPager.java

            accessType = null;
            logType = LOG_TYPE_SEARCH;
    
        }
    
        /**
         * Gets the default current page number.
         *
         * @return The default current page number
         */
        protected int getDefaultCurrentPageNumber() {
            return DEFAULT_CURRENT_PAGE_NUMBER;
        }
    
        /**
         * Gets the total number of records matching the search criteria.
         *
         * @return The total record count
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java

            versionNo = null;
            description = null;
    
        }
    
        /**
         * Gets the default current page number.
         *
         * @return The default current page number
         */
        protected int getDefaultCurrentPageNumber() {
            return DEFAULT_CURRENT_PAGE_NUMBER;
        }
    
        /**
         * Gets the total number of records.
         *
         * @return The total record count
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/net/InetAddresses.java

    import com.google.common.base.CharMatcher;
    import com.google.common.base.MoreObjects;
    import com.google.common.hash.Hashing;
    import com.google.common.io.ByteStreams;
    import com.google.common.primitives.Ints;
    import com.google.errorprone.annotations.CanIgnoreReturnValue;
    import java.math.BigInteger;
    import java.net.Inet4Address;
    import java.net.Inet6Address;
    import java.net.InetAddress;
    import java.net.NetworkInterface;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/crawler/transformer/FessStandardTransformer.java

            dataSerializer = ComponentUtil.getComponent("dataSerializer");
        }
    
        /**
         * Gets the Fess configuration instance.
         *
         * @return the Fess configuration
         */
        @Override
        public FessConfig getFessConfig() {
            return fessConfig;
        }
    
        /**
         * Gets the logger instance for this transformer.
         *
         * @return the logger instance
         */
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java

            createdTime = null;
            versionNo = null;
    
        }
    
        /**
         * Gets the default current page number.
         *
         * @return the default current page number
         */
        protected int getDefaultCurrentPageNumber() {
            return DEFAULT_CURRENT_PAGE_NUMBER;
        }
    
        /**
         * Gets the total number of records in the result set.
         *
         * @return the total record count
         */
    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/main/java/org/codelibs/fess/helper/ViewHelper.java

            inlineMimeTypeSet.add(mimeType);
        }
    
        /**
         * Gets the action hook for custom processing.
         *
         * @return the action hook
         */
        public ActionHook getActionHook() {
            return actionHook;
        }
    
        /**
         * Sets the action hook for custom processing.
         *
         * @param actionHook the action hook to set
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/RoleTypeService.java

                op.rangeSize(fessConfig.getPagingPageRangeSizeAsInteger());
            }).createPageNumberList());
    
            return roleTypeList;
        }
    
        /**
         * Gets a role type by its ID.
         * @param id The ID of the role type.
         * @return An optional entity of the role type.
         */
        public OptionalEntity<RoleType> getRoleType(final String id) {
            return roleTypeBhv.selectByPK(id);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                }
            });
        }
    
        /**
         * Gets the username of the current user.
         *
         * @return The username, or "guest" if not logged in.
         */
        public String getUsername() {
            return getRequestManager().findUserBean(FessUserBean.class).map(FessUserBean::getUserId).orElse(Constants.GUEST_USER);
        }
    
        /**
         * Gets the request manager.
         *
         * @return The request manager.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
Back to top