Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 395 for werd (0.01 sec)

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

                            .status(ApiResult.Status.OK)
                            .result());
        }
    
        /**
         * Retrieves a specific bad word setting by ID.
         *
         * @param id the ID of the bad word to retrieve
         * @return JSON response containing the bad word configuration
         */
        // GET /api/admin/badword/{id}
        @Execute
        public JsonResponse<ApiResult> get$setting(final String id) {
    
    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. mockwebserver/README.md

    
    ### Motivation
    
    This library makes it easy to test that your app Does The Right Thing when it
    makes HTTP and HTTPS calls. It lets you specify which responses to return and
    then verify that requests were made as expected.
    
    Because it exercises your full HTTP stack, you can be confident that you're
    testing everything. You can even copy & paste HTTP responses from your real web
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Jul 19 13:40:52 UTC 2025
    - 8.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/CaseFormat.java

      }
    
      abstract String normalizeWord(String word);
    
      String normalizeFirstWord(String word) {
        return normalizeWord(word);
      }
    
      private static String firstCharOnlyToUpper(String word) {
        return word.isEmpty()
            ? word
            : Ascii.toUpperCase(word.charAt(0)) + Ascii.toLowerCase(word.substring(1));
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Apr 15 22:14:00 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

            /*
             * These classes handle null properly but throw IllegalArgumentException for the default
             * Class argument that this test uses. Normally we'd fix that by declaring a
             * ReflectionFreeAssertThrowsTest with a testNulls method, but that's annoying to have to do
             * for a package-private utility class. So we skip the class entirely instead.
             */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/elevateword/CreateForm.java

        /** The label type IDs associated with this elevate word entry */
        public String[] labelTypeIds;
    
        /** The CRUD operation mode for form processing */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /** The word that should trigger document elevation in search results */
        @Required
        public String suggestWord;
    
        /** The reading/pronunciation of the suggest word for language analysis */
        public String reading;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/AdminDictProtwordsAction.java

                break;
            default:
                break;
            }
            return OptionalEntity.empty();
        }
    
        /**
         * Get the protected word item.
         * @param form The create form.
         * @param hook The error hook.
         * @return The protected word item.
         */
        protected OptionalEntity<ProtwordsItem> createProtwordsItem(final CreateForm form, final VaErrorHook hook) {
            try {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.1K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

         *
         * @param word        The elevate word.
         * @param reading     The reading of the word.
         * @param tags        The tags associated with the word.
         * @param permissions The permissions for the word.
         * @param boost       The boost value for the word.
         * @param apply       true to apply the changes immediately.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java

                newOutput = output;
            }
        }
    
        /**
         * Gets the new input word.
         *
         * @return The new input word.
         */
        public String getNewInput() {
            return newInput;
        }
    
        /**
         * Sets the new input word.
         *
         * @param newInput The new input word.
         */
        public void setNewInput(final String newInput) {
            this.newInput = newInput;
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/ImmutableMap.java

         *
         * @throws IllegalArgumentException if duplicate keys were added
         */
        public ImmutableMap<K, V> build() {
          return buildOrThrow();
        }
    
        /**
         * Returns a newly-created immutable map, or throws an exception if any key was added more than
         * once. The iteration order of the returned map is the order in which entries were inserted
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 41.2K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_en.properties

    labels.suggest_word_configuration=Suggest Word
    labels.suggest_word_title_details=Suggest Word
    labels.suggest_word_type=Word Type
    labels.suggest_word_number=Number of Words
    labels.suggest_word_type_all=All
    labels.suggest_word_type_document=Document
    labels.suggest_word_type_query=Query
    labels.elevate_word_configuration=Elevate Word
    labels.elevate_word_title_details=Elevate Word
    labels.elevate_word_link_list=List
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 40.7K bytes
    - Viewed (0)
Back to top