Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 247 for Exceeded (0.15 sec)

  1. pkg/kubelet/images/helpers.go

    	if ts.limiter.TryAccept() {
    		return ts.ImageService.PullImage(ctx, image, secrets, podSandboxConfig)
    	}
    	return "", fmt.Errorf("pull QPS exceeded")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 05 13:02:13 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  2. internal/ioutil/hardlimitreader.go

    // by the standard library.
    package ioutil
    
    import (
    	"errors"
    	"io"
    )
    
    // ErrOverread is returned to the reader when the hard limit of HardLimitReader is exceeded.
    var ErrOverread = errors.New("input provided more bytes than specified")
    
    // HardLimitReader returns a Reader that reads from r
    // but returns an error if the source provides more data than allowed.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 06 02:53:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/grpc_service_unix_test.go

    		},
    		{
    			desc:               "timeout zero but kms-plugin already up - still failure - zero timeout is an invalid value",
    			callTimeout:        0 * time.Second,
    			pluginDelay:        0 * time.Second,
    			kubeAPIServerDelay: 2 * time.Second,
    			wantErr:            "rpc error: code = DeadlineExceeded desc = context deadline exceeded",
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 19:25:52 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/TimeoutStepTest.groovy

            1 * delegate.execute(work, context) >> delegateResult
    
            then:
            1 * timeout.stop() >> true
    
            then:
            def ex = thrown Exception
            ex.message == "Timeout has been exceeded"
            0 * _
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  5. pkg/kubelet/network/dns/dns.go

    		limitsExceeded = true
    	}
    
    	if limitsExceeded {
    		err := fmt.Errorf("Search Line limits were exceeded, some search paths have been omitted, the applied search line is: %s", strings.Join(composedSearch, " "))
    		c.recorder.Event(pod, v1.EventTypeWarning, "DNSConfigForming", err.Error())
    		klog.ErrorS(err, "Search Line limits exceeded")
    	}
    	return composedSearch
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 04 11:37:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/Dns.kt

       * connection to an address fails, OkHttp will retry the connection with the next address until
       * either a connection is made, the set of IP addresses is exhausted, or a limit is exceeded.
       */
      @Throws(UnknownHostException::class)
      fun lookup(hostname: String): List<InetAddress>
    
      companion object {
        /**
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. src/runtime/sigtab_aix.go

    	_SIGTTOU:    {_SigNotify + _SigDefault, "SIGTTOU: background write to tty"},
    	_SIGURG:     {_SigNotify, "SIGURG: urgent condition on socket"},
    	_SIGXCPU:    {_SigNotify, "SIGXCPU: cpu limit exceeded"},
    	_SIGXFSZ:    {_SigNotify, "SIGXFSZ: file size limit exceeded"},
    	_SIGVTALRM:  {_SigNotify, "SIGVTALRM: virtual alarm clock"},
    	_SIGPROF:    {_SigNotify + _SigUnblock, "SIGPROF: profiling alarm clock"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 20:58:16 UTC 2018
    - 11.3K 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