Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,241 for started3 (0.25 sec)

  1. pkg/kubelet/prober/worker_test.go

    	m.prober.exec = fakeExecProber{probe.Failure, nil}
    	msg := "Not started, probe failure, result success"
    	expectContinue(t, w, w.doProbe(ctx), msg)
    	expectResult(t, w, results.Success, msg)
    	// setting started state
    	m.statusManager.SetContainerStartup(w.pod.UID, w.containerID, true)
    	// livenessProbe fails
    	m.prober.exec = fakeExecProber{probe.Failure, nil}
    	msg = "Started, probe failure, result failure"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 23:48:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  2. pkg/kubelet/util/pod_startup_latency_tracker.go

    	if !state.observedRunningTime.IsZero() {
    		// skip, pod already started
    		return
    	}
    
    	if hasPodStartedSLO(pod) {
    		klog.V(3).InfoS("Mark when the pod was running for the first time", "pod", klog.KObj(pod), "rv", pod.ResourceVersion)
    		state.observedRunningTime = p.clock.Now()
    	}
    }
    
    // hasPodStartedSLO, check if for given pod, each container has been started at least once
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 06:09:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. pkg/kubelet/util/pod_startup_latency_tracker_test.go

    func TestSinglePodOneImageDownloadRecorded(t *testing.T) {
    
    	t.Run("single pod; started in 3s, image pulling 100ms", func(t *testing.T) {
    
    		wants := `
    # HELP kubelet_pod_start_sli_duration_seconds [ALPHA] Duration in seconds to start a pod, excluding time to pull images and run init containers, measured from pod creation timestamp to when all its containers are reported as started and observed via watch
    # TYPE kubelet_pod_start_sli_duration_seconds histogram
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 15 06:09:49 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/unicode/norm/composition.go

    	// as soon as a starter is encountered. However, there are some starters,
    	// like Jamo V and T, that can combine with other runes, leaving their
    	// successive non-starters appended to the previous, possibly causing an
    	// overflow. We will therefore consider any rune with a non-zero nLead to
    	// be a non-starter. Note that it always hold that if nLead > 0 then
    	// nLead == nTrail.
    	if n == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/testdata/pod.json

                    "lastState": {},
                    "name": "nginx",
                    "ready": true,
                    "restartCount": 0,
                    "started": true,
                    "state": {
                        "running": {
                            "startedAt": "2021-02-18T09:46:19Z"
                        }
                    }
                }
            ],
            "hostIP": "10.223.96.100",
            "phase": "Running",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 18 15:31:52 UTC 2021
    - 6.4K bytes
    - Viewed (0)
  6. pkg/kubelet/prober/worker.go

    	}
    
    	if c.Started != nil && *c.Started {
    		// Stop probing for startup once container has started.
    		// we keep it running to make sure it will work for restarted container.
    		if w.probeType == startup {
    			return true
    		}
    	} else {
    		// Disable other probes until container has started.
    		if w.probeType != startup {
    			return true
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 27 01:28:06 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/norm/composition.go

    	// as soon as a starter is encountered. However, there are some starters,
    	// like Jamo V and T, that can combine with other runes, leaving their
    	// successive non-starters appended to the previous, possibly causing an
    	// overflow. We will therefore consider any rune with a non-zero nLead to
    	// be a non-starter. Note that it always hold that if nLead > 0 then
    	// nLead == nTrail.
    	if n == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/first-steps.md

    ```
    
    Kopieren Sie dies in eine Datei `main.py`.
    
    Starten Sie den Live-Server:
    
    <div class="termy">
    
    ```console
    $ uvicorn main:app --reload
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    <span style="color: green;">INFO</span>:     Started reloader process [28720]
    <span style="color: green;">INFO</span>:     Started server process [28722]
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 12:16:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorTest.groovy

            1 * processor.started({ it.id == 2 && it.name == 'Gradle test' }, _)
            1 * processor.started({ it.name == 'ok' && it.className == ATestNGClassWithManyMethods.name }, { it.parentId == 2 })
            1 * processor.started({ it.name == 'ok2' && it.className == ATestNGClassWithManyMethods.name }, { it.parentId == 2 })
            0 * processor.started(_, _)
        }
    
        void "executes no tests if none of the included test methods match"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/par/queue_test.go

    	var wg sync.WaitGroup
    	wg.Add(totalWork)
    	started := make([]chan struct{}, totalWork)
    	unblock := make(chan struct{})
    	for i := range started {
    		started[i] = make(chan struct{})
    		i := i
    		q.Add(func() {
    			close(started[i])
    			<-unblock
    			wg.Done()
    		})
    	}
    
    	for i, c := range started {
    		if i < maxActive {
    			<-c // Work item i should be started immediately.
    		} else {
    			select {
    			case <-c:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 24 21:08:46 UTC 2020
    - 1.4K bytes
    - Viewed (0)
Back to top