Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for IsSkip (0.33 sec)

  1. src/cmd/compile/internal/ssagen/ssa.go

    			//      k = nil
    			// }
    			if i == nil {
    				skip |= skipPtr
    				if j == nil {
    					skip |= skipLen
    				}
    				if k == nil {
    					skip |= skipCap
    				}
    			}
    		}
    
    		s.assignWhichMayOverlap(n.X, r, deref, skip, mayOverlap)
    
    	case ir.OIF:
    		n := n.(*ir.IfStmt)
    		if ir.IsConst(n.Cond, constant.Bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.23.md

        - [HorizontalPodAutoscaler v2 graduates to GA](#horizontalpodautoscaler-v2-graduates-to-ga)
        - [Generic Ephemeral Volume feature graduates to GA](#generic-ephemeral-volume-feature-graduates-to-ga)
        - [Skip Volume Ownership change graduates to GA](#skip-volume-ownership-change-graduates-to-ga)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 28 21:06:52 UTC 2023
    - 424.5K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.27.md

    - Scheduler no longer runs the plugin's `Filter` method when its `PreFilter` method returned a Skip status.
      In other words, your `PreFilter`/`Filter` plugin can return a Skip status in `PreFilter` if the plugin does nothing in Filter for that Pod.
      Scheduler skips `NodeAffinity` Filter plugin when `NodeAffinity` Filter plugin has nothing to do with a Pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.21.md

    ### Bug or Regression
    
    - Fix: skip instance not found when decoupling vmss from lb ([#105835](https://github.com/kubernetes/kubernetes/pull/105835), [@nilo19](https://github.com/nilo19)) [SIG Cloud Provider]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 07:03:14 UTC 2022
    - 367.3K bytes
    - Viewed (0)
  5. pkg/apis/core/validation/validation.go

    	}
    	for i, oldStatus := range oldStatuses {
    		// Skip any container that is not terminated
    		if oldStatus.State.Terminated == nil {
    			continue
    		}
    		// Skip any container that failed but is allowed to restart
    		if oldStatus.State.Terminated.ExitCode != 0 && podSpec.RestartPolicy == core.RestartPolicyOnFailure {
    			continue
    		}
    
    		// Skip any restartable init container that is allowed to restart
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    				// total limit is exceeded
    				forbidden("spec.validation.openAPIV3Schema"),
    			},
    		},
    		{
    			name: "skip CEL expression validation when OpenAPIv3 schema is an invalid structural schema",
    			opts: validationOptions{requireStructuralSchema: true},
    			input: apiextensions.CustomResourceValidation{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    	}
    	for _, k := range keys {
    		vv := h[k]
    		k, ascii := http2lowerHeader(k)
    		if !ascii {
    			// Skip writing invalid headers. Per RFC 7540, Section 8.1.2, header
    			// field names have to be ASCII characters (just as in HTTP/1.x).
    			continue
    		}
    		if !http2validWireHeaderFieldName(k) {
    			// Skip it as backup paranoia. Per
    			// golang.org/issue/14048, these should
    			// already be rejected at a higher level.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/static/tailwind/tailwind.css

    /i,"")),super.set(e,t)}};$l.names=["text-emphasis-position"];yw.exports=$l});var vw=v((wI,bw)=>{l();var L_=M(),jl=class extends L_{set(e,t){return e.prop==="text-decoration-skip-ink"&&e.value==="auto"?(e.prop=t+"text-decoration-skip",e.value="ink",e):super.set(e,t)}};jl.names=["text-decoration-skip-ink","text-decoration-skip"];bw.exports=jl});var _w=v((bI,Aw)=>{l();"use strict";Aw.exports={wrap:xw,limit:kw,validate:Sw,test:zl,curry:N_,name:Cw};function xw(i,e,t){var r=e-i;return((t-i)%r+r)%r+i}function...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 357.1K bytes
    - Viewed (1)
  9. CHANGELOG/CHANGELOG-1.30.md

    - Kubeadm: during the preflight check "CreateJob" of "kubeadm upgrade", check if there are no nodes where a Pod can schedule. If there are none, show a warning and skip this preflight check. This can happen in single node clusters where the only node was drained. ([#124570](https://github.com/kubernetes/kubernetes/pull/124570), [@neolit123](https://github.com/neolit123)) [SIG Cluster Lifecycle]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.26.md

    - Kubeadm: added `show-join-command` as a new separate phase at the end of `kubeadm init`. You can skip printing the join information by using `kubeadm init --skip-phases=show-join-command`. Executing only this phase on demand will throw an error because the phase needs dependencies such as bootstrap tokens to be pre-populated. ([#111512](https://github.com/kubernetes/kubernetes/pull/111512),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
Back to top