- Sort Score
- Result 10 results
- Languages All
Results 521 - 530 of 899 for Assets (0.04 sec)
-
src/main/java/org/codelibs/fess/crawler/transformer/FessFileTransformer.java
} /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(FessFileTransformer.class); /** * Initializes the transformer after dependency injection. * Sets up the Fess configuration and data serializer components. */ @PostConstruct public void init() { if (logger.isDebugEnabled()) { logger.debug("Initialize {}", this.getClass().getSimpleName());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java
} } /** * Gets the new input value for this item. * @return the new input value */ public String getNewInput() { return newInput; } /** * Sets the new input value for this item. * @param newInput the new input value */ public void setNewInput(final String newInput) { this.newInput = newInput; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/EncodingHelper.java
} final String newEnc = encodingMap.get(toLowerCase(enc)); if (StringUtil.isBlank(newEnc)) { return enc; } return newEnc; } /** * Sets the default encoding to use when no mapping is found. * * @param defaultEncoding the default encoding to set * @throws IllegalArgumentException if the default encoding is blank */
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.2K bytes - Viewed (0) -
cmd/bucket-replication.go
meta := make(map[string]string) cs, isMP = oi.decryptChecksums(partNum, h) for k, v := range cs { if k == xhttp.AmzChecksumType { continue } cktype := hash.ChecksumStringToType(k) if cktype.IsSet() { meta[cktype.Key()] = v meta[xhttp.AmzChecksumAlgo] = cktype.String() } } return meta, isMP
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 118K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/FastFallbackTest.kt
} } /** * This test reproduces a crash where OkHttp attempted to use a deferred connection when the call * already had a healthy connection. It sets up a deferred connection by stalling the IPv6 * connect, and it sets up a same-connection retry with [ErrorCode.REFUSED_STREAM]. * * https://github.com/square/okhttp/pull/7190 */ @Test fun preferCallConnectionOverDeferredConnection() {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/GenerateThumbnailJob.java
protected boolean cleanup = false; /** * Default constructor for the GenerateThumbnailJob. */ public GenerateThumbnailJob() { super(); } /** * Sets the number of threads to use for thumbnail generation. * * @param numOfThreads the number of threads * @return this job instance for method chaining */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/FieldUtil.java
} catch (final IllegalAccessException ex) { throw new IllegalAccessRuntimeException(field.getDeclaringClass(), ex); } } /** * Sets the value of the given {@link Field} representing a {@code static} field to the specified new value. * * @param field the field (must not be {@literal null})
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryCacheEntry.java
/** * Gets the cache scope (ALL or IMMEDIATE_CHILDREN) * @return the cache scope */ public DirectoryCacheScope getScope() { return scope; } /** * Sets the cache scope for this directory cache * @param scope the cache scope to set */ public void setScope(DirectoryCacheScope scope) { this.scope = scope; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupRequest.java
final ServerMessageBlock2Request<Smb2SessionSetupResponse> req) { return new Smb2SessionSetupResponse(tc.getConfig()); } /** * Sets whether this request is for session binding * * @param sessionBinding * the sessionBinding to set */ public void setSessionBinding(final boolean sessionBinding) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComQueryInformationResponseTest.java
} /** * Test of constructor, of class SmbComQueryInformationResponse. */ @Test public void testConstructor() { // The constructor sets the command and serverTimeZoneOffset. // We can't directly access serverTimeZoneOffset, but we can verify its effect. assertEquals(ServerMessageBlock.SMB_COM_QUERY_INFORMATION, response.command);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.5K bytes - Viewed (0)