- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 60 for EXCEEDED (0.04 seconds)
-
internal/event/targetlist.go
}: case <-list.ctx.Done(): list.eventsSkipped.Add(int64(len(list.queue))) return default: list.eventsSkipped.Add(1) err := fmt.Errorf("concurrent target notifications exceeded %d, configured notification target is too slow to accept events for the incoming request rate", maxConcurrentAsyncSend) for id := range targetIDset { reqInfo := &logger.ReqInfo{}
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 9.2K bytes - Click Count (0) -
internal/bucket/lifecycle/lifecycle.go
if now.IsZero() || now.After(expectedExpiry) { oldEnough = true } // > For the deletion to occur, both the <NoncurrentDays> and the <NewerNoncurrentVersions> values must be exceeded. // ref: https://docs.aws.amazon.com/AmazonS3/latest/dev/intro-lifecycle-rules.html#intro-lifecycle-rules-actions if retainedEnough && oldEnough { events = append(events, Event{ Action: DeleteVersionAction,
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Thu Apr 03 06:45:06 GMT 2025 - 18.2K bytes - Click Count (0) -
guava/src/com/google/common/cache/CacheBuilder.java
* * {@code CacheBuilder} builds caches with any combination of the following features: * * <ul> * <li>automatic loading of entries into the cache * <li>least-recently-used eviction when a maximum size is exceeded (note that the cache is * divided into segments, each of which does LRU internally) * <li>time-based expiration of entries, measured since last access or last writeCreated: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Wed Oct 08 18:55:33 GMT 2025 - 51.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/CrawlJob.java
if (exitValue != 0) { final StringBuilder out = new StringBuilder(); if (processTimeout) { out.append("Process is terminated due to ").append(timeout).append(" second exceeded.\n"); } out.append("Exit Code: ").append(exitValue).append("\nOutput:\n").append(it.getOutput()); throw new JobProcessingException(out.toString()); }
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 19.6K bytes - Click Count (0) -
internal/s3select/jstream/decoder.go
// Err returns the most recent decoder error if any, or nil func (d *Decoder) Err() error { return d.err } // MaxDepth will set the maximum recursion depth. // If the maximum depth is exceeded, ErrMaxDepth is returned. // Less than or 0 means no limit (default). func (d *Decoder) MaxDepth(n int) *Decoder { d.maxDepth = n return d }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 13.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/SearchLogHelper.java
final FessConfig fessConfig = ComponentUtil.getFessConfig(); if (clickLogQueue.size() > fessConfig.getLoggingClickMaxQueueSizeAsInteger()) { logger.warn("Click log queue size exceeded: queueSize={}, limit={}. Skipped.", clickLogQueue.size(), fessConfig.getLoggingClickMaxQueueSizeAsInteger()); return; } clickLogQueue.add(clickLog); }
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 26.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java
final String msg = e.getMessage(); if (StringUtil.isNotEmpty(msg) && msg.contains("index.analyze.max_token_count")) { logger.warn("Failed to parse document (token count exceeded): index={}, message={}", index, msg); return Stream.empty(); } throw e; } }).toArray(SuggestItem[]::new);
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 34.4K bytes - Click Count (0) -
src/main/java/jcifs/util/SmbCircuitBreaker.java
if (currentState == State.HALF_OPEN) { int attempts = halfOpenAttempts.incrementAndGet(); if (attempts > halfOpenMaxAttempts) { log.warn("[{}] Exceeded max attempts in HALF_OPEN state, reopening circuit", name); transitionTo(State.OPEN); throw new CircuitOpenException("Circuit breaker '" + name + "' reopened after max attempts");
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 33.4K bytes - Click Count (0) -
src/main/resources/fess_label_en.properties
labels.send_testmail=Send Test Mail labels.backup_configuration=Backup labels.backup_name=Name labels.backup_bulk_file=Bulk File labels.backup_button_upload=Upload labels.process_time_is_exceeded=The search processing time has exceeded the limit. The displayed results may be partial. labels.user_given_name=Given Name labels.givenName=Given Name labels.user_surname=Surname labels.surame=Surname labels.user_mail=Mail labels.mail=Mail
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 44K bytes - Click Count (0) -
cmd/api-errors.go
HTTPStatusCode: http.StatusServiceUnavailable, }, ErrMaxVersionsExceeded: { Code: "MaxVersionsExceeded", Description: "You've exceeded the limit on the number of versions you can create on this object", HTTPStatusCode: http.StatusBadRequest, }, ErrInvalidPrefixMarker: { Code: "InvalidPrefixMarker",Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Wed Apr 16 07:34:24 GMT 2025 - 93K bytes - Click Count (3)