Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 65 for traces (0.22 sec)

  1. internal/grid/handlers.go

    	handlerTest
    	handlerTest2
    	handlerLast
    )
    
    // handlerPrefixes are prefixes for handler IDs used for tracing.
    // If a handler is not listed here, it will be traced with "grid" prefix.
    var handlerPrefixes = [handlerLast]string{
    	HandlerLockLock:                    lockPrefix,
    	HandlerLockRLock:                   lockPrefix,
    	HandlerLockUnlock:                  lockPrefix,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. docs/en/docs/release-notes.md

        * [Path Parameters and Numeric Validations - Order the parameters as you need, tricks](https://fastapi.tiangolo.com/tutorial/path-params-numeric-validations/#order-the-parameters-as-you-need-tricks)
            * [Better with `Annotated`](https://fastapi.tiangolo.com/tutorial/path-params-numeric-validations/#better-with-annotated)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.31.md

    - Fixes a bug where hard evictions due to resource pressure would let the pod have the full termination grace period, instead of shutting down instantly. This bug also affected force deleted pods. Both cases now get a termination grace period of 1 second. ([#124063](https://github.com/kubernetes/kubernetes/pull/124063), [@olyazavr](https://github.com/olyazavr)) [SIG Node]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  4. pkg/volume/plugins.go

    	GetEventRecorder() record.EventRecorder
    
    	// Returns an interface that should be used to execute subpath operations
    	GetSubpather() subpath.Interface
    }
    
    // VolumePluginMgr tracks registered plugins.
    type VolumePluginMgr struct {
    	mutex                     sync.RWMutex
    	plugins                   map[string]VolumePlugin
    	prober                    DynamicPluginProber
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.27.md

    - Fixed data race in `kube-scheduler` when preemption races with a Pod update. ([#116395](https://github.com/kubernetes/kubernetes/pull/116395), [@alculquicondor](https://github.com/alculquicondor)) [SIG Scheduling]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	}
    	osInterface := &containertest.FakeOS{}
    	manager, err := newFakeKubeRuntimeManager(fakeRuntimeService, fakeImageService, machineInfo, osInterface, &containertest.FakeRuntimeHelper{}, keyring, noopoteltrace.NewTracerProvider().Tracer(""))
    	return fakeRuntimeService, fakeImageService, manager, err
    }
    
    // sandboxTemplate is a sandbox template to create fake sandbox.
    type sandboxTemplate struct {
    	pod         *v1.Pod
    	attempt     uint32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller.go

    	jobStoreSynced cache.InformerSynced
    
    	// A TTLCache of pod creates/deletes each rc expects to see
    	expectations controller.ControllerExpectationsInterface
    
    	// finalizerExpectations tracks the Pod UIDs for which the controller
    	// expects to observe the tracking finalizer removed.
    	finalizerExpectations *uidTrackingExpectations
    
    	// A store of jobs
    	jobLister batchv1listers.JobLister
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    	// be running from a previous execution must be reconciled by the pod worker's sync method.
    	// We must use active pods because that is the set of admitted pods (podManager includes pods
    	// that will never be run, and statusManager tracks already rejected pods).
    	var restartCount, restartCountStatic int
    	for _, desiredPod := range activePods {
    		if _, knownPod := workingPods[desiredPod.UID]; knownPod {
    			continue
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.30.md

    - A new kubelet metric `image_pull_duration_seconds` was added. The metric tracks the duration (in seconds) it takes for an image to be pulled, including the time spent in the waiting queue of image puller. The metric is broken down by bucketed image size. ([#121719](https://github.com/kubernetes/kubernetes/pull/121719), [@ruiwen-zhao](https://...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  10. src/net/http/transport_test.go

    		},
    	}
    	if mode == http2Mode {
    		trace.TLSHandshakeStart = func() { logf("tls handshake start") }
    		trace.TLSHandshakeDone = func(s tls.ConnectionState, err error) {
    			logf("tls handshake done. ConnectionState = %v \n err = %v", s, err)
    		}
    	}
    	if noHooks {
    		// zero out all func pointers, trying to get some path to crash
    		*trace = httptrace.ClientTrace{}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
Back to top