Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for enim (0.12 sec)

  1. src/main/java/org/codelibs/fess/validation/UriTypeValidator.java

                        }
                    }
                    if (!flag) {
                        return false;
                    }
                }
            }
            return true;
        }
    
        public enum ProtocolType {
            WEB, FILE;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGenerator.java

                    image.flush();
                    return Result.OK;
                } finally {
                    reader.dispose();
                }
            }
            return Result.FAILED;
        }
    
        protected enum Result {
            OK, FAILED, INVALID_SIZE, NO_IMAGE;
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/collection/CollectionsUtil.java

         *            {@link EnumMap}のキーの型
         * @param <V>
         *            {@link EnumMap}の値の型
         * @param m
         *            この {@literal enum} マップの初期化元の {@literal enum} マップ
         * @return {@link EnumMap}の新しいインスタンス
         * @see EnumMap#EnumMap(EnumMap)
         */
        public static <K extends Enum<K>, V> EnumMap<K, V> newEnumMap(final EnumMap<K, ? extends V> m) {
            return new EnumMap<>(m);
        }
    
        /**
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 53.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java

            public int increment() {
                return count.incrementAndGet();
            }
    
            public int decrement() {
                return count.decrementAndGet();
            }
        }
    
        public enum StatsAction {
            ACCESSED, //
            ACCESS_EXCEPTION, //
            CHILD_URL, //
            CHILD_URLS, //
            EVALUATED, //
            EXCEPTION, //
            FINISHED, //
            PARSED, //
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

    public class ApiResult {
    
        protected ApiResponse response = null;
    
        public ApiResult(final ApiResponse response) {
            this.response = response;
        }
    
        public enum Status {
            OK(0), BAD_REQUEST(1), SYSTEM_ERROR(2), UNAUTHORIZED(3);
    
            private final int id;
    
            Status(final int id) {
                this.id = id;
            }
    
            public int getId() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.2K bytes
    - Viewed (0)
Back to top