Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for repeats (0.13 sec)

  1. pilot/pkg/model/telemetry_logging.go

    const (
    	// EnvoyTextLogFormat format for envoy text based access logs for Istio 1.9 onwards.
    	// This includes the additional new operator RESPONSE_CODE_DETAILS and CONNECTION_TERMINATION_DETAILS that tells
    	// the reason why Envoy rejects a request.
    	EnvoyTextLogFormat = "[%START_TIME%] \"%REQ(:METHOD)% %REQ(X-ENVOY-ORIGINAL-PATH?:PATH)% " +
    		"%PROTOCOL%\" %RESPONSE_CODE% %RESPONSE_FLAGS% " +
    		"%RESPONSE_CODE_DETAILS% %CONNECTION_TERMINATION_DETAILS% " +
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    		if err := kl.imageManager.GarbageCollect(ctx, beganGC); err != nil {
    			if prevImageGCFailed {
    				klog.ErrorS(err, "Image garbage collection failed multiple times in a row")
    				// Only create an event for repeated failures
    				kl.recorder.Eventf(kl.nodeRef, v1.EventTypeWarning, events.ImageGCFailed, err.Error())
    			} else {
    				klog.ErrorS(err, "Image garbage collection failed once. Stats initialization may not have completed yet")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_test.go

    	}
    }
    
    // testPodAdmitHandler is a lifecycle.PodAdmitHandler for testing.
    type testPodAdmitHandler struct {
    	// list of pods to reject.
    	podsToReject []*v1.Pod
    }
    
    // Admit rejects all pods in the podsToReject list with a matching UID.
    func (a *testPodAdmitHandler) Admit(attrs *lifecycle.PodAdmitAttributes) lifecycle.PodAdmitResult {
    	for _, podToReject := range a.podsToReject {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  4. docs/en/docs/release-notes.md

    ### Fixes
    
    * 🐛 Fix `jsonable_encoder` using `include` and `exclude` parameters for non-Pydantic objects. PR [#2606](https://github.com/tiangolo/fastapi/pull/2606) by [@xaviml](https://github.com/xaviml).
    * 🐛 Fix edge case with repeated aliases names not shown in OpenAPI. PR [#2351](https://github.com/tiangolo/fastapi/pull/2351) by [@klaa97](https://github.com/klaa97).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
Back to top