Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 53 for convention (0.26 sec)

  1. CLAUDE.md

    ---
    
    ## Code Conventions
    
    ### Java Style
    
    - **Formatter**: Eclipse formatter at `src/config/eclipse/formatter/java.xml`
    - **Indentation**: 4 spaces (no tabs)
    - **Line Length**: 140 characters max
    - **License Headers**: Required (use `mvn license:format`)
    
    ### Naming Conventions
    
    | Type | Convention | Example |
    |------|-----------|---------|
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 24 03:40:05 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/EXTRACTOR_TESTS_README.md

    4. **Edge Cases**: Null, empty, and boundary conditions are covered
    5. **Resources**: Test resources are properly managed and cleaned up
    
    ## Contributing
    
    When adding new tests:
    1. Follow the existing naming convention: `test_<method>_<scenario>_<expectedResult>`
    2. Add clear JavaDoc comments explaining the test purpose
    3. Ensure tests are independent and can run in any order
    4. Clean up resources in finally blocks or use try-with-resources
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Wed Nov 19 08:55:01 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  3. ADDING_NEW_LANGUAGE.md

    ├── fess_message.properties         # Base English messages (fallback)
    └── fess_message_[locale].properties # Language-specific messages (~200 lines)
    ```
    
    ### Naming Convention
    
    - **Language only**: `fess_label_en.properties`, `fess_label_ja.properties`
    - **Language + Region**: `fess_label_pt_BR.properties`, `fess_label_zh_CN.properties`, `fess_label_zh_TW.properties`
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 11:36:30 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  4. CLAUDE.md

    4. Verify no regressions
    
    ### When Refactoring
    
    1. Preserve behavior
    2. Keep tests green
    3. Small incremental steps
    4. Don't mix with new features
    
    ### Code Quality Checklist
    
    - [ ] Java conventions followed
    - [ ] JavaDoc for public APIs
    - [ ] Tests pass (`mvn test`)
    - [ ] No compiler warnings
    - [ ] Proper exception handling
    - [ ] Resource cleanup (AutoCloseable)
    - [ ] Thread-safe if needed
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 28 17:31:34 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/curl/CurlRequest.java

            final HttpURLConnection connection = (HttpURLConnection) (proxy != null ? u.openConnection(proxy) : u.openConnection());
            if (sslSocketFactory != null && connection instanceof HttpsURLConnection) {
                ((HttpsURLConnection) connection).setSSLSocketFactory(sslSocketFactory);
            }
            return connection;
        }
    
        /**
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Mon Nov 24 03:10:07 UTC 2025
    - 18.6K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/net/protocol/gcs/Handler.java

     * </p>
     */
    public class Handler extends URLStreamHandler {
    
        /**
         * Constructs a new Handler.
         */
        public Handler() {
            // Default constructor
        }
    
        /**
         * Opens a connection to the GCS URL.
         *
         * @param u The URL to open a connection to
         * @return A new GcsURLConnection instance
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/net/protocol/s3/Handler.java

     * The {@link S3URLConnection} class handles the actual connection and data retrieval from the S3 service.
     * </p>
     */
    public class Handler extends URLStreamHandler {
    
        /**
         * Constructs a new Handler.
         */
        public Handler() {
            // Default constructor
        }
    
        /**
         * Opens a connection to the S3 URL.
         *
         * @param u The URL to open a connection to
         * @return A new S3URLConnection instance
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 07:57:44 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/net/protocol/storage/Handler.java

     * </p>
     */
    public class Handler extends URLStreamHandler {
    
        /**
         * Constructs a new Handler.
         */
        public Handler() {
            // Default constructor
        }
    
        /**
         * Opens a connection to the storage URL.
         *
         * @param u The URL to open a connection to
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Nov 20 08:52:56 UTC 2025
    - 11.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/converter/ReadingConverter.java

         *
         * @param text the text to be converted.
         * @param field the field to be used for conversion.
         * @param langs the languages to be used for conversion.
         * @return a list of readings for the given text.
         * @throws IOException if an I/O error occurs during conversion.
         */
        List<String> convert(String text, String field, String... langs) throws IOException;
    Registered: Sat Dec 20 13:04:59 UTC 2025
    - Last Modified: Mon Nov 17 14:28:21 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpClient.java

        }
    
        /**
         * Gets the connection timeout in milliseconds.
         *
         * @return The connection timeout
         */
        public int getConnectTimeout() {
            return connectTimeout;
        }
    
        /**
         * Sets the connection timeout in milliseconds.
         *
         * @param connectTimeout The connection timeout
         */
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 40K bytes
    - Viewed (0)
Back to top