- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 591 for related (0.05 sec)
-
src/main/java/org/codelibs/fess/app/web/api/admin/relatedquery/SearchBody.java
/** * Search request body for related query administration API. */ public class SearchBody extends BaseSearchBody { /** * Default constructor. */ public SearchBody() { super(); } /** Search term for related queries */ public String term; /** Related queries text */ public String queries;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/relatedcontent/EditBody.java
import org.codelibs.fess.app.web.admin.relatedcontent.EditForm; /** * Request body class for related content edit operations in the admin REST API. * This class extends EditForm to inherit the necessary form validation and binding capabilities * for related content management operations. */ public class EditBody extends EditForm { /** * Default constructor. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/relatedquery/SearchForm.java
/** * The search form for Related Query. */ public class SearchForm { /** * Default constructor for SearchForm. */ public SearchForm() { } /** * The search term field for related queries. */ public String term; /** * The queries field for searching related queries. */ public String queries;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java
System.out.println("Expected exception in test environment: " + t.getClass().getSimpleName() + ": " + t.getMessage()); // Verify that it's a system-related exception, not a method signature issue assertTrue("Exception should be system-related", t instanceof RuntimeException || t instanceof AssertionError || (t.getCause() != null && t.getCause() instanceof RuntimeException)); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 8.9K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/RelationshipTester.java
T item = itemInfo.value; T related = relatedInfo.value; assertWithTemplate( "$ITEM must be $RELATIONSHIP to $OTHER", itemInfo, relatedInfo, equivalence.equivalent(item, related)); int itemHash = equivalence.hash(item); int relatedHash = equivalence.hash(related); assertWithTemplate( "the $HASH (" + itemHash
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 5.9K bytes - Viewed (0) -
.gitignore
.vscode # This is where the result of the go build goes /output*/ /_output*/ /_output # Emacs save files *~ \#*\# .\#* # Vim-related files [._]*.s[a-w][a-z] [._]s[a-w][a-z] *.un~ Session.vim .netrwhist # cscope-related files cscope.* # Go test binaries *.test /hack/.test-cmd-auth # JUnit test output from ginkgo e2e tests /junit*.xml # Mercurial files **/.hg
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Feb 29 08:22:06 UTC 2024 - 2.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/RelatedQueryHelperTest.java
mockBhv.setTestData(testData); relatedQueryHelper.init(); // Verify that load was called and data is processed String[] results = relatedQueryHelper.getRelatedQueries("test"); assertEquals(2, results.length); assertEquals("related1", results[0]); assertEquals("related2", results[1]); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 16.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/CreateForm.java
@Max(value = 2147483647) @ValidateTypeFailure public Integer sortOrder; /** * The username of who created this scheduled job. */ @Size(max = 1000) public String createdBy; /** * The timestamp when this scheduled job was created. */ @ValidateTypeFailure public Long createdTime; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ConstructorUtil.java
* @return a new object created by invoking the constructor * @throws InstantiationRuntimeException if the class declaring the constructor is abstract * @throws IllegalAccessRuntimeException if the number of actual and formal parameters differ, if primitive arguments cannot be converted, or if the class is related to enums * @see Constructor#newInstance(Object[]) */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/GsaConfigException.java
package org.codelibs.fess.exception; /** * Exception thrown when GSA (Google Search Appliance) configuration errors occur. * This exception extends FessSystemException and is used to handle specific * configuration-related issues when working with GSA integration. * */ public class GsaConfigException extends FessSystemException { private static final long serialVersionUID = 1L; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0)