- Sort Score
- Num 10 results
- Language All
Results 11 - 20 of 75 for mpadded (0.03 seconds)
-
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/SortAcceptedApiChangesTaskIntegrationTest.kt
"acceptation": "org.gradle.api.AntBuilder now extends groovy.ant.AntBuilder", "changes": [ "Abstract method has been added in implemented interface" ] }, { "type": "org.gradle.api.file.SourceDirectorySet",
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 14 02:17:00 GMT 2025 - 9.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/FacetQueryViewTest.java
assertEquals("field1:value1", facetQueryView.getQueryMap().get("label1")); assertEquals("field2:value2", facetQueryView.getQueryMap().get("label2")); // Check that queries were added to FacetInfo assertEquals(2, testFacetInfo.getAddedQueries().size()); assertTrue(testFacetInfo.getAddedQueries().contains("field1:value1"));
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 17.9K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/CheckSubprojectsInfo.kt
@TaskAction fun checkSubprojectsInfo() { if (subprojectsJson.asFile.readText() != generateSubprojectsJson()) { throw GradleException( "New project(s) added without updating subproject JSON. Please run `:${GenerateSubprojectsInfo.TASK_NAME}` task." ) } }Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Jul 07 13:12:26 GMT 2021 - 1.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImplTest.java
// Execute indexUpdateCallback.store(paramMap, dataMap); // Verify assertEquals(1, indexUpdateCallback.getDocumentSize()); // Check if fields were added (they should be added by the store method) assertNotNull(dataMap.get("id"), "ID should be set"); assertNotNull(dataMap.get("doc_id"), "Doc ID should be set");Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 24.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/CreateForm.java
@Required public String dictId; /** The CRUD operation mode for form processing */ @ValidateTypeFailure public Integer crudMode; /** The stopword to be added to the dictionary */ @Required @Size(max = 1000) public String input; /** * Initializes the form with default values for creating a new stopword entry. */ public void initialize() {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/CreateForm.java
/** Dictionary identifier */ @Required public String dictId; /** CRUD operation mode (CREATE, EDIT, etc.) */ @ValidateTypeFailure public Integer crudMode; /** Token (word) to be added to the dictionary */ @Required @Size(max = 1000) public String token; /** Segmentation information for the token */ @Required @Size(max = 1000) public String segmentation;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/ExtensionBlocksSummaryRenderer.java
parent.appendChild(section); Element title = document.createElement("title"); section.appendChild(title); title.appendChild(document.createTextNode("Script blocks added by the ")); Element literal = document.createElement("literal"); title.appendChild(literal); literal.appendChild(document.createTextNode(extension.getPluginId()));
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 2.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
final long processingTime = systemHelper.getCurrentTimeAsLong() - startTime; docList.addProcessingTime(processingTime); if (logger.isDebugEnabled()) { logger.debug("Added document (size={}, time={}ms). Document cache count: {}", MemoryUtil.byteCountToDisplaySize(contentSize), processingTime, docList.size()); }
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 10.5K bytes - Click Count (0) -
build-logic/build-update-utils/src/test/groovy/gradlebuild/buildutils/tasks/PreparePatchReleaseIntegrationTest.groovy
import spock.lang.Specification import spock.lang.TempDir class PreparePatchReleaseIntegrationTest extends Specification { @TempDir File tmpDir def "version file is bumped and previous version is added to released versions"() { given: def versionFile = new File(tmpDir, "version.txt") versionFile.text = "9.4.0" def releasedVersionsFile = new File(tmpDir, "released-versions.json")Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 23 14:47:12 GMT 2026 - 2.2K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/entity/QueryContextTest.java
assertTrue(result instanceof BoolQueryBuilder); BoolQueryBuilder boolResult = (BoolQueryBuilder) result; assertTrue(boolResult.hasClauses()); } // Test addQuery with no clauses added @Test public void test_addQuery_withNoClauses() { queryContext = new QueryContext("test", false); QueryBuilder initialQuery = QueryBuilders.termQuery("field", "value");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 17.6K bytes - Click Count (0)