Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,123 for Terminated (0.15 sec)

  1. pkg/kubelet/kubelet_pods_test.go

    				kubelet_working_pods{config="runtime_only",lifecycle="terminating",static="unknown"} 0
    				`,
    			},
    		},
    		{
    			name:           "pod that could not start and is not in config is force terminated without runtime during pod cleanup",
    			wantErr:        false,
    			terminatingErr: errors.New("unable to terminate"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/change_test.go

    	time.Sleep(5 * time.Second)
    
    	// Update CRD and ensure that all watches are gracefully terminated.
    	updateCRD()
    
    	drained := make(chan struct{})
    	go func() {
    		defer close(drained)
    		wg.Wait()
    	}()
    
    	select {
    	case <-drained:
    	case <-time.After(wait.ForeverTestTimeout):
    		t.Fatal("timed out waiting for watchers to be terminated")
    	}
    
    	stopChan := make(chan struct{})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:59:03 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/runtime/testdata/testwinsignal/main.go

    	//
    	// (In https://go.dev/issue/41884 the handler returned immediately,
    	// which caused Windows to terminate the program before the goroutine
    	// that received the SIGTERM had a chance to actually clean up.)
    	time.Sleep(time.Second)
    
    	// Print the signal's name: "terminated" makes the test succeed.
    	fmt.Println(sig)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 07:37:53 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  4. pkg/envoy/agent.go

    		log.Warnf("Error in invoking drain listeners endpoint: %v", err)
    	}
    	// If we drained now, skip draining + waiting later
    	// When we terminate, we will instead exit immediately
    	a.DisableDraining()
    }
    
    // terminate starts exiting the process.
    func (a *Agent) terminate() {
    	log.Infof("Agent draining Proxy for termination")
    	if a.skipDrain.Load() {
    		log.Infof("Agent already drained, exiting immediately")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 24 16:04:22 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/fake_kuberuntime_manager.go

    	f.req = req
    	return nil, f.err
    }
    
    type fakePodStateProvider struct {
    	terminated map[types.UID]struct{}
    	removed    map[types.UID]struct{}
    }
    
    func newFakePodStateProvider() *fakePodStateProvider {
    	return &fakePodStateProvider{
    		terminated: make(map[types.UID]struct{}),
    		removed:    make(map[types.UID]struct{}),
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 17:55:59 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. pkg/controller/podgc/metrics/metrics.go

    		},
    		[]string{"namespace", "reason"},
    	)
    )
    
    const (
    	// Possible values for the "reason" label in the above metrics.
    
    	// PodGCReasonTerminated is used when the pod is terminated.
    	PodGCReasonTerminated = "terminated"
    	// PodGCReasonCompleted is used when the pod is terminating and the corresponding node
    	// is not ready and has `node.kubernetes.io/out-of-service` taint.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 18:06:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. test/fixedbugs/issue15611.go

    package p
    
    // These error messages are for the invalid literals on lines 19 and 20:
    
    // ERROR "newline in character literal|newline in rune literal"
    // ERROR "invalid character literal \(missing closing '\)|rune literal not terminated"
    
    const (
    	_ = ''     // ERROR "empty character literal or unescaped ' in character literal|empty rune literal"
    	_ = 'f'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 05 00:40:38 UTC 2020
    - 685 bytes
    - Viewed (0)
  8. pkg/controller/job/backoff_utils.go

    		if check != nil && !check(containerState) {
    			continue
    		}
    		if containerState.State.Terminated == nil ||
    			containerState.State.Terminated.FinishedAt.Time.IsZero() {
    			return nil
    		}
    		if finishTime == nil || finishTime.Before(containerState.State.Terminated.FinishedAt.Time) {
    			finishTime = &containerState.State.Terminated.FinishedAt.Time
    		}
    	}
    	return finishTime
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. src/internal/syscall/windows/reparse_windows.go

    	// this offset must be divided by 2 to get the array index.
    	SubstituteNameOffset uint16
    	// The integer that contains the length, in bytes, of the
    	// substitute name string. If this string is null-terminated,
    	// SubstituteNameLength does not include the Unicode null character.
    	SubstituteNameLength uint16
    	// PrintNameOffset is similar to SubstituteNameOffset.
    	PrintNameOffset uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 07:15:06 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. releasenotes/notes/51429.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 191 bytes
    - Viewed (0)
Back to top