- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for hatten (2.75 sec)
-
README.md
### Key Architectural Patterns - **Factory Pattern** - `BeanDescFactory` for creating bean descriptors, `ParameterizedClassDescFactory` for generic type handling - **Builder Pattern** - `CopyOptions` for configuring bean copying operations with fluent API - **Adapter Pattern** - Logging adapters (`JclLoggerAdapter`, `JulLoggerAdapter`) for different logging frameworks
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
/** * Gets a map of filtered environment variables. * * @param keyPattern The pattern to filter environment variable keys. * @return A map of filtered environment variables. */ public Map<String, String> getFilteredEnvMap(final String keyPattern) { final Pattern pattern = Pattern.compile(keyPattern); return getEnvMap().entrySet().stream().filter(e -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
} source = source.replaceAll(Pattern.quote("${fess.dictionary.path}"), dictionaryPath)// .replaceAll(Pattern.quote("${fess.index.codec}"), fessConfig.getIndexCodec())// .replaceAll(Pattern.quote("${fess.index.number_of_shards}"), numberOfShards)// .replaceAll(Pattern.quote("${fess.index.auto_expand_replicas}"), autoExpandReplicas);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (0) -
guava-gwt/pom.xml
<sourceFileExclude>**/ForceGuavaCompilation*</sourceFileExclude> </sourceFileExcludes> <!-- The above exclusion doesn't actually matter unless I prevent Javadoc from autodiscovering the source in the sourcepath, which defaults to the source directory :\ Boo for -sourcepath. --> <sourcepath>doesnotexist</sourcepath>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 19.4K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/BloomFilter.java
&& this.funnel.equals(that.funnel); } /** * Combines this Bloom filter with another Bloom filter by performing a bitwise OR of the * underlying data. The mutations happen to <b>this</b> instance. Callers must ensure the Bloom * filters are appropriately sized to avoid saturating them. * * @param that The Bloom filter to combine this Bloom filter with. It is not mutated.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 31 13:15:26 UTC 2025 - 26.9K bytes - Viewed (0)