- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 1,060 for getA (0.88 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/s3/Handler.java
if (connected) { return; } final String endpoint = System.getenv().get("S3_ENDPOINT"); final String accessKey = System.getenv().get("S3_ACCESS_KEY"); final String secretKey = System.getenv().get("S3_SECRET_KEY"); final String region = System.getenv().getOrDefault("S3_REGION", "us-east-1");
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 07:57:44 UTC 2025 - 9.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/DefaultIntervalController.java
@Override protected void delayForWaitingNewUrl() { if (delayMillisForWaitingNewUrl > 0) { ThreadUtil.sleep(delayMillisForWaitingNewUrl); } } /** * Gets the delay in milliseconds after processing a URL. * @return delay in milliseconds */ public long getDelayMillisAfterProcessing() { return delayMillisAfterProcessing; } /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:58:39 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/login/SamlCredential.java
return nameId; } /** * Gets the SAML user. * @return The SAML user. */ public SamlUser getUser() { return new SamlUser(nameId, sessionIndex, nameIdFormat, nameidNameQualifier, nameidSPNameQualifier, getDefaultGroupsAsArray(), getDefaultRolesAsArray()); } /** * Gets the default groups as an array. * @return The default groups as an array.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/ProtwordsService.java
} /** * Gets a specific protected words item by ID. * @param dictId the dictionary ID * @param id the item ID * @return the protected words item if found */ public OptionalEntity<ProtwordsItem> getProtwordsItem(final String dictId, final long id) { return getProtwordsFile(dictId).map(file -> file.get(id).get()); } /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessTransformer.java
*/ Map<String, String> parentEncodingMap = Collections.synchronizedMap(new LruHashMap<>(1000)); /** * Gets the Fess configuration instance. * * @return the Fess configuration object */ FessConfig getFessConfig(); /** * Gets the logger instance for this transformer. * * @return the logger instance */ Logger getLogger(); /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 11 09:47:03 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/PluginHelper.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 24.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/net/protocol/storage/Handler.java
return; } final String endpoint = System.getenv().get("STORAGE_ENDPOINT"); final String accessKey = System.getenv().get("STORAGE_ACCESS_KEY"); final String secretKey = System.getenv().get("STORAGE_SECRET_KEY"); final String region = System.getenv().get("STORAGE_REGION"); // Validate endpoint before attempting connectionRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:52:56 UTC 2025 - 11.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessAsyncNotifyMessage.java
this.contextHandle = contextHandle != null ? contextHandle.clone() : null; } /** * Gets the context handle. * * @return the context handle */ public byte[] getContextHandle() { return contextHandle != null ? contextHandle.clone() : null; } /** * Gets the list of notifications received. * * @return the list of notifications */
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 16.4K bytes - Viewed (0) -
src/main/java/jcifs/SmbTransportPool.java
/** * This is an internal API for managing pools of SMB connections * * @author mbechler * * <p>This interface is intended for internal use.</p> */ public interface SmbTransportPool { /** * Gets an SMB transport connection to the specified server. * * @param tf the CIFS context to use * @param name the server name or address * @param port the port numberRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java
} /** * Gets an access result for the specified session and URL. * * @param sessionId the session ID * @param url the URL * @return the access result or null if not found */ @Override public AccessResultImpl<Long> getAccessResult(final String sessionId, final String url) { return dataHelper.getAccessResultMap(sessionId).get(url); } /**Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 6.9K bytes - Viewed (0)