Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for exit2 (0.06 sec)

  1. cluster/gce/util.sh

    else
      echo "Cannot operate on cluster using master os distro: ${MASTER_OS_DISTRIBUTION}" >&2
      exit 1
    fi
    
    if [[ ${NODE_LOCAL_SSDS:-} -ge 1 ]] && [[ -n ${NODE_LOCAL_SSDS_EXT:-} ]] ; then
      echo -e "${color_red:-}Local SSD: Only one of NODE_LOCAL_SSDS and NODE_LOCAL_SSDS_EXT can be specified at once${color_norm:-}" >&2
      exit 2
    fi
    
    if [[ "${MASTER_OS_DISTRIBUTION}" == "gci" ]]; then
        DEFAULT_GCI_PROJECT=google-containers
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    // SyncTerminatingPod and SyncTerminatedPod. If SyncPod exits without error,
    // then the pod runtime state is in sync with the desired configuration state
    // (pod is running). If SyncPod exits with a transient error, the next
    // invocation of SyncPod is expected to make progress towards reaching the
    // desired state. SyncPod exits with isTerminal when the pod was detected to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

    }
    
    # Sets an EXIT trap.
    # Args:
    #   $1:... : the trap command.
    #
    # NOTE: this function is duplicated in configure.sh, any changes here should be
    # duplicated there as well.
    function log-trap-push {
      local t="${*:1}"
      LOG_TRAP_STACK+=("${t}")
      # shellcheck disable=2064
      trap "${t}" EXIT
    }
    
    # Removes and restores an EXIT trap.
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	gp := getg()
    	notesleep(&gp.m.park)
    	noteclear(&gp.m.park)
    }
    
    // mexit tears down and exits the current thread.
    //
    // Don't call this directly to exit the thread, since it must run at
    // the top of the thread stack. Instead, use gogo(&gp.m.g0.sched) to
    // unwind the stack to the point that exits the thread.
    //
    // It is entered with m.p != nil, so write barriers are allowed. It
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller_test.go

    						Message: "Container x for pod default/mypod-0 failed with exit code 3 matching FailJob rule at index 0",
    					},
    					{
    						Type:    batch.JobFailed,
    						Status:  v1.ConditionTrue,
    						Reason:  batch.JobReasonPodFailurePolicy,
    						Message: "Container x for pod default/mypod-0 failed with exit code 3 matching FailJob rule at index 0",
    					},
    				},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.4.md

    * fix kubectl taint e2e flake: add retries for removing taint ([#33872](https://github.com/kubernetes/kubernetes/pull/33872), [@kevin-wangzefeng](https://github.com/kevin-wangzefeng))
    * portfordwardtester: avoid data loss during send+close+exit ([#37103](https://github.com/kubernetes/kubernetes/pull/37103), [@sttts](https://github.com/sttts))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/package-lock.json

            "object-inspect": "^1.9.0"
          },
          "funding": {
            "url": "https://github.com/sponsors/ljharb"
          }
        },
        "node_modules/signal-exit": {
          "version": "4.0.2",
          "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.0.2.tgz",
          "integrity": "sha512-MY2/qGx4enyjprQnFaZsHib3Yadh3IXyV2C321GY0pjGfVBu4un0uDJkwgdxqO+Rdx8JMT8IfJIRwbYVz3Ob3Q==",
          "dev": true,
          "engines": {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 156K bytes
    - Viewed (0)
  8. src/net/http/server.go

    type response struct {
    	conn             *conn
    	req              *Request // request for this response
    	reqBody          io.ReadCloser
    	cancelCtx        context.CancelFunc // when ServeHTTP exits
    	wroteHeader      bool               // a non-1xx header has been (logically) written
    	wants10KeepAlive bool               // HTTP/1.0 w/ Connection "keep-alive"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    //
    // By default, 'go run' compiles the binary without generating the information
    // used by debuggers, to reduce build time. To include debugger information in
    // the binary, use 'go build'.
    //
    // The exit status of Run is not the exit status of the compiled binary.
    //
    // For more about build flags, see 'go help build'.
    // For more about specifying packages, see 'go help packages'.
    //
    // See also: go build.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. pkg/volume/util/operationexecutor/operation_generator.go

    		// Update actual state of world
    		markVolMountedErr := actualStateOfWorld.MarkVolumeAsUnmounted(
    			volumeToUnmount.PodName, volumeToUnmount.VolumeName)
    		if markVolMountedErr != nil {
    			// On failure, just log and exit
    			klog.Errorf(volumeToUnmount.GenerateErrorDetailed("UnmountVolume.MarkVolumeAsUnmounted failed", markVolMountedErr).Error())
    		}
    
    		return volumetypes.NewOperationContext(nil, nil, migrated)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 101.4K bytes
    - Viewed (0)
Back to top