Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for badword (0.03 sec)

  1. src/main/java/org/codelibs/fess/app/web/api/admin/badword/ApiAdminBadwordAction.java

         */
        // GET /api/admin/badword/settings
        // PUT /api/admin/badword/settings
        @Execute
        public JsonResponse<ApiResult> settings(final SearchBody body) {
            validateApi(body, messages -> {});
            final BadWordPager pager = copyBeanToNewBean(body, BadWordPager.class);
            final List<BadWord> list = badWordService.getBadWordList(pager);
            return asJson(
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

        public void addBadWord(final String badWord, final boolean apply) {
            suggester.indexer().addBadWord(badWord, apply);
            refresh();
        }
    
        /**
         * Deletes a bad word from the suggest index.
         *
         * @param badWord The bad word to delete.
         */
        public void deleteBadWord(final String badWord) {
            suggester.indexer().deleteBadWord(badWord);
            refresh();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

            assertEquals("/admin/backup/admin_backup.jsp", FessHtmlPath.path_AdminBackup_AdminBackupJsp.getRoutingPath());
            assertEquals("/admin/badword/admin_badword.jsp", FessHtmlPath.path_AdminBadword_AdminBadwordJsp.getRoutingPath());
            assertEquals("/admin/dashboard/admin_dashboard.jsp", FessHtmlPath.path_AdminDashboard_AdminDashboardJsp.getRoutingPath());
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/InternetDomainName.java

        return publicSuffixIndex() == 1;
      }
    
      /**
       * Returns the portion of this domain name that is one level beneath the {@linkplain
       * #isPublicSuffix() public suffix}. For example, for {@code x.adwords.google.co.uk} it returns
       * {@code google.co.uk}, since {@code co.uk} is a public suffix. Similarly, for {@code
       * myblog.blogspot.com} it returns the same domain, {@code myblog.blogspot.com}, since {@code
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.9K bytes
    - Viewed (0)
Back to top