Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for STARTED (0.32 sec)

  1. pkg/apis/core/types.go

    	// The value will change as readiness probes keep executing. If no readiness
    	// probes are specified, this field defaults to true once the container is
    	// fully started (see Started field).
    	//
    	// The value is typically used to determine whether a container is ready to
    	// accept traffic.
    	Ready bool
    	// RestartCount holds the number of times the container has been restarted.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"restartCount":       "RestartCount holds the number of times the container has been restarted. Kubelet makes an effort to always increment...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types.go

    	// has passed the postStart lifecycle hook. The null value must be treated the
    	// same as false.
    	// +optional
    	Started *bool `json:"started,omitempty" protobuf:"varint,9,opt,name=started"`
    	// AllocatedResources represents the compute resources allocated for this container by the
    	// node. Kubelet sets this value to Container.Resources.Requests upon successful pod admission
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // The value will change as readiness probes keep executing. If no readiness
      // probes are specified, this field defaults to true once the container is
      // fully started (see Started field).
      //
      // The value is typically used to determine whether a container is ready to
      // accept traffic.
      optional bool ready = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "format": "int32",
                "type": "integer"
              },
              "suspend": {
                "description": "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions.  Defaults to false.",
                "type": "boolean"
              },
              "timeZone": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  6. src/net/http/h2_bundle.go

    	writingFrame                bool              // started writing a frame (on serve goroutine or separate)
    	writingFrameAsync           bool              // started a frame on its own goroutine but haven't heard back on wroteFrameCh
    	needsFrameFlush             bool              // last frame write wasn't a flush
    	inGoAway                    bool              // we've started to or sent GOAWAY
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  7. pkg/apis/core/v1/zz_generated.conversion.go

    		return err
    	}
    	out.Ready = in.Ready
    	out.RestartCount = in.RestartCount
    	out.Image = in.Image
    	out.ImageID = in.ImageID
    	out.ContainerID = in.ContainerID
    	out.Started = (*bool)(unsafe.Pointer(in.Started))
    	out.AllocatedResources = *(*core.ResourceList)(unsafe.Pointer(&in.AllocatedResources))
    	out.Resources = (*core.ResourceRequirements)(unsafe.Pointer(in.Resources))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.27.md

    - Performance improvements in `klog` ([#115277](https://github.com/kubernetes/kubernetes/pull/115277), [@pohly](https://github.com/pohly))
    - Pod template `schedulingGates` are now mutable for Jobs that are suspended and have never been started ([#115940](https://github.com/kubernetes/kubernetes/pull/115940), [@ahg-g](https://github.com/ahg-g)) [SIG Apps]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  9. docs/en/docs/release-notes.md

    INFO:     Will watch for changes in these directories: ['/home/user/code/awesomeapp']
    INFO:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    INFO:     Started reloader process [2248755] using WatchFiles
    INFO:     Started server process [2248757]
    INFO:     Waiting for application startup.
    INFO:     Application startup complete.
    ```
    
    ### Refactors
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	// The mode defines the action the controller will take when a pod is detected as broken.
    	// If repairPods is true, the controller will dynamically repair any broken pod by setting up the pod networking configuration even after it has started.
    	// Note the pod will be crashlooping, so this may take a few minutes to become fully functional based on when the retry occurs.
    	// This requires no RBAC privilege, but will require the CNI agent to run as a privileged pod.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
Back to top