Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 67 for Pound (0.02 sec)

  1. FessUserNotFoundException.java

    ion; L17: L18:public class FessUserNotFoundException extends FessSystemException { L19: L20: private static final long serialVersionUID = 1L; L21: L22: public FessUserNotFoundException(final String username) { L23: super("User is not found: " + username); L24: } L25: L26:}...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      903 bytes
  2. SearchApiManager.java

    null."); L631: } L632: L633: boolean found = false; L634: for (final String id : docIds) { L635: if (docId.equals(id)) { L636: found = true; L637: break; L638: } L639: } L640: if (!found) { L641: throw new WebApiException(HttpServletResponse.SC_NOT_FOUND,...
    github.com/codelibs/fess/src/main/java/org/code...
    Sat Oct 12 01:54:46 UTC 2024
      50.3K bytes
  3. search.js

    var $favorite = $(this), L150: url = $favorite.attr("href"), L151: found = false, L152: $favorited, L153: i; L154: for (i = 0; i < docIds.length; i++) { L155: if (url === docIds[i]) { L156: found = true; L157: break; L158: } L159: } L160: if (found) { L161: $favorited = $favorite.siblings(".favorited"); L162: $favorite.fadeOut(1000,...
    github.com/codelibs/fess/src/main/webapp/js/sea...
    Thu Mar 30 05:45:24 UTC 2023
      7.5K bytes
  4. fess_message.properties

    ed=This feature is disabled. L96:errors.not_found_on_file_system=Not Found: {0} L97:errors.could_not_open_on_system=Could not open {0}. <br/>Please check if the file is associated with an application. L98:errors.result_size_exceeded=No more results could be displayed. L99:errors.target_file_does_not_exist={0} file does not exist. L100:errors.failed_to_delete_file=Failed to delete {0} file. L101:errors.docid_not_found=Not found Doc ID:{0} L102:errors.document_not_found=Not found URL of Doc ID:{0}...
    github.com/codelibs/fess/src/main/resources/fes...
    Sat Mar 18 03:05:44 UTC 2023
      12.5K bytes
  5. fess_message_en.properties

    led=This feature is disabled. L92:errors.not_found_on_file_system=Not Found: {0} L93:errors.could_not_open_on_system=Could not open {0}. <br/>Please check if the file is associated with an application. L94:errors.result_size_exceeded=No more results could be displayed. L95:errors.target_file_does_not_exist={0} file does not exist. L96:errors.failed_to_delete_file=Failed to delete {0} file. L97:errors.docid_not_found=Not found Doc ID:{0} L98:errors.document_not_found=Not found URL of Doc ID:{0} L...
    github.com/codelibs/fess/src/main/resources/fes...
    Sat Mar 18 03:05:44 UTC 2023
      12.4K bytes
  6. ViewHelperTest.java

    "file://home/taro/あ.txt"); L170: assertUrlLink("ftp:/home/taro/%E3%81%82.txt", // L171: "file://home/taro/%E3%81%82.txt"); L172: L173: assertUrlLink(null, "#not-found-docId"); L174: assertUrlLink("", "#not-found-docId"); L175: assertUrlLink(" ", "#not-found-docId"); L176: } L177: L178: private void assertUrlLink(String url, String expected) { L179: Map<String, Object> doc = new HashMap<>(); L180: doc.put("doc_id", "docId"); L181:...
    github.com/codelibs/fess/src/test/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      15.1K bytes
  7. UpgradeUtil.java

    alias for {}", aliasName, indexName); L81: } L82: } L83: } catch (final ResourceNotFoundRuntimeException e) { L84: // ignore L85: } catch (final Exception e) { L86: logger.warn("{} is not found.", aliasConfigPath, e); L87: } L88: return false; L89: } L90: L91: public static boolean addMapping(final IndicesAdminClient indicesClient, final String index, final String docType, L92: final String indexResourcePath)...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:37:57 UTC 2024
      9.1K bytes
  8. fess_message_ru.properties

    led=This feature is disabled. L92:errors.not_found_on_file_system=Not Found: {0} L93:errors.could_not_open_on_system=Could not open {0}. <br/>Please check if the file is associated with an application. L94:errors.result_size_exceeded=No more results could be displayed. L95:errors.target_file_does_not_exist={0} file does not exist. L96:errors.failed_to_delete_file=Failed to delete {0} file. L97:errors.docid_not_found=Not found Doc ID:{0} L98:errors.document_not_found=Not found URL of Doc ID:{0} L...
    github.com/codelibs/fess/src/main/resources/fes...
    Fri May 20 12:12:28 UTC 2022
      10.2K bytes
  9. ThumbnailAction.java

    fessConfig.getIndexFieldThumbnail(), String.class); L57: if (StringUtil.isBlank(form.queryId) || StringUtil.isBlank(url) || !thumbnailSupport) { L58: // 404 L59: throw responseManager.new404("Thumbnail for " + form.docId + " is not found."); L60: } L61: L62: final File thumbnailFile = thumbnailManager.getThumbnailFile(doc); L63: if (thumbnailFile == null) { L64: if (fessConfig.isThumbnailEnabled()) { L65: thumbnailManager.offer(doc); L66:...
    github.com/codelibs/fess/src/main/java/org/code...
    Thu Feb 22 01:53:18 UTC 2024
      3.6K bytes
  10. copyright

    CONDITIONS OF ANY KIND, either express or implied. L13: See the License for the specific language governing permissions and L14: limitations under the License. L15: . L16: On Debian systems, the complete text of the Apache version 2.0 license L17: can be found in "/usr/share/common-licenses/Apache-2.0"....
    github.com/codelibs/fess/src/packaging/deb/copy...
    Thu Jan 07 06:27:26 UTC 2016
      749 bytes
Back to top