Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for checkIn (0.32 sec)

  1. ChangeLog.md

    - [`KT-29878`](https://youtrack.jetbrains.com/issue/KT-29878) Smartcasts from type check or null check don't work if explicit true check as reference equality is used
    - [`KT-29936`](https://youtrack.jetbrains.com/issue/KT-29936) Smartcasts don't work if comparing with return value of some function and explicit true/false check is used
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  2. pkg/apis/core/validation/validation.go

    	// spec only has a few fields, so check the ones we don't allow changing
    	//  1. PodCIDRs - immutable after first set - checked above
    	//  2. ProviderID - immutable after first set - checked above
    	//  3. Unschedulable - allowed to change
    	//  4. Taints - allowed to change
    	//  5. ConfigSource - allowed to change (and checked above)
    	//  6. DoNotUseExternalID - immutable - checked above
    
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    				...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    				i := s.expr(n.Index)
    				if bound == 0 {
    					// Bounds check will never succeed.  Might as well
    					// use constants for the bounds check.
    					z := s.constInt(types.Types[types.TINT], 0)
    					s.boundsCheck(z, z, ssa.BoundsIndex, false)
    					// The return value won't be live, return junk.
    					// But not quite junk, in case bounds checks are turned off. See issue 48092.
    					return s.zeroVal(n.Type())
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1_openapi.json

                "type": "string"
              },
              "warning": {
                "default": "",
                "description": "The content of type checking information in a human-readable form. Each line of the warning contains the type that the expression is checked against, followed by the type check error from the compiler.",
                "type": "string"
              }
            },
            "required": [
              "fieldRef",
              "warning"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 388.1K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.8.md

    * `kubeadm init` and `kubeadm join` invocations on newly installed systems can encounter a `/var/lib/kubelet is not empty` message during pre-flight checks that prevents setup. If this is the only pre-flight failure, it can be safely ignored with `--skip-preflight-checks`.
    
    For more information, see [#53356](https://issue.k8s.io/53356#issuecomment-333748618).
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.27.md

    - `ValidatingAdmissionPolicy` now provides a status field that contains results of type checking the validation expression.
      The type checking is fully informational, and the behavior of the policy is unchanged. ([#115668](https://github.com/kubernetes/kubernetes/pull/115668), [@jiahuif](https://github.com/jiahuif))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.24.md

    - Updating kubelet permissions check for Windows nodes to see if process is elevated instead of checking if process owner is in Administrators group ([#108146](https://github.com/kubernetes/kubernetes/pull/108146), [@marosset](https://github.com/marosset))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 00:02:43 UTC 2023
    - 473.4K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__batch__v1_openapi.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    }
    
    // Probe describes a health check to be performed against a container to determine whether it is
    // alive or ready to receive traffic.
    type Probe struct {
    	// The action taken to determine the health of a container
    	ProbeHandler
    	// Length of time before health checking is activated.  In seconds.
    	// +optional
    	InitialDelaySeconds int32
    	// Length of time before health checking times out.  In seconds.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top