Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 110 for msword (0.08 sec)

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

            assertEquals("text", types[2]);
        }
    
        public void test_getTypes_withDuplicates() {
            fileTypeHelper.add("application/pdf", "document");
            fileTypeHelper.add("application/msword", "document");
            fileTypeHelper.add("text/plain", "text");
    
            String[] types = fileTypeHelper.getTypes();
            assertEquals(2, types.length);
    
            Arrays.sort(types);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/net/MediaType.java

      /**
       * <a
       * href="https://learn.microsoft.com/en-us/archive/blogs/vsofficedeveloper/office-2007-file-format-mime-types-for-http-content-streaming-2">Microsoft
       * Word</a> documents.
       */
      public static final MediaType MICROSOFT_WORD = createConstant(APPLICATION_TYPE, "msword");
    
      /**
       * Media type for <a
       * href="https://en.wikipedia.org/wiki/Dynamic_Adaptive_Streaming_over_HTTP">Dynamic Adaptive
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 48K bytes
    - Viewed (0)
  3. src/main/resources/fess_config.properties

    # Seed value for popular word suggestion.
    suggest.popular.word.seed=0
    # Tags for popular word suggestion.
    suggest.popular.word.tags=
    # Fields for popular word suggestion.
    suggest.popular.word.fields=
    # Excluded words for popular word suggestion.
    suggest.popular.word.excludes=
    # Number of popular words to suggest.
    suggest.popular.word.size=10
    # Window size for popular word suggestion.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 05 14:45:37 UTC 2025
    - 54.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/MediaType.java

      /**
       * <a
       * href="https://learn.microsoft.com/en-us/archive/blogs/vsofficedeveloper/office-2007-file-format-mime-types-for-http-content-streaming-2">Microsoft
       * Word</a> documents.
       */
      public static final MediaType MICROSOFT_WORD = createConstant(APPLICATION_TYPE, "msword");
    
      /**
       * Media type for <a
       * href="https://en.wikipedia.org/wiki/Dynamic_Adaptive_Streaming_over_HTTP">Dynamic Adaptive
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 17:27:14 UTC 2025
    - 48K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        String INDEX_INDICES_TIMEOUT = "index.indices.timeout";
    
        /** The key of the configuration. e.g. text/html=html<br>
         * application/msword=word<br>
         * application/vnd.openxmlformats-officedocument.wordprocessingml.document=word<br>
         * application/vnd.ms-excel=excel<br>
         * application/vnd.ms-excel.sheet.2=excel<br>
         * application/vnd.ms-excel.sheet.3=excel<br>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 525.6K bytes
    - Viewed (1)
  6. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsItemTest.java

            ProtwordsItem item1 = new ProtwordsItem(1, "  word  ");
            assertEquals("  word  ", item1.getInput());
            assertEquals("  word  ", item1.toLineString());
    
            ProtwordsItem item2 = new ProtwordsItem(2, "\tword\n");
            assertEquals("\tword\n", item2.getInput());
            assertEquals("\tword\n", item2.toLineString());
    
            ProtwordsItem item3 = new ProtwordsItem(3, " ");
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

        }
    
        public void test_specialCharacters() throws Exception {
            // Test with special characters
            String content = "test1\n" + "日本語\n" + "word with spaces\n" + "\ttab\tword\t\n";
    
            // Write content to test file
            writeTestFile(content);
    
            // Reload the file
            protwordsFile.reload(null);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 20.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java

                            .result());
        }
    
        // GET /api/admin/elevateword/{id}
        /**
         * Retrieves a specific elevate word setting by ID.
         *
         * @param id the ID of the elevate word to retrieve
         * @return JSON response containing the elevate word configuration
         */
        @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
    - 12.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/BadWordService.java

        }
    
        /**
         * Gets a bad word by its ID.
         * @param id The bad word ID.
         * @return Optional entity containing the bad word if found.
         */
        public OptionalEntity<BadWord> getBadWord(final String id) {
            return badWordBhv.selectByPK(id);
        }
    
        /**
         * Stores (inserts or updates) a bad word.
         * @param badWord The bad word to store.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/badword/EditForm.java

        public EditForm() {
            super();
        }
    
        /**
         * The unique identifier of the bad word entry being edited.
         * This is a required field for identifying which bad word to update.
         */
        @Required
        @Size(max = 1000)
        public String id;
    
        /**
         * The username of the user who last updated this bad word entry.
         * Used for audit trail purposes to track who made changes.
         */
        @Size(max = 1000)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
Back to top