Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 176 for word2 (0.02 sec)

  1. src/test/java/org/codelibs/fess/helper/SuggestHelperTest.java

            }
    
            public void deleteElevateWord(String word, boolean apply) {
                // Mock implementation
            }
    
            public void addElevateWord(org.codelibs.fess.suggest.entity.ElevateWord elevateWord, boolean apply) {
                // Mock implementation
            }
    
            public void addBadWord(String word, boolean apply) {
                // Mock implementation
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 16K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/CreateForm.java

        }
    
        /** Dictionary identifier */
        @Required
        public String dictId;
    
        /** CRUD operation mode (CREATE, EDIT, etc.) */
        @ValidateTypeFailure
        public Integer crudMode;
    
        /** Token (word) to be added to the dictionary */
        @Required
        @Size(max = 1000)
        public String token;
    
        /** Segmentation information for the token */
        @Required
        @Size(max = 1000)
        public String segmentation;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_nl.properties

    labels.facet_contentLength_5m=5MB -  
    labels.facet_filetype_title=Bestandstype
    labels.facet_filetype_html=HTML
    labels.facet_filetype_word=MS Word
    labels.facet_filetype_excel=MS Excel
    labels.facet_filetype_powerpoint=MS PowerPoint
    labels.facet_filetype_odt=ODF Word
    labels.facet_filetype_ods=ODF Spreadsheet
    labels.facet_filetype_odp=ODF Presentatie
    labels.facet_filetype_pdf=PDF
    labels.facet_filetype_fb2=FictionBook
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 42.8K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/app/web/admin/badword/DownloadForm.java

     * either express or implied. See the License for the specific language
     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.admin.badword;
    
    /**
     * The download form for Bad Word.
     *
     */
    public class DownloadForm {
    
        /**
         * Default constructor.
         */
        public DownloadForm() {
            // Use of default constructor
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 864 bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/CreateBody.java

     */
    package org.codelibs.fess.app.web.api.admin.elevateword;
    
    import org.codelibs.fess.app.web.admin.elevateword.CreateForm;
    
    /**
     * Request body for creating elevate word via REST API.
     * Extends CreateForm to inherit validation and field definitions.
     */
    public class CreateBody extends CreateForm {
    
        /**
         * Creates a new CreateBody instance.
         */
        public CreateBody() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1012 bytes
    - Viewed (0)
  6. src/main/resources/fess_message_ru.properties

    errors.failed_to_upload_stopwords_file = Не удалось загрузить файл стоп-слов.
    errors.failed_to_download_elevate_file = Не удалось скачать файл elevate word.
    errors.failed_to_upload_elevate_file = Не удалось загрузить файл elevate word.
    errors.failed_to_download_badword_file = Не удалось скачать файл плохих слов.
    errors.failed_to_upload_badword_file = Не удалось загрузить файл плохих слов.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 02:36:47 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/SipHashFunction.java

        private static final int CHUNK_SIZE = 8;
    
        // The number of compression rounds.
        private final int c;
        // The number of finalization rounds.
        private final int d;
    
        // Four 64-bit words of internal state.
        // The initial state corresponds to the ASCII string "somepseudorandomlygeneratedbytes",
        // big-endian encoded. There is nothing special about this value; the only requirement
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/advance.jsp

    							/></option>
    						<option value="pdf" <c:if test="${as.filetype.contains('pdf')}">selected</c:if>><la:message
    								key="labels.advance_search_filetype_pdf"
    							/></option>
    						<option value="word" <c:if test="${as.filetype.contains('word')}">selected</c:if>><la:message
    								key="labels.advance_search_filetype_word"
    							/></option>
    						<option value="excel" <c:if test="${as.filetype.contains('excel')}">selected</c:if>><la:message
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/hash/ChecksumHashFunction.java

        }
    
        @Override
        public HashCode hash() {
          long value = checksum.getValue();
          if (bits == 32) {
            /*
             * The long returned from a 32-bit Checksum will have all 0s for its second word, so the
             * cast won't lose any information and is necessary to return a HashCode of the correct
             * size.
             */
            return HashCode.fromInt((int) value);
          } else {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 17:34:21 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/badword/CreateBody.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.api.admin.badword;
    
    import org.codelibs.fess.app.web.admin.badword.CreateForm;
    
    /**
     * Request body for creating bad word via REST API.
     * Extends CreateForm to inherit validation and field definitions.
     */
    public class CreateBody extends CreateForm {
    
        /**
         * Creates a new CreateBody instance.
         */
        public CreateBody() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1001 bytes
    - Viewed (0)
Back to top