Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 39 for could (0.23 sec)

  1. src/main/java/org/codelibs/fess/helper/SystemHelper.java

                                    fileList.add(jspPath);
                                } catch (final IOException ex) {
                                    logger.warn("Could not copy from {} to {}", baseJspFile.getAbsolutePath(), jspFile.getAbsolutePath(), ex);
                                }
                            }
                        });
                    }));
            return fileList;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Apr 13 11:43:03 GMT 2024
    - 26.5K bytes
    - Viewed (2)
  2. src/main/resources/fess_message_en.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 May 06 08:04:11 GMT 2024
    - Last Modified: Sat Mar 18 03:05:44 GMT 2023
    - 12.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/crawler/transformer/FessStandardTransformer.java

                throw new FessSystemException("Could not find extractorFactory.");
            }
            Extractor extractor = extractorFactory.getExtractor(responseData.getMimeType());
            if (extractor == null) {
                extractor = ComponentUtil.getComponent("tikaExtractor");
                if (extractor == null) {
                    throw new FessSystemException("Could not find tikaExtractor.");
                }
            }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

                    } catch (final Exception e) {
                        logger.warn("Could not close a process input stream.", e);
                    }
                });
                CommonPoolUtil.execute(() -> {
                    try {
                        CloseableUtil.closeQuietly(p.getErrorStream());
                    } catch (final Exception e) {
                        logger.warn("Could not close a process error stream.", e);
                    }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.6K bytes
    - Viewed (0)
  5. src/main/resources/fess_message_fr.properties

    errors.login_error=Le nom d'utilisateur ou le mot de passe n'est pas correct.
    errors.sso_login_error=Échec du traitement de la connexion SSO.
    errors.could_not_find_log_file=Impossible de trouver {0}.
    errors.failed_to_start_crawl_process=Impossible de démarrer un processus d'exploration.
    errors.invalid_design_jsp_file_name=Fichier JSP invalide.
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Feb 06 22:59:17 GMT 2023
    - 14.2K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

                    }
                }
            } catch (final Exception e) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Could not create a highlighting value: {}", docMap, e);
                }
            }
    
            if (Constants.TEXT_FRAGMENT_TYPE_QUERY.equals(fessConfig.getQueryHighlightTextFragmentType())) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  7. src/main/assemblies/files/fess

    elif [ -r "$FESS_INCLUDE" ]; then
        . "$FESS_INCLUDE"
    fi
    
    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
    
    if [ -z "$FESS_CLASSPATH" ]; then
        echo "You must set the FESS_CLASSPATH var" >&2
        exit 1
    fi
    
    Shell Script
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sun Jan 15 06:32:15 GMT 2023
    - 5.4K bytes
    - Viewed (0)
  8. src/main/resources/fess_label_ru.properties

    labels.file_auth_parameters=Parameters
    labels.file_auth_file_crawling_config=File System Config
    labels.file_auth_scheme_samba=Samba
    labels.file_auth_scheme_ftp=FTP
    labels.pagination_page_guide_msg={0}/{1} ({2} items)
    labels.list_could_not_find_crud_table=No data.
    labels.scheduledjob_configuration=Job Scheduler
    labels.scheduledjob_title_details=Jobs
    labels.scheduledjob_name=Name
    labels.scheduledjob_target=Target
    labels.scheduledjob_status=Status
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 45.6K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_de.properties

    labels.file_auth_file_crawling_config=Dateisystem-Konfiguration
    labels.file_auth_scheme_samba=Samba
    labels.file_auth_scheme_ftp=FTP
    labels.pagination_page_guide_msg={0}/{1} ({2} Elemente)
    labels.list_could_not_find_crud_table=Keine Daten.
    labels.scheduledjob_configuration=Aufgaben-Zeitplaner
    labels.scheduledjob_title_details=Aufgaben
    labels.scheduledjob_name=Name
    labels.scheduledjob_target=Ziel
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 42.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

                    try {
                        return (Map<String, Object>) SerializeUtil.fromBinaryToObject(data);
                    } catch (final Exception e) {
                        throw new CrawlerSystemException("Could not create an instance from bytes.", e);
                    }
                }
                return null;
            } catch (final Exception e) {
                throw new CrawlingAccessException("Failed to parse " + url, e);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12K bytes
    - Viewed (0)
Back to top