- Sort Score
- Num 10 results
- Language All
Results 141 - 150 of 214 for hatten (0.04 seconds)
-
architecture/standards/0010-gradle-properties-naming.md
**Public properties** are formally a part of the Public API. Public properties are **stable properties**: they CANNOT be renamed or removed without notice. While we normally deprecate the feature or behavior itself, changes to the property cannot happen in a minor release. Public properties must be documented. **Internal properties** are not part of the Public API. Internal properties are **unstable properties**: they CAN be renamed or removed without notice.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 06 09:25:54 GMT 2026 - 8K bytes - Click Count (0) -
.teamcity/src/test/kotlin/CIConfigIntegrationTests.kt
val subprojectRoots = File("../platforms").listFiles(File::isDirectory).plus(File("../subprojects")) val subProjectFolders = subprojectRoots.map { it.listFiles(File::isDirectory).asList() }.flatten().filter { dir -> // filter out the directories that have only a `build` subdirectory - this usually happens after branch switching
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Oct 16 01:27:05 GMT 2025 - 14.6K bytes - Click Count (0) -
.idea/misc.xml
<item index="5" class="java.lang.String" itemvalue="org.gradle.internal.scan.UsedByScanPlugin" /> <item index="6" class="java.lang.String" itemvalue="org.gradle.internal.service.Provides" /> </list> <pattern value="org.gradle.internal.service.ServiceRegistrationProvider" hierarchically="true" method="configure" /> </component> <component name="ExternalStorageConfigurationManager" enabled="true" />
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Feb 16 19:01:50 GMT 2026 - 5.4K bytes - Click Count (0) -
architecture/standards/0008-use-nullaway.md
* Some public APIs have incorrect nullability annotations (both overly restrictive and overly permissive) While there are competing ways to represent absence (`Optional`, "Null Object" pattern, method overloads), it is unlikely that we'll be able to remove `null` entirely. After migrating to Java 8, we can use pluggable type checkers to ensure that our annotations are consistent, and there are no missing null checks.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 4K bytes - Click Count (0) -
MIGRATION.md
| GSA Setting | Fess Equivalent | |-------------|----------------| | Collection | WebConfig or FileConfig | | Start URLs | URLs field in crawl config | | Good URL Pattern | Included URLs (regex) | | Bad URL Pattern | Excluded URLs (regex) | | Follow/Index Pattern | Config Depth and Filter settings | **Implementation Details**
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 06 12:40:11 GMT 2025 - 23.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java
StopwordsItem item4 = new StopwordsItem(1, "different"); // Same object assertTrue(item1.equals(item1)); // Same input value (id doesn't matter) assertTrue(item1.equals(item2)); assertTrue(item1.equals(item3)); // Different input value assertFalse(item1.equals(item4)); // Null and different class
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.4K bytes - Click Count (0) -
build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt
@EnabledIfEnvironmentVariable(named = "CI", matches = ".*", disabledReason = "Tests rely on setup conditional on CI in gradlebuild.ci-reporting plugin running first, these test should only run if CI env var is present (it's value doesn't matter)") class TestFilesCleanupServiceTest { @TempDir lateinit var projectDir: File @TempDir lateinit var testKitDir: File private fun File.mkdirsAndWriteText(text: String) {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Feb 10 00:16:44 GMT 2026 - 11.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/dict/DictionaryItemTest.java
// Verify direct field access assertEquals(999L, item.id); } @Test public void test_sequentialIdAssignment() { // Test sequential ID assignment pattern TestDictionaryItem[] items = new TestDictionaryItem[5]; for (int i = 0; i < items.length; i++) { items[i] = new TestDictionaryItem(); items[i].id = i + 1; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 4.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java
Files.deleteIfExists(tempFile); } } @Test public void test_constructor_isProtected() { // Verify that ThreadDumpUtil has a protected constructor (utility class pattern) try { Constructor<ThreadDumpUtil> constructor = ThreadDumpUtil.class.getDeclaredConstructor();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 15.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorErrorHandlingTest.java
processor.setSearcher(new TestSearcher(100)); processor.register(new NumericIdFieldSearcher()); processor.init(); // Should skip documents with non-string ID (pattern matching fails) final List<Map<String, Object>> results = processor.search("*", new TestSearchRequestParams(0, 10, 0), OptionalThing.empty()); assertNotNull(results); } } /**
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 14.3K bytes - Click Count (0)