Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 77 for requestKind (0.29 sec)

  1. pkg/kubelet/cm/devicemanager/manager_test.go

    			expectedContainerOptsLen:  []int{3, 2, 2},
    			expectedAllocatedResName1: 2,
    			expectedAllocatedResName2: 1,
    			expErr:                    nil,
    		},
    		{
    			description:               "Requesting to create a pod without enough resources should fail",
    			testPod:                   testPods[1],
    			expectedContainerOptsLen:  nil,
    			expectedAllocatedResName1: 2,
    			expectedAllocatedResName2: 1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
  2. pilot/pkg/model/telemetry_logging.go

    			"x_forwarded_for":                   {Kind: &structpb.Value_StringValue{StringValue: "%REQ(X-FORWARDED-FOR)%"}},
    			"user_agent":                        {Kind: &structpb.Value_StringValue{StringValue: "%REQ(USER-AGENT)%"}},
    			"request_id":                        {Kind: &structpb.Value_StringValue{StringValue: "%REQ(X-REQUEST-ID)%"}},
    			"authority":                         {Kind: &structpb.Value_StringValue{StringValue: "%REQ(:AUTHORITY)%"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. pkg/security/security.go

    )
    
    const (
    	BearerTokenPrefix = "Bearer "
    
    	K8sTokenPrefix = "Istio "
    
    	// CertSigner info
    	CertSigner = "CertSigner"
    
    	// ImpersonatedIdentity declares the identity we are requesting a certificate on behalf of.
    	// This is constrained to only allow identities in CATrustedNodeAccounts, and only to impersonate identities
    	// on their node.
    	ImpersonatedIdentity = "ImpersonatedIdentity"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

                result.assertTasksExecuted(':c')
            }
    
            where:
            taskDisablingStatement << ['a.enabled = false', 'a.onlyIf {false}']
        }
    
        @ToBeImplemented
        void 'requesting to run finalizer task before finalized results in a circular dependency failure'() {
            setupProject()
    
            expect:
            2.times {
                // TODO - should fail
                succeeds 'b', 'a'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Stream.kt

       *     not yet been sent.
       */
      fun getSink(): Sink {
        this.withLock {
          check(hasResponseHeaders || isLocallyInitiated) {
            "reply before requesting the sink"
          }
        }
        return sink
      }
    
      /**
       * Abnormally terminate this stream. This blocks until the `RST_STREAM` frame has been
       * transmitted.
       */
      @Throws(IOException::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  6. src/compress/flate/deflate.go

    	index         int
    	window        []byte
    	windowEnd     int
    	blockStart    int  // window index where current tokens start
    	byteAvailable bool // if true, still need to process window[index-1].
    
    	sync bool // requesting flush
    
    	// queued output tokens
    	tokens []token
    
    	// deflate state
    	length         int
    	offset         int
    	maxInsertIndex int
    	err            error
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  7. cmd/kubelet/app/options/options.go

    	fs.BoolVar(&c.ServerTLSBootstrap, "rotate-server-certificates", c.ServerTLSBootstrap, "Auto-request and rotate the kubelet serving certificates by requesting new certificates from the kube-apiserver when the certificate expiration approaches. Requires the RotateKubeletServerCertificate feature gate to be enabled, and approval of the submitted CertificateSigningRequest objects.")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:05 UTC 2024
    - 41.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/internal/component/ResolutionFailureHandlerIntegrationTest.groovy

                        // We need to match the "myElements" configuration, then the AV will look at its variants
                        attributes.attribute(color, "blue")
                        // Without requesting this special attribute that mismatches the derived value of "jar", we would get a successful result that pulls implicit.jar
                        attributes.attribute(artifactType, "dll")
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 45K bytes
    - Viewed (0)
  9. pilot/pkg/xds/delta.go

    	if w == nil {
    		return nil
    	}
    	gen := s.findGenerator(w.TypeUrl, con)
    	if gen == nil {
    		return nil
    	}
    	t0 := time.Now()
    
    	originalW := w
    	// If delta is set, client is requesting new resources or removing old ones. We should just generate the
    	// new resources it needs, rather than the entire set of known resources.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  10. cmd/object-handlers.go

    			encodedErrorResponse := encodeResponse(APIErrorResponse{
    				Code:       serr.ErrorCode(),
    				Message:    serr.ErrorMessage(),
    				BucketName: bucket,
    				Key:        object,
    				Resource:   r.URL.Path,
    				RequestID:  w.Header().Get(xhttp.AmzRequestID),
    				HostID:     globalDeploymentID(),
    			})
    			writeResponse(w, serr.HTTPStatusCode(), encodedErrorResponse, mimeXML)
    		} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top