Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 147 for exit_node (0.22 sec)

  1. pkg/printers/internalversion/printers_test.go

    							Started: utilpointer.Bool(false),
    						},
    					},
    					ContainerStatuses: []api.ContainerStatus{
    						{
    							Ready:                false,
    							RestartCount:         4,
    							State:                api.ContainerState{Terminated: &api.ContainerStateTerminated{Reason: "Completed", ExitCode: 0}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-10/plexus-classworlds-1.2-alpha-10.jar

    classworlds.conf; protected static final String UBERJAR_CONF_DIR = WORLDS-INF/conf/; protected ClassLoader systemClassLoader; protected String mainClassName; protected String mainRealmName; protected org.codehaus.plexus.classworlds.ClassWorld world; private int exitCode; public void Launcher(); public void setSystemClassLoader(ClassLoader); public ClassLoader getSystemClassLoader(); public int getExitCode(); public void setAppMain(String, String); public String getMainRealmName(); public String getMainClassName();...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 41.5K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/testshared/shared_test.go

    	}
    	return m.Run(), nil
    }
    
    func TestMain(m *testing.M) {
    	log.SetFlags(log.Lshortfile)
    	flag.Parse()
    
    	exitCode, err := testMain(m)
    	if err != nil {
    		log.Fatal(err)
    	}
    	os.Exit(exitCode)
    }
    
    // cloneTestdataModule clones the packages from src/testshared into gopath.
    // It returns the directory within gopath at which the module root is located.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  4. pkg/test/kube/dump.go

    func containerCrashed(pod corev1.Pod, container string) (bool, *corev1.ContainerStateTerminated) {
    	for _, cs := range pod.Status.ContainerStatuses {
    		if cs.Name == container && cs.State.Terminated != nil && cs.State.Terminated.ExitCode != 0 {
    			return true, cs.State.Terminated
    		}
    	}
    	return false, nil
    }
    
    // DumpPodLogs will dump logs from each container in each of the provided pods
    // or all pods in the namespace if none are provided.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/batch/v1/generated.proto

    }
    
    // PodFailurePolicyOnExitCodesRequirement describes the requirement for handling
    // a failed pod based on its container exit codes. In particular, it lookups the
    // .state.terminated.exitCode for each app container and init container status,
    // represented by the .status.containerStatuses and .status.initContainerStatuses
    // fields in the Pod status, respectively. Containers completed with success
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. build/common.sh

      # If the data container exists AND exited successfully, we can use it.
      # Otherwise nuke it and start over.
      local ret=0
      local code=0
    
      code=$(docker inspect \
          -f '{{.State.ExitCode}}' \
          "${KUBE_DATA_CONTAINER_NAME}" 2>/dev/null) || ret=$?
      if [[ "${ret}" == 0 && "${code}" != 0 ]]; then
        kube::build::destroy_container "${KUBE_DATA_CONTAINER_NAME}"
        ret=1
      fi
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    				if container.State.Terminated.Signal != 0 {
    					reason = fmt.Sprintf("Signal:%d", container.State.Terminated.Signal)
    				} else {
    					reason = fmt.Sprintf("ExitCode:%d", container.State.Terminated.ExitCode)
    				}
    			} else if container.Ready && container.State.Running != nil {
    				hasRunning = true
    				readyContainers++
    			}
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods_test.go

    				ExitCode: 0,
    			},
    		},
    	}
    }
    func waitingStateWithNonZeroTermination(cName string) v1.ContainerStatus {
    	return v1.ContainerStatus{
    		Name: cName,
    		State: v1.ContainerState{
    			Waiting: &v1.ContainerStateWaiting{},
    		},
    		LastTerminationState: v1.ContainerState{
    			Terminated: &v1.ContainerStateTerminated{
    				ExitCode: -1,
    			},
    		},
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  9. pkg/kubelet/container/runtime.go

    	// Creation time of the container.
    	CreatedAt time.Time
    	// Start time of the container.
    	StartedAt time.Time
    	// Finish time of the container.
    	FinishedAt time.Time
    	// Exit code of the container.
    	ExitCode int
    	// Name of the image, this also includes the tag of the image,
    	// the expected form is "NAME:TAG".
    	Image string
    	// ID of the image.
    	ImageID string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modfetch/codehost/git.go

    		}
    	}
    
    	_, err = Run(ctx, r.dir, "git", "merge-base", "--is-ancestor", "--", tag, rev)
    	if err == nil {
    		return true, nil
    	}
    	if ee, ok := err.(*RunError).Err.(*exec.ExitError); ok && ee.ExitCode() == 1 {
    		return false, nil
    	}
    	return false, err
    }
    
    func (r *gitRepo) ReadZip(ctx context.Context, rev, subdir string, maxSize int64) (zip io.ReadCloser, err error) {
    	// TODO: Use maxSize or drop it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 22:10:38 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top