Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 80 for could (0.17 sec)

  1. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Could not open {0}. <br/>Please check if the file is associated with an application. */
        public static final String ERRORS_could_not_open_on_system = "{errors.could_not_open_on_system}";
    
        /** The key of the message: No more results could be displayed. */
        public static final String ERRORS_result_size_exceeded = "{errors.result_size_exceeded}";
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  2. src/main/resources/fess_message.properties

    errors.design_editor_disabled=This feature is disabled.
    errors.not_found_on_file_system=Not Found: {0}
    errors.could_not_open_on_system=Could not open {0}. <br/>Please check if the file is associated with an application.
    errors.result_size_exceeded=No more results could be displayed.
    errors.target_file_does_not_exist={0} file does not exist.
    errors.failed_to_delete_file=Failed to delete {0} file.
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  3. src/main/resources/fess_message_ko.properties

    errors.crud_failed_to_create_crud_table = 새로운 데이터의 생성에 실패했습니다. ({0})
    errors.crud_failed_to_update_crud_table = 데이터 업데이트에 실패했습니다. ({0})
    errors.crud_failed_to_delete_crud_table = 데이터의 삭제에 실패했습니다. ({0})
    errors.crud_could_not_find_crud_table = 데이터 {0}를 찾을 수 없습니다.
    errors.could_not_find_backup_index = 백업 인덱스를 찾을 수 없습니다.
    errors.no_user_for_changing_password = 현재 암호가 올바르지 않습니다.
    errors.failed_to_change_password = 암호 변경에 실패했습니다.
    errors.unknown_version_for_upgrade = 알 수없는 정보입니다.
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Jul 07 06:11:30 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  4. src/main/resources/fess_message_ja.properties

    errors.crud_failed_to_create_crud_table = 新しいデータの作成に失敗しました。({0})
    errors.crud_failed_to_update_crud_table=データの更新に失敗しました。({0})
    errors.crud_failed_to_delete_crud_table=データの削除に失敗しました。({0})
    errors.crud_could_not_find_crud_table = データ {0} が見つかりませんでした。
    errors.could_not_find_backup_index=バックアップ用のインデックスが見つかりませんでした。
    errors.no_user_for_changing_password=現在のパスワードが正しくありません。
    errors.failed_to_change_password=パスワードの変更に失敗しました。
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 15.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/job/UpdateLabelJob.java

                    }
                    return null;
                });
                resultBuf.append(count).append(" docs").append("\n");
            } catch (final Exception e) {
                logger.error("Could not update labels.", e);
                resultBuf.append(e.getMessage()).append("\n");
            }
    
            return resultBuf.toString();
        }
    
        public UpdateLabelJob query(final QueryBuilder queryBuilder) {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java

            synchronized (indexUpdateCallback) {
                // required check
                if (!dataMap.containsKey(fessConfig.getIndexFieldUrl()) || dataMap.get(fessConfig.getIndexFieldUrl()) == null) {
                    logger.warn("Could not add a doc. Invalid data: {}", dataMap);
                    return;
                }
    
                final String url = dataMap.get(fessConfig.getIndexFieldUrl()).toString();
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  7. src/packaging/rpm/init.d/fess

       FESS_USER=$USER
    fi
    
    checkJava() {
        if [ -x "$JAVA_HOME/bin/java" ]; then
            JAVA="$JAVA_HOME/bin/java"
        else
            JAVA=`which java`
        fi
    
        if [ ! -x "$JAVA" ]; then
            echo "Could not find any executable java binary. Please install java in your PATH or set JAVA_HOME"
            exit 1
        fi
    }
    
    start() {
        checkJava
        [ -x $exec ] || exit 5
    
    Shell Script
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 3.7K bytes
    - Viewed (1)
  8. src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth.jsp

                                            <div class="col-sm-12">
                                                <em class="fa fa-info-circle text-primary">
                                                <la:message key="labels.list_could_not_find_crud_table"/>
                                            </div>
                                        </div>
                                    </c:if>
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Tue Mar 24 13:43:18 GMT 2020
    - 6.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java

                    throw new SsoLoginException("could not validate nonce");
                }
    
                final String nonce = (String) claimsSet.getClaim("nonce");
                if (logger.isDebugEnabled()) {
                    logger.debug("nonce: {}", nonce);
                }
                if (StringUtils.isEmpty(nonce) || !nonce.equals(stateData.getNonce())) {
                    throw new SsoLoginException("could not validate nonce");
                }
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 28.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/ProcessHelper.java

                final InputStreamThread ist = jobProcess.getInputStreamThread();
                try {
                    ist.interrupt();
                } catch (final Exception e) {
                    logger.warn("Could not interrupt a thread of an input stream.", e);
                }
    
                final CountDownLatch latch = new CountDownLatch(3);
                final Process process = jobProcess.getProcess();
                new Thread(() -> {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.4K bytes
    - Viewed (0)
Back to top