Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 35 for Terminate (0.3 sec)

  1. src/runtime/traceback.go

    // pointer to a struct:
    //
    //	struct {
    //		PC      uintptr // program counter to fetch information for
    //		File    *byte   // file name (NUL terminated)
    //		Lineno  uintptr // line number
    //		Func    *byte   // function name (NUL terminated)
    //		Entry   uintptr // function entry point
    //		More    uintptr // set non-zero if more info for this PC
    //		Data    uintptr // unused by runtime, available for function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.31.md

    ## Changelog since v1.30.0
    
    ## Urgent Upgrade Notes
    
    ### (No, really, you MUST read this before you upgrade)
    
     - Kubelet flag `--keep-terminated-pod-volumes` was removed.  This flag was deprecated in 2017. ([#122082](https://github.com/kubernetes/kubernetes/pull/122082), [@carlory](https://github.com/carlory)) [SIG Apps, Node, Storage and Testing]
     
    ## Changes by Kind
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/Project.java

        /**
         * Executes an external Java process.
         * <p>
         * The given action configures a {@link org.gradle.process.JavaExecSpec}, which is used to launch the process.
         * This method blocks until the process terminates, with its result being returned.
         *
         * @param action The action for configuring the execution.
         * @return the result of the execution
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/options_test.go

    	"--resource-quota-sync-period=10m",
    	"--route-reconciliation-period=30s",
    	"--secondary-node-eviction-rate=0.05",
    	"--service-account-private-key-file=/service-account-private-key",
    	"--terminated-pod-gc-threshold=12000",
    	"--unhealthy-zone-threshold=0.6",
    	"--use-service-account-credentials=true",
    	"--cert-dir=/a/b/c",
    	"--bind-address=192.168.4.21",
    	"--secure-port=10001",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller.go

    			}
    		} else if considerPodFailed || (jobCtx.finishedCondition != nil && !isSuccessCriteriaMetCondition(jobCtx.finishedCondition)) {
    			// When the job is considered finished, every non-terminated pod is considered failed.
    			ix := getCompletionIndex(pod.Annotations)
    			if !jobCtx.uncounted.failed.Has(string(pod.UID)) && (!isIndexed || (ix != unknownCompletionIndex && ix < int(*jobCtx.job.Spec.Completions))) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  6. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    				ContainersToStart:     []int{},
    			},
    			resetStatusFn: func(status *kubecontainer.PodStatus) {
    				m.startupManager.Remove(status.ContainerStatuses[2].ID)
    			},
    		},
    		"restart terminated restartable init container and next init container": {
    			mutatePodFn: func(pod *v1.Pod) { pod.Spec.RestartPolicy = v1.RestartPolicyAlways },
    			mutateStatusFn: func(pod *v1.Pod, status *kubecontainer.PodStatus) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  7. src/testing/testing.go

    // The directory is automatically removed when the test and
    // all its subtests complete.
    // Each subsequent call to t.TempDir returns a unique directory;
    // if the directory creation fails, TempDir terminates the test by calling Fatal.
    func (c *common) TempDir() string {
    	c.checkFuzzFn("TempDir")
    	// Use a single parent directory for all the temporary directories
    	// created by a test, each numbered sequentially.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  8. src/os/os_test.go

    		t.Skip(err)
    	}
    	data, err := ReadFile(name)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(data) == 0 || data[len(data)-1] != '\n' {
    		t.Fatalf("read %s: not newline-terminated: %q", name, data)
    	}
    }
    
    func TestDirFSReadFileProc(t *testing.T) {
    	t.Parallel()
    
    	fsys := DirFS("/")
    	name := "proc/sys/fs/pipe-max-size"
    	if _, err := fs.Stat(fsys, name); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  9. pkg/kubelet/kuberuntime/kuberuntime_container.go

    // containers, we have reduced the number of outstanding init containers still
    // present. This reduces load on the container garbage collector by only
    // preserving the most recent terminated init container.
    func (m *kubeGenericRuntimeManager) pruneInitContainersBeforeStart(ctx context.Context, pod *v1.Pod, podStatus *kubecontainer.PodStatus) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/debug.go

    	pending.startValue = v.ID
    	for i, slot := range state.varSlots[varID] {
    		pending.pieces[i] = curLoc[slot]
    	}
    }
    
    // writePendingEntry writes out the pending entry for varID, if any,
    // terminated at endBlock/Value.
    func (state *debugState) writePendingEntry(varID VarID, endBlock, endValue ID) {
    	pending := state.pendingEntries[varID]
    	if !pending.present {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
Back to top