- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 755 for pets (0.02 sec)
-
src/main/java/org/codelibs/fess/app/service/WebConfigService.java
}); } /** * Gets a web configuration by its ID. * * @param id The ID of the web configuration * @return Optional containing the web configuration if found */ public OptionalEntity<WebConfig> getWebConfig(final String id) { return webConfigBhv.selectByPK(id); } /** * Gets a web configuration by its name.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ingest/Ingester.java
*/ public Ingester() { // Default constructor } /** * Gets the priority of this ingester. * Lower numbers indicate higher priority. * * @return the priority value */ public int getPriority() { return priority; } /** * Sets the priority of this ingester. * Lower numbers indicate higher priority. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/BoostDocumentRuleService.java
@Resource protected BoostDocumentRuleBhv boostDocumentRuleBhv; /** Fess configuration. */ @Resource protected FessConfig fessConfig; /** * Gets a paginated list of boost document rules. * @param boostDocumentRulePager The pager with search criteria and pagination settings. * @return List of boost document rules matching the criteria. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/Message.java
* * @return whether to retain the message payload */ boolean isRetainPayload(); /** * Gets the raw payload of the message. * * @return the raw response message */ byte[] getRawPayload(); /** * Sets the raw payload of the message. * * @param rawPayload the raw message payload to set */ void setRawPayload(byte[] rawPayload);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/FacetQueryView.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java
/** * Default constructor. */ public FessXpathTransformer() { super(); } /** * Initializes the transformer after dependency injection. * Sets up the Fess configuration and data serializer components. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 54.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/PurgeThumbnailJob.java
return e.getMessage(); } } /** * Gets the expiration time for thumbnails. * * @return the expiration time in milliseconds */ public long getExpiry() { return expiry; } /** * Sets the expiration time for thumbnails. * * @param expiry the expiration time in milliseconds (must be positive)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AtomicDouble.java
public AtomicDouble() { // assert doubleToRawLongBits(0.0) == 0L; } /** * Gets the current value. * * @return the current value */ public final double get() { return longBitsToDouble(value); } /** * Sets to the given value. * * @param newValue the new value */ public final void set(double newValue) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Mar 17 20:26:29 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRpcMessage.java
} @Override public int getOpnum() { return opnum; } /** * Gets the return code from the RPC operation. * * @return the return code */ public int getReturnCode() { return returnCode; } /** * Sets the return code for the RPC operation. * * @param returnCode the return code to set */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/sso/aad/AzureAdAuthenticator.java
this.nonce = nonce; this.expiration = expiration; } /** * Gets the nonce value. * @return The nonce. */ public String getNonce() { return nonce; } /** * Gets the expiration timestamp. * @return The expiration timestamp. */ public long getExpiration() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 28 09:13:08 UTC 2025 - 37.3K bytes - Viewed (0)