Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 147 for exit_node (0.2 sec)

  1. cni/pkg/repair/repaircontroller.go

    	matchExitCode := func(state *corev1.ContainerStateTerminated) bool {
    		// If we are filtering on init container exit code and the termination message does not match, exit
    		if ec := c.cfg.InitExitCode; ec == 0 || ec == int(state.ExitCode) {
    			return true
    		}
    		return false
    	}
    
    	// Only check pods that have the sidecar annotation; the rest can be
    	// ignored.
    	if c.cfg.SidecarAnnotation != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. src/os/exec_windows.go

    	if e != nil {
    		return nil, NewSyscallError("GetProcessTimes", e)
    	}
    	defer p.Release()
    	return &ProcessState{p.Pid, syscall.WaitStatus{ExitCode: ec}, &u}, nil
    }
    
    func (p *Process) signal(sig Signal) error {
    	handle, status := p.handleTransientAcquire()
    	switch status {
    	case statusDone:
    		return ErrProcessDone
    	case statusReleased:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. src/runtime/security_test.go

    	go func() {
    		io.Copy(b, pr)
    		pr.Close()
    		done <- true
    	}()
    	ps, err := proc.Wait()
    	if err != nil {
    		t.Fatal(err)
    	}
    	pw.Close()
    	<-done
    	output := b.String()
    
    	if ps.ExitCode() == 99 {
    		t.Skip("binary wasn't setuid (uid == euid), unable to effectively test")
    	}
    
    	expected := "GOTRACEBACK=none\n"
    	if output != expected {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 18:10:14 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. src/testing/testing.go

    		if anyFailed {
    			fmt.Print(chatty.prefix(), "FAIL\n")
    			m.exitCode = 1
    			return
    		}
    	}
    
    	fuzzingOk := runFuzzing(m.deps, m.fuzzTargets)
    	if !fuzzingOk {
    		fmt.Print(chatty.prefix(), "FAIL\n")
    		if *isFuzzWorker {
    			m.exitCode = fuzzWorkerExitCode
    		} else {
    			m.exitCode = 1
    		}
    		return
    	}
    
    	m.exitCode = 0
    	if !*isFuzzWorker {
    		fmt.Print(chatty.prefix(), "PASS\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_windows.go

    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func ExitProcess(exitcode uint32) {
    	Syscall(procExitProcess.Addr(), 1, uintptr(exitcode), 0, 0)
    	return
    }
    
    func FindClose(handle Handle) (err error) {
    	r1, _, e1 := Syscall(procFindClose.Addr(), 1, uintptr(handle), 0, 0)
    	if r1 == 0 {
    		err = errnoErr(e1)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  6. pkg/kubelet/runonce.go

    		return nil, fmt.Errorf("unable to get status for pod %q: %v", format.Pod(pod), err)
    	}
    	var containerNames []string
    	for _, cs := range status.ContainerStatuses {
    		if cs.State != kubecontainer.ContainerStateRunning && cs.ExitCode != 0 {
    			containerNames = append(containerNames, cs.Name)
    		}
    	}
    	return containerNames, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Aug 04 06:56:50 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller_test.go

    								State: v1.ContainerState{
    									Terminated: &v1.ContainerStateTerminated{
    										ExitCode: 5,
    									},
    								},
    							},
    							{
    								Name: "main-container",
    								State: v1.ContainerState{
    									Terminated: &v1.ContainerStateTerminated{
    										ExitCode:   42,
    										FinishedAt: testFinishedAt,
    									},
    								},
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  8. api/go1.12.txt

    pkg os, const ModeType = 2401763328
    pkg os, func UserHomeDir() (string, error)
    pkg os, method (*File) SyscallConn() (syscall.RawConn, error)
    pkg os, method (*ProcessState) ExitCode() int
    pkg os/exec, method (ExitError) ExitCode() int
    pkg reflect, method (*MapIter) Key() Value
    pkg reflect, method (*MapIter) Next() bool
    pkg reflect, method (*MapIter) Value() Value
    pkg reflect, method (Value) MapRange() *MapIter
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 02 21:21:53 UTC 2019
    - 13.5K bytes
    - Viewed (0)
  9. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                return getCanonicalPath(path.getParent()).resolve(path.getFileName());
            }
        }
    
        static class ExitException extends Exception {
            int exitCode;
    
            ExitException(int exitCode) {
                this.exitCode = exitCode;
            }
        }
    
        //
        // Customizations available via the CLI
        //
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  10. pkg/controller/job/indexed_job_utils_test.go

    				Phase: v1.PodFailed,
    				ContainerStatuses: []v1.ContainerStatus{
    					{
    						State: v1.ContainerState{
    							Terminated: &v1.ContainerStateTerminated{
    								ExitCode: 3,
    							},
    						},
    					},
    				},
    			}).index("0").trackingFinalizer().Pod,
    			wantResult: true,
    		},
    		"matching FailIndex pod failure policy; JobPodFailurePolicy disabled": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
Back to top