Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 129 for Wong (3.7 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/dataconfig/AdminDataconfigAction.java

        //                                                                        ============
        public static OptionalEntity<DataConfig> getEntity(final CreateForm form, final String username, final long currentTime) {
            switch (form.crudMode) {
            case CrudMode.CREATE:
                return OptionalEntity.of(new DataConfig()).map(entity -> {
                    entity.setCreatedBy(username);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java

        //                                                                        ============
        public static OptionalEntity<WebConfig> getEntity(final CreateForm form, final String username, final long currentTime) {
            switch (form.crudMode) {
            case CrudMode.CREATE:
                return OptionalEntity.of(new WebConfig()).map(entity -> {
                    entity.setCreatedBy(username);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 17.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/AdminDictStopwordsAction.java

        //                                               -------
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse details(final String dictId, final int crudMode, final long id) {
            verifyCrudMode(crudMode, CrudMode.DETAILS, dictId);
            saveToken();
            return asDetailsHtml().useForm(EditForm.class, op -> {
                op.setup(form -> {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/ViewHelper.java

        protected ActionHook actionHook = new ActionHook();
    
        protected final Set<String> inlineMimeTypeSet = new HashSet<>();
    
        protected Cache<String, FacetResponse> facetCache;
    
        protected long facetCacheDuration = 60 * 10L; // 10min
    
        protected int textFragmentPrefixLength;
    
        protected int textFragmentSuffixLength;
    
        protected int textFragmentSize;
    
        @PostConstruct
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 40.1K bytes
    - Viewed (2)
  5. src/test/java/org/codelibs/fess/helper/ActivityHelperTest.java

            return OptionalThing.of(new FessUserBean(new TestUser(name, permissions)));
        }
    
        static class TestUser implements FessUser {
    
            private static final long serialVersionUID = 1L;
    
            private String name;
    
            private String[] permissions;
    
            TestUser(String name, String[] permissions) {
                this.name = name;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  6. src/main/resources/fess_message_ja.properties

    errors.failed_to_find_plugins=利用可能なプラグインが見つまりませんでした。
    errors.failed_to_process_sso_request=リクエストの処理に失敗しました: {0}
    
    errors.property_required={0}は必須です。
    errors.property_type_integer={0}は数値です。
    errors.property_type_long={0}は数値です。
    errors.property_type_float={0}は数値です。
    errors.property_type_double={0}は数値です。
    errors.property_type_date={0}は日付です。
    
    errors.storage_file_upload_failure={0} のアップロードに失敗しました。
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 15.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/cbean/cq/bs/BsCrawlingInfoParamCQ.java

            return this;
        }
    
        public void setCreatedTime_Equal(Long createdTime) {
            setCreatedTime_Term(createdTime, null);
        }
    
        public void setCreatedTime_Equal(Long createdTime, ConditionOptionCall<TermQueryBuilder> opLambda) {
            setCreatedTime_Term(createdTime, opLambda);
        }
    
        public void setCreatedTime_Term(Long createdTime) {
            setCreatedTime_Term(createdTime, null);
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 36K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/log/bsentity/BsSearchLog.java

        /** queryPageSize */
        protected Integer queryPageSize;
    
        /** queryTime */
        protected Long queryTime;
    
        /** referer */
        protected String referer;
    
        /** requestedAt */
        protected LocalDateTime requestedAt;
    
        /** responseTime */
        protected Long responseTime;
    
        /** roles */
        protected String[] roles;
    
        /** searchWord */
        protected String searchWord;
    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)
  9. src/main/java/org/codelibs/fess/es/config/bsentity/BsFileConfig.java

        public void setCreatedBy(String value) {
            registerModifiedProperty("createdBy");
            this.createdBy = value;
        }
    
        public Long getCreatedTime() {
            checkSpecifiedProperty("createdTime");
            return createdTime;
        }
    
        public void setCreatedTime(Long value) {
            registerModifiedProperty("createdTime");
            this.createdTime = value;
        }
    
        public Integer getDepth() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 13.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/thumbnail/ThumbnailManager.java

        protected int splitSize = 10;
    
        protected int thumbnailTaskQueueSize = 10000;
    
        protected int thumbnailTaskBulkSize = 100;
    
        protected long thumbnailTaskQueueTimeout = 10 * 1000L;
    
        protected long noImageExpired = 24 * 60 * 60 * 1000L; // 24 hours
    
        protected int splitHashSize = 10;
    
        @PostConstruct
        public void init() {
            if (logger.isDebugEnabled()) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 21.5K bytes
    - Viewed (0)
Back to top