- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 16 for mixed_ (0.03 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/org/codelibs/fess/util/RenderDataUtilTest.java
mixedList.add(entity); mixedList.add("string"); mixedList.add(123); RenderDataUtil.register(data, "mixed", mixedList); Object result = data.getDataMap().get("mixed"); assertNotNull(result); assertTrue(result instanceof List); @SuppressWarnings("unchecked") List<Object> resultList = (List<Object>) result;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 9.2K bytes - Click Count (0) -
.github/PULL_REQUEST_TEMPLATE.md
- [ ] Ensure that tests pass locally: `./gradlew <changed-subproject>:quickTest`. ### Reviewing cheatsheet Before merging the PR, comments starting with - ❌ ❓**must** be fixed - 🤔 💅 **should** be fixed - 💭 **may** be fixed
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Feb 13 22:36:19 GMT 2024 - 1.7K bytes - Click Count (0) -
architecture/standards/0009-use-american-english.md
* **Confusion for users and contributors**: Mixed spellings (e.g., "color" and "colour", "initialize" and "initialise") in the codebase create confusion about which variant to use * **Harder code search and refactoring**: Searching for identifiers, method names, or documentation becomes more difficult when multiple spellings exist for the same concept * **Inconsistent API surface**: Public APIs with mixed spelling conventions appear less professional and polished
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 3.9K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateFixedIssuesInReleaseNotes.kt
abstract class UpdateFixedIssuesInReleaseNotes : DefaultTask() { @get:Internal abstract val releaseNotes: RegularFileProperty @get:Option(option = "milestone", description = "The milestone to fetch fixed issues for, e.g. '9.0.1'") @get:Internal abstract val milestone: Property<String> @get:Internal abstract val githubToken: Property<String> @TaskAction fun update() {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 23 14:49:33 GMT 2026 - 5.1K bytes - Click Count (0) -
src/main/webapp/css/style.css
} .form-control { border-radius: 0px; } legend{ display: none; } /* header */ #searchOptions { position: fixed; z-index: 10; } #searchOptions .container { width: 500px; max-width: 100%; height: 100%; overflow: auto; position: fixed; top: 0; bottom: 0; right: -500px; padding-top: 72px; padding-bottom: 20px; color: #fff;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 12 06:14:02 GMT 2025 - 2K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/Gradleception.kt
1. Build a Gradle distribution with a fixed timestamp and hash it, but never use this distribution. 2. Build a Gradle distribution with this hash as a version + fixed timestamp -> dogfood-first 3. Build a Gradle distribution using dogfood-first with this hash as a version + fixed timestamp different from the one above -> dogfood-secondCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 30 04:44:29 GMT 2026 - 7.1K bytes - Click Count (0) -
architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md
* If we would have used `Closure`, we must instead use `Action<T>`, `Spec<T>`, `Callable<T>`, or `Transformer<OUT, IN>`. * We need to ensure all APIs that are exposed in the Groovy DSL go through runtime decoration. Runtime decoration mixes in methods that use Groovy Closures to maintain consistent behavior in Groovy DSL.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 1.8K bytes - Click Count (0) -
dbflute_fess/dfprop/additionalForeignKeyMap.dfprop
# additionalForeignKeyMap: (NotRequired - Default map:{}) # # If foreign key does not exist in your database, # you can set up here as virtual foreign key for DBFlute. # # And it's one-to-one relation if you add one fixed condition to referrer table, # you can set virtual foreign key with fixedCondition and fixedSuffix. # And you can use it to view objects too. # # If local column name is same as foreign column name,Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jul 04 22:46:31 GMT 2015 - 1.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/cache/CacheAction.java
.data(content.getBytes(Constants.CHARSET_UTF_8)); response.headerContentDispositionInline(); // TODO will be fixed in lastaflute return response; }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 3.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/FessCrawlerThreadTest.java
Set<RequestData> result = crawlerThread.getAnchorSet(unsupportedType); assertNull(result, "getAnchorSet should return null for unsupported type"); } /** * Test getAnchorSet with mixed valid and invalid URLs */ @Test public void test_getAnchorSet_withMixedValidAndInvalid() { FessCrawlerThread crawlerThread = new FessCrawlerThread();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.3K bytes - Click Count (0)