- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 134 for parentId (0.07 sec)
-
src/test/java/org/codelibs/fess/util/QueryResponseListTest.java
FacetResponse facetResponse = null; QueryResponseList qrList = new QueryResponseList(documentList, 100L, "gte", 500L, true, facetResponse, 0, 10, 0); assertEquals(documentList, qrList.parent); assertEquals(100L, qrList.getAllRecordCount()); assertEquals("gte", qrList.getAllRecordCountRelation()); assertEquals(500L, qrList.getQueryTime()); assertTrue(qrList.isPartialResults());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 39.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/annotation/SecuredTest.java
assertEquals("ROLE_PARENT", childSecured.value()[0]); } // Test method annotation inheritance public void test_methodAnnotationInheritance() throws NoSuchMethodException { // Parent method has annotation Method parentMethod = ParentClass.class.getMethod("parentMethod"); Secured parentSecured = parentMethod.getAnnotation(Secured.class); assertNotNull(parentSecured);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 15.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/IndexingHelperTest.java
assertEquals(1, indexingHelper.deleteChildDocument(client, id)); assertEquals("fess.update", resultMap.get("index")); assertEquals(id, resultMap.get("id")); assertEquals("parent_id", resultMap.get("field")); } public void test_getChildDocumentList() { documentSizeByQuery = 1L; final Map<String, String> resultMap = new HashMap<>();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 29.3K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedTest.java
assertThat(exception.getAntecedent()).isEqualTo(CHECKED_EXCEPTION); } // Class unloading test: public static final class WillBeUnloadedException extends Exception {} @AndroidIncompatible // "Parent ClassLoader may not be null"; maybe avoidable if we try? public void testGetChecked_classUnloading() throws Exception { WeakReference<?> classUsedByGetChecked = doTestClassUnloading();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 16.4K bytes - Viewed (0) -
build.gradle.kts
apply(plugin = "biz.aQute.bnd.builder") if (project.name != "okhttp-testing-support") { apply(plugin = "io.github.usefulness.maven-sympathy") } } // Skip samples parent if (project.buildFile.exists() && project.name != "okhttp") { apply(plugin = "com.android.lint") dependencies { "lintChecks"(rootProject.libs.androidx.lint.gradle) } }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Aug 01 08:06:31 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/FessBoot.java
super(port, contextPath); } /** * Prepares and returns the web application path. * Checks for the fess.webapp.path system property first, then falls back to the parent implementation. * * @return the web application path */ @Override protected String prepareWebappPath() { final String value = System.getProperty(FESS_WEBAPP_PATH);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java
assertEquals(expectedMessage, e.getMessage()); assertNull(e.getCause()); } } public void test_throwAndCatchAsFessSystemException() { // Test catching as parent exception type String type = "BasicAuth"; String message = "Authentication failed"; try { throw new InvalidAccessTokenException(type, message);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/PluginHelperTest.java
assertTrue(pluginHelper.isExcludedName(ArtifactType.CRAWLER, "fess-crawler-lasta")); assertTrue(pluginHelper.isExcludedName(ArtifactType.CRAWLER, "fess-crawler-parent")); assertTrue(pluginHelper.isExcludedName(ArtifactType.CRAWLER, "fess-crawler-playwright")); assertTrue(pluginHelper.isExcludedName(ArtifactType.CRAWLER, "fess-crawler-webdriver"));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 22.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/PrefixQueryCommandTest.java
private QueryFieldConfig queryFieldConfig; @Override protected void setUpChild() throws Exception { // Get the queryProcessor and queryFieldConfig that were registered in parent class queryProcessor = ComponentUtil.getComponent("queryProcessor"); queryFieldConfig = ComponentUtil.getComponent("queryFieldConfig"); // Initialize and register PrefixQueryCommand
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.1K bytes - Viewed (0) -
src/main/resources/fess_config.properties
index.field.timestamp=timestamp # Field name for label in the index. index.field.label=label # Field name for MIME type in the index. index.field.mimetype=mimetype # Field name for parent ID in the index. index.field.parent_id=parent_id # Field name for important content in the index. index.field.important_content=important_content # Field name for content in the index. index.field.content=content
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 14:45:37 UTC 2025 - 54.7K bytes - Viewed (0)