Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for isInitialized (0.56 sec)

  1. doc/go_spec.html

    Multiple variables on the left-hand side of a variable declaration initialized
    by single (multi-valued) expression on the right-hand side are initialized
    together: If any of the variables on the left-hand side is initialized, all
    those variables are initialized in the same step.
    </p>
    
    <pre>
    var x = a
    var a, b = f() // a and b are initialized together, before x is initialized
    </pre>
    
    <p>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  2. ChangeLog.md

    - [`KT-67502`](https://youtrack.jetbrains.com/issue/KT-67502) K2: "property must be initialized or be abstract" with try-finally in secondary constructor
    - [`KT-67456`](https://youtrack.jetbrains.com/issue/KT-67456) K2: "property must be initialized or be abstract" depending on constructor declaration order
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.8.md

    * Object quotas are not consistently charged or updated. Specifically, the object count quota does not reliably account for uninitialized objects. Some quotas are charged only when an object is initialized. Others are charged when an object is created, whether it is initialized or not. We plan to fix this issue in a future release.
    
    For more information, see [#53109](https://github.com/kubernetes/kubernetes/issues/53109).
    
    ## Deprecations
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  4. src/net/http/h2_bundle.go

    type http2Framer struct {
    	r         io.Reader
    	lastFrame http2Frame
    	errDetail error
    
    	// countError is a non-nil func that's called on a frame parse
    	// error with some unique error path token. It's initialized
    	// from Transport.CountError or Server.CountError.
    	countError func(errToken string)
    
    	// lastHeaderStream is non-zero if the last frame was an
    	// unfinished HEADERS/CONTINUATION.
    	lastHeaderStream uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
      // +optional
      optional Probe readinessProbe = 11;
    
      // StartupProbe indicates that the Pod has successfully initialized.
      // If specified, no other probes are executed until this completes successfully.
      // If this probe fails, the Pod will be restarted, just as if the livenessProbe failed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"startupProbe":             "StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod's...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// +optional
    	ReadinessProbe *Probe `json:"readinessProbe,omitempty" protobuf:"bytes,11,opt,name=readinessProbe"`
    	// StartupProbe indicates that the Pod has successfully initialized.
    	// If specified, no other probes are executed until this completes successfully.
    	// If this probe fails, the Pod will be restarted, just as if the livenessProbe failed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/core/v1/generated.proto

      // More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes
      // +optional
      optional Probe readinessProbe = 11;
    
      // StartupProbe indicates that the Pod has successfully initialized.
      // If specified, no other probes are executed until this completes successfully.
      // If this probe fails, the Pod will be restarted, just as if the livenessProbe failed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  9. pkg/apis/core/types.go

    	// (for example "containerd").
    	// +optional
    	ContainerID string
    	// Started indicates whether the container has finished its postStart lifecycle hook
    	// and passed its startup probe.
    	// Initialized as false, becomes true after startupProbe is considered
    	// successful. Resets to false when the container is restarted, or if kubelet
    	// loses state temporarily. In both cases, startup probes will run again.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssagen/ssa.go

    		// have been activated.
    		deferBitsTemp := typecheck.TempAt(src.NoXPos, s.curfn, types.Types[types.TUINT8])
    		deferBitsTemp.SetAddrtaken(true)
    		s.deferBitsTemp = deferBitsTemp
    		// For this value, AuxInt is initialized to zero by default
    		startDeferBits := s.entryNewValue0(ssa.OpConst8, types.Types[types.TUINT8])
    		s.vars[deferBitsVar] = startDeferBits
    		s.deferBitsAddr = s.addr(deferBitsTemp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top