Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 2,269 for einmal (0.04 sec)

  1. src/main/java/org/codelibs/fess/entity/QueryContext.java

     */
    public class QueryContext {
    
        /** Prefix for queries that search only in URL fields. */
        protected static final String ALLINURL_FIELD_PREFIX = "allinurl:";
    
        /** Prefix for queries that search only in title fields. */
        protected static final String ALLINTITLE_FIELD_PREFIX = "allintitle:";
    
        /** The OpenSearch query builder used for executing the search. */
        protected QueryBuilder queryBuilder;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/BeanFieldSetAccessibleFailureException.java

     */
    public class BeanFieldSetAccessibleFailureException extends ClRuntimeException {
        private static final long serialVersionUID = 1L;
    
        /**
         * The target class.
         */
        protected final Class<?> targetClass;
    
        /**
         * The target field.
         */
        protected final transient Field targetField;
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/exception/BeanMethodSetAccessibleFailureException.java

     */
    public class BeanMethodSetAccessibleFailureException extends ClRuntimeException {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * The target class.
         */
        protected final Class<?> targetClass;
    
        /**
         * The target method.
         */
        protected final transient Method targetMethod;
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/pager/RoleTypePager.java

         */
        public RoleTypePager() {
            super();
        }
    
        private static final long serialVersionUID = 1L;
    
        /**
         * Default page size for pagination.
         */
        public static final int DEFAULT_PAGE_SIZE = 20;
    
        /**
         * Default current page number for pagination.
         */
        public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1;
    
        /**
         * Total number of records.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/cors/DefaultCorsHandler.java

         * @param response the servlet response to add CORS headers to
         */
        @Override
        public void process(final String origin, final ServletRequest request, final ServletResponse response) {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
            final HttpServletResponse httpResponse = (HttpServletResponse) response;
            httpResponse.addHeader(ACCESS_CONTROL_ALLOW_ORIGIN, origin);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/score/ScoreUpdater.java

        public ScoreUpdater() {
            super();
        }
    
        private static final Logger logger = LogManager.getLogger(ScoreUpdater.class);
    
        private final List<ScoreBooster> scoreBoosterList = new ArrayList<>();
    
        /**
         * Executes all score boosters.
         * @return The result of the execution.
         */
        public String execute() {
            final StringBuilder resultBuf = new StringBuilder();
            scoreBoosterList.forEach(b -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/net/UuidUtil.java

        /**
         * Do not instantiate.
         */
        protected UuidUtil() {
        }
    
        private static final byte[] DEFAULT_ADDRESS = new byte[] { (byte) 127, (byte) 0, (byte) 0, (byte) 1 };
    
        private static final SecureRandom RANDOM = new SecureRandom();
    
        private static final String BASE = StringUtil.toHex(getAddress()) + StringUtil.toHex(System.identityHashCode(RANDOM));
    
        /**
         * Creates a UUID.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  8. android/guava-tests/benchmark/com/google/common/primitives/UnsignedLongsBenchmark.java

      private static final int ARRAY_SIZE = 0x10000;
      private static final int ARRAY_MASK = 0x0ffff;
      private static final Random randomSource = new Random(314159265358979L);
      private static final long[] longs = new long[ARRAY_SIZE];
      private static final long[] divisors = new long[ARRAY_SIZE];
      private static final String[] decimalStrings = new String[ARRAY_SIZE];
      private static final String[] binaryStrings = new String[ARRAY_SIZE];
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 28 01:26:26 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableCollection.java

      @Override
      public final boolean removeAll(Collection<?> oldElements) {
        throw new UnsupportedOperationException();
      }
    
      @Override
      public final boolean removeIf(Predicate<? super E> predicate) {
        throw new UnsupportedOperationException();
      }
    
      @Override
      public final boolean retainAll(Collection<?> elementsToKeep) {
        throw new UnsupportedOperationException();
      }
    
      @Override
      public final void clear() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Aug 06 18:32:41 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/user/bsentity/dbmeta/RoleDbm.java

        //                                                                          ==========
        protected final String _tableDbName = "role";
        protected final String _tableDispName = "role";
        protected final String _tablePropertyName = "Role";
    
        public String getTableDbName() {
            return _tableDbName;
        }
    
        @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 7.1K bytes
    - Viewed (0)
Back to top