- Sort Score
- Result 10 results
- Languages All
Results 271 - 280 of 314 for WARN (0.03 sec)
-
docs/smb3-features/01-smb3-lease-design.md
try { future.get(5, TimeUnit.SECONDS); // 5 second timeout } catch (TimeoutException e) { // Force lease release if break handling times out releaseLease(key); log.warn("Lease break timeout for key: {}", key); } } ``` ### 10.2 Fallback to Oplocks ```java if (!context.getConfig().isUseLeases() || !session.supports(SMB3_0)) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DataIndexHelper.java
return; } final String sessionId = initParamMap.getAsString(Constants.SESSION_ID); if (StringUtil.isBlank(sessionId)) { logger.warn("Invalid sessionId at {}", dataConfig); return; } final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 18.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java
// Validate security mode flags if ((this.securityMode & ~(Smb2Constants.SMB2_NEGOTIATE_SIGNING_ENABLED | Smb2Constants.SMB2_NEGOTIATE_SIGNING_REQUIRED)) != 0) { log.warn("Server returned unknown security mode flags: 0x{}", Integer.toHexString(this.securityMode)); } bufferIndex += 4; this.dialectRevision = SMBUtil.readInt2(buffer, bufferIndex);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
docs/smb3-features/04-directory-leasing-design.md
} ``` ## 9. Error Handling ### 9.1 Cache Consistency ```java public class CacheConsistencyManager { public void handleInconsistency(String directoryPath, String fileName) { log.warn("Cache inconsistency detected for: {}/{}", directoryPath, fileName); // Invalidate affected cache entries DirectoryCacheEntry entry = leaseManager.getCacheEntry(directoryPath);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 36.2K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/DefaultArtifactResolver.java
artifact.addMetadata(new SnapshotArtifactRepositoryMetadata(artifact, snapshot)); } catch (NumberFormatException e) { logger.warn("Invalid artifact version " + artifact.getVersion() + ": " + e.getMessage()); } } } } } @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 25K bytes - Viewed (0) -
cmd/admin-handlers-idp-ldap.go
lookupResult, targetGroups, err = globalIAMSys.LDAPConfig.LookupUserDN(targetUser) if err != nil { // if not found, check if DN if strings.Contains(err.Error(), "User DN not found for:") { if isDN { // warn user that DNs are not allowed writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErrWithErr(ErrAdminLDAPExpectedLoginName, err), r.URL) } else {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 08 02:46:04 UTC 2025 - 19.2K bytes - Viewed (0) -
cmd/server-main.go
warnings = append(warnings, color.YellowBold("The standard parity is set to 0. This can lead to data loss.")) } for _, warn := range warnings { logger.Warning(warn) } }() region := globalSite.Region() if region == "" { region = "us-east-1" } bootstrapTrace("globalMinioClient", func() {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue May 27 15:18:36 UTC 2025 - 35.9K bytes - Viewed (4) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
final long maxSearchDocSize = fessConfig.getIndexerMaxSearchDocSizeAsInteger().longValue(); final boolean exceeded = numFound > maxSearchDocSize; if (exceeded) { logger.warn("Max document size is exceeded({}>{}): {}", numFound, fessConfig.getIndexerMaxSearchDocSize(), queryBuilder); } if (numFound > fessConfig.getIndexerMaxResultWindowSizeAsInteger().longValue()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 26.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
throw new CIFSException("Invalid encryption parameters"); } // Check if key rotation is needed (including the current message) if (needsKeyRotation(message.length)) { log.warn("Encryption keys need rotation - will exceed usage limits (bytes: {} + {}, time: {} ms)", bytesEncrypted.get(), message.length, System.currentTimeMillis() - encryptionStartTime);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 35.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java
final int maxPageSize = fessConfig.getPagingSearchPageMaxSizeAsInteger(); final int windowSize = fessConfig.getRankFusionWindowSizeAsInteger(); if (maxPageSize * 2 < windowSize) { logger.warn("rank.fusion.window_size is lower than paging.search.page.max.size. " + "The window size should be 2x more than the page size. ({} * 2 <= {})", maxPageSize, windowSize); this.windowSize = 2 * maxPageSize;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 24.8K bytes - Viewed (0)