Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 4,390 for file1 (0.05 sec)

  1. src/test/java/org/codelibs/curl/CurlTest.java

            assertNotNull(Curl.post("http://api.example.com/v1/resource"));
            assertNotNull(Curl.put("ftp://files.example.com/upload"));
            assertNotNull(Curl.delete("http://localhost:8080/delete"));
            assertNotNull(Curl.head("https://cdn.example.com/assets/file.js"));
            assertNotNull(Curl.options("http://cors.example.com/api"));
            assertNotNull(Curl.connect("http://proxy.example.com:3128"));
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Thu Jul 31 01:01:12 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/dict/protwords/ProtwordsFile.java

            }
            return s;
        }
    
        /**
         * Gets the simple name of this dictionary file.
         * @return the simple name of the file
         */
        public String getSimpleName() {
            return new File(path).getName();
        }
    
        /**
         * Updates the dictionary file with content from the input stream.
         * @param in the input stream containing the new content
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 11.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java

            }
        }
    
        /**
         * Returns the simple file name (without directory path) of this mapping file.
         *
         * @return the file name without the full path
         */
        public String getSimpleName() {
            return new File(path).getName();
        }
    
        /**
         * Updates the entire mapping file content from the provided input stream.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.9K bytes
    - Viewed (0)
  4. okhttp-hpacktests/src/test/java/okhttp3/internal/http2/hpackjson/Story.kt

     */
    package okhttp3.internal.http2.hpackjson
    
    /**
     * Representation of one story, a set of request headers to encode or decode. This class is used
     * reflectively with Moshi to parse stories from files.
     */
    data class Story(
      val description: String? = null,
      val cases: List<Case>,
      val fileName: String? = null,
    ) {
      // Used as the test name.
      override fun toString() = fileName ?: "?"
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/DownloadForm.java

    package org.codelibs.fess.app.web.admin.dict.protwords;
    
    import org.lastaflute.web.validation.Required;
    
    /**
     * The download form for protected words dictionary.
     * This form is used for downloading protected words dictionary files from the admin interface.
     *
     */
    public class DownloadForm {
    
        /**
         * Dictionary ID for identifying the protected words dictionary to download.
         */
        @Required
        public String dictId;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java

        /** The list of stopword items loaded from the dictionary file. */
        List<StopwordsItem> stopwordsItemList;
    
        /**
         * Constructs a new stopwords file.
         *
         * @param id        The unique identifier for this dictionary file.
         * @param path      The path to the dictionary file.
         * @param timestamp The last modified timestamp of the file.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  7. src/packaging/common/systemd/fess.service

    SuccessExitStatus=143
    
    # Specifies the maximum file descriptor number that can be opened by this process
    LimitNOFILE=${packaging.os.max.open.files}
    
    # Specifies the maximum number of bytes of memory that may be locked into RAM
    # Set to "infinity" if you use the 'bootstrap.mlockall: true' option
    # in fess.yml and 'MAX_LOCKED_MEMORY=unlimited' in ${packaging.env.file}
    #LimitMEMLOCK=infinity
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/dict/DictionaryCreator.java

    import jakarta.annotation.Resource;
    
    /**
     * Abstract base class for creating dictionary files from file paths.
     * Dictionary creators are responsible for recognizing specific file patterns
     * and creating appropriate DictionaryFile instances for them.
     */
    public abstract class DictionaryCreator {
    
        /** Pattern used to match file paths that this creator can handle. */
        protected Pattern pattern;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/job/PurgeThumbnailJob.java

         * Removes thumbnail files that have exceeded the configured expiration time.
         *
         * @return a string containing the execution result with the number of deleted files or error message
         */
        public String execute() {
            try {
                final long count = ComponentUtil.getThumbnailManager().purge(getExpiry());
                return "Deleted " + count + " thumbnail files.";
            } catch (final Exception e) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  10. src/main/resources/fess_message_it.properties

    errors.invalid_design_jsp_file_name = Nome file JSP non valido.
    errors.design_jsp_file_does_not_exist = Il file JSP non esiste.
    errors.design_file_name_is_not_found = Il nome del file non è stato specificato.
    errors.failed_to_write_design_image_file = Impossibile caricare il file immagine.
    errors.failed_to_update_jsp_file = Impossibile aggiornare il file JSP.
    errors.design_file_name_is_invalid = Il nome del file non è valido.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 12.3K bytes
    - Viewed (0)
Back to top