Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for catching (0.14 sec)

  1. README.md

    - **Exception Handling** (`org.codelibs.core.exception`) - Runtime exception wrappers for common checked exceptions with consistent error handling
    
    ### Modern Java 21 Support
    - **Pattern Matching** - Leverages modern Java pattern matching for efficient type checking and conversion
    - **Switch Expressions** - Optimized implementations using switch expressions for better performance
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sun Aug 31 02:56:02 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  2. docs/recipes.md

            }
          }
    
          static class Gist {
            Map<String, GistFile> files;
          }
    
          static class GistFile {
            String content;
          }
        ```
    
    ### Response Caching ([.kt][CacheResponseKotlin], [.java][CacheResponseJava])
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 47.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                }
            } finally {
                deleteScrollContext(scrollId);
            }
            return count;
        }
    
        /**
         * Deletes documents in an index matching a query.
         *
         * @param index        the index name
         * @param queryBuilder the query to match documents for deletion
         * @return the number of documents deleted
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
Back to top