Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 977 for kill (0.04 sec)

  1. pkg/kubelet/pod_workers_test.go

    		return
    	}
    	for i := 0; i < numPods; i++ {
    		uid := types.UID(strconv.Itoa(i))
    		// each pod should be processed two or three times (kill,terminate or create,kill,terminate) because
    		// we buffer pending updates and the pod worker may compress the create and kill
    		syncPodRecords := processed[uid]
    		var match bool
    		grace := int64(30)
    		for _, possible := range [][]syncPodRecord{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 75.6K bytes
    - Viewed (0)
  2. src/syscall/exec_pdeathsig_test.go

    		}
    	}()
    	if err != nil {
    		t.Fatalf("failed to start first child process: %v", err)
    	}
    
    	chldPipe := bufio.NewReader(chldStdout)
    
    	if got, err := chldPipe.ReadString('\n'); got == "start\n" {
    		syscall.Kill(cmd.Process.Pid, syscall.SIGTERM)
    
    		want := "ok\n"
    		if got, err = chldPipe.ReadString('\n'); got != want {
    			t.Fatalf("expected %q, received %q, %v", want, got, err)
    		}
    	} else if got == "skip\n" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 21:23:17 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/types.go

    	// If not specified, the carp's hostname will be set to a system-defined value.
    	// +optional
    	Hostname string
    	// If specified, the fully qualified Carp hostname will be "<hostname>.<subdomain>.<carp namespace>.svc.<cluster domain>".
    	// If not specified, the carp will not have a domainname at all.
    	// +optional
    	Subdomain string
    	// If specified, the carp will be dispatched by specified scheduler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 03 06:34:52 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/running-builds/additional/continuous_builds.adoc

    Changes to files outside the project directory will go undetected and not trigger a build.
    
    [[sec:build_cycles]]
    === Build cycles
    Gradle starts watching for changes just before a task executes.
    If a task modifies its own inputs while executing, Gradle will detect the change and trigger a new build.
    If every time the task executes, the inputs are modified again, the build will be triggered again.
    This isn't unique to continuous build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. hack/update-openapi-spec.sh

    # flags that we use for a production build, which we need for this script.
    make -C "${KUBE_ROOT}" WHAT=cmd/kube-apiserver
    
    function cleanup()
    {
        if [[ -n ${APISERVER_PID-} ]]; then
          kill "${APISERVER_PID}" 1>&2 2>/dev/null
          wait "${APISERVER_PID}" || true
        fi
        unset APISERVER_PID
    
        kube::etcd::cleanup
    
        kube::log::status "Clean up complete"
    }
    
    trap cleanup EXIT SIGINT
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:29:14 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonClientsManager.java

                }
            }
        }
    
        private static final Consumer<WorkerDaemonClient> STOP_CLIENT = WorkerDaemonClient::stop;
        private static final Consumer<WorkerDaemonClient> KILL_CLIENT = WorkerDaemonClient::kill;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. pkg/kubelet/types/pod_update.go

    func (sp SyncPodType) String() string {
    	switch sp {
    	case SyncPodCreate:
    		return "create"
    	case SyncPodUpdate:
    		return "update"
    	case SyncPodSync:
    		return "sync"
    	case SyncPodKill:
    		return "kill"
    	default:
    		return "unknown"
    	}
    }
    
    // IsMirrorPod returns true if the passed Pod is a Mirror Pod.
    func IsMirrorPod(pod *v1.Pod) bool {
    	if pod.Annotations == nil {
    		return false
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 22:26:12 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/example/types.go

    	// If not specified, the pod's hostname will be set to a system-defined value.
    	// +optional
    	Hostname string
    	// If specified, the fully qualified Pod hostname will be "<hostname>.<subdomain>.<pod namespace>.svc.<cluster domain>".
    	// If not specified, the pod will not have a domainname at all.
    	// +optional
    	Subdomain string
    	// If specified, the pod will be dispatched by specified scheduler.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 03 06:34:52 UTC 2019
    - 5.1K bytes
    - Viewed (0)
  9. pkg/kubelet/eviction/types.go

    	IsContainerFsSeparateFromImageFs(ctx context.Context) bool
    }
    
    // KillPodFunc kills a pod.
    // The pod status is updated, and then it is killed with the specified grace period.
    // This function must block until either the pod is killed or an error is encountered.
    // Arguments:
    // pod - the pod to kill
    // status - the desired status to associate with the pod (i.e. why its killed)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/modfile/rule.go

    }
    
    func removeDups(syntax *FileSyntax, exclude *[]*Exclude, replace *[]*Replace) {
    	kill := make(map[*Line]bool)
    
    	// Remove duplicate excludes.
    	if exclude != nil {
    		haveExclude := make(map[module.Version]bool)
    		for _, x := range *exclude {
    			if haveExclude[x.Mod] {
    				kill[x.Syntax] = true
    				continue
    			}
    			haveExclude[x.Mod] = true
    		}
    		var excl []*Exclude
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 18:34:56 UTC 2024
    - 46.5K bytes
    - Viewed (0)
Back to top