- Sort Score
- Num 10 results
- Language All
Results 91 - 100 of 114 for beans (0.02 seconds)
-
src/test/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGeneratorTest.java
// SVG MIME type - the + must be escaped in regex String svgMimetype = "image/svg+xml"; String svgPatternWrong = "image/svg+xml"; // Wrong: + means "one or more" in regex String svgPatternCorrect = "image/svg\\+xml"; // Correct: \\+ matches literal + // Verify wrong pattern does NOT match (demonstrates the bug)Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Feb 04 14:24:39 GMT 2026 - 17.1K bytes - Click Count (0) -
LICENSE
"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of theCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 12 16:29:02 GMT 2026 - 9.9K bytes - Click Count (0) -
.teamcity/subprojects.json
"path": "platforms/core-configuration/base-services-groovy", "unitTests": true, "functionalTests": false, "crossVersionTests": false }, { "name": "bean-serialization-services", "path": "platforms/core-configuration/bean-serialization-services", "unitTests": false, "functionalTests": false, "crossVersionTests": false }, { "name": "build-cache",
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 27 15:03:00 GMT 2026 - 42K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/WebAuthentication.java
} final WebAuthenticationConfig config = new WebAuthenticationConfig(); // host/port/realm: only set if not blank (null means "any" - AuthScope.ANY equivalent) if (StringUtil.isNotBlank(getHostname())) { config.setHost(getHostname()); } if (getPort() != null) { config.setPort(getPort()); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jan 10 01:38:30 GMT 2026 - 5.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/CrawlJobTest.java
} }; ComponentUtil.setFessConfig(new TestFessConfig() { @Override public Integer getJobMaxCrawlerProcessesAsInteger() { return -1; // Negative means no limit } }); ComponentUtil.register(new KeyMatchHelper() { @Override public void update() { // Mock update }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 25K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/query/QueryProcessor.java
/** * Initializes the query processor after construction. * This method creates the initial filter chain from the registered filters. * Called automatically by the DI container after bean construction. */ @PostConstruct public void init() { createFilterChain(); } /** * Executes query processing through the filter chain. *Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 7.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/rule/CrawlerRuleMimeTypePatternTest.java
assertFalse(pattern.matcher("application/xml").matches()); } @Test public void test_unescapedPlusDoesNotMatch() { // Demonstrate the bug when + is not escaped // In regex, + means "one or more" of the previous character String wrongPattern = "(application/xhtml+xml|application/rdf+xml)"; Pattern pattern = Pattern.compile(wrongPattern);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Feb 04 14:24:39 GMT 2026 - 8.7K bytes - Click Count (0) -
dbflute_fess/dfprop/basicInfoMap.dfprop
# o applicationBehaviorMap: (NotRequired - Default map:{}) # o outputPackageAdjustmentMap: (NotRequired - Default map:{}) # o dbfluteSystemFinalTimeZone: (NotRequired - Default null) # # *The line that starts with '#' means comment-out. # map:{ # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - # o database: (Required) # This is the target database, only considered when generatingCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Oct 31 23:35:14 GMT 2015 - 9.2K bytes - Click Count (0) -
architecture/standards/0006-use-of-provider-apis-in-gradle.md
Until we can provide the same guarantees for core plugins, we need to be more conservative for existing classes and not follow best practices. This means conventions need to be set in both a plugin and the constructor. This keeps existing builds working, but it may complicate the implementation. This is preferred for entirely new things: ```groovy
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 10K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/RelatedContentHelper.java
* from the data store. This method is called automatically after dependency * injection is complete. * * PostConstruct annotation ensures this method is called after the bean * has been constructed and all dependencies have been injected. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 8.2K bytes - Click Count (0)