Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 120 for Exceeded (0.15 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskTimeoutIntegrationTest.groovy

            and:
            with(result.groupedOutput.task(":block")) {
                assertOutputContains("Requesting stop of task ':block' as it has exceeded its configured timeout of 500ms.")
            }
    
            and:
            taskLogging(":block") == [
                "Requesting stop of task ':block' as it has exceeded its configured timeout of 500ms."
            ]
        }
    
        def "additional logging is emitted when task is slow to stop"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/testing/internal/util/RetryUtil.groovy

                    return retryCount
                } catch (Throwable e) {
                    lastException = e
                    Thread.sleep(waitMsBetweenRetries)
                }
            }
    
            // Retry count exceeded, throwing last exception
            throw lastException
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. 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);
            }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/defaulting/validation_test.go

    			if err != nil {
    				t.Errorf("unexpected error: %v", err)
    			}
    
    			for _, valErr := range allErrs {
    				t.Errorf("unexpected error: %v", valErr)
    			}
    
    			// cost budget exceeded for the first validation rule
    			allErrs, err, _ = validate(ctx, field.NewPath("test"), ss, ss, f, false, false, 0)
    			meet := 0
    			for _, er := range allErrs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/TimeoutStep.java

                    //noinspection ResultOfMethodCallIgnored
                    Thread.interrupted();
                    //noinspection ThrowFromFinallyBlock
                    throw new GradleException("Timeout has been exceeded");
                }
            }
        }
    
        private R executeWithoutTimeout(UnitOfWork work, C context) {
            return delegate.execute(work, context);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. pkg/controller/volume/attachdetach/config/types.go

    	// wait between successive executions. Is set to 60 sec by default.
    	ReconcilerSyncLoopPeriod metav1.Duration
    	// DisableForceDetachOnTimeout disables force detach when the maximum unmount
    	// time is exceeded. Is false by default, and thus force detach on unmount is
    	// enabled.
    	DisableForceDetachOnTimeout bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 18:31:52 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. src/internal/trace/mud.go

    	}
    
    	// Traverse edges in order computing a cumulative sum.
    	csum, rate, prevX := 0.0, 0.0, 0.0
    	for _, e := range d.sorted {
    		newCsum := csum + (e.x-prevX)*rate
    		if newCsum >= y {
    			// y was exceeded between the previous edge
    			// and this one.
    			if rate == 0 {
    				// Anywhere between prevX and
    				// e.x will do. We return e.x
    				// because that takes care of
    				// the y==0 case naturally.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/controller.go

    		if allowed, exceeded := quota.LessThanOrEqual(maskedNewUsage, resourceQuota.Status.Hard); !allowed {
    			failedRequestedUsage := quota.Mask(requestedUsage, exceeded)
    			failedUsed := quota.Mask(resourceQuota.Status.Used, exceeded)
    			failedHard := quota.Mask(resourceQuota.Status.Hard, exceeded)
    			return nil, admission.NewForbidden(a,
    				fmt.Errorf("exceeded quota: %s, requested: %s, used: %s, limited: %s",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    						hasCostErr = true
    						break
    					}
    				}
    				if !hasCostErr {
    					t.Errorf("Expected per call limit exceeded error but didn't get one")
    				}
    			}
    			if tc.exceedBudget && err == nil {
    				t.Errorf("Expected RuntimeCELCostBudge to be exceeded but got nil")
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  10. src/net/net.go

    	// and pending I/O, not just the immediately following call to
    	// Read or Write. After a deadline has been exceeded, the
    	// connection can be refreshed by setting a deadline in the future.
    	//
    	// If the deadline is exceeded a call to Read or Write or to other
    	// I/O methods will return an error that wraps os.ErrDeadlineExceeded.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 26.8K bytes
    - Viewed (0)
Back to top