Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Skippable (0.11 sec)

  1. cmd/kubeadm/app/phases/upgrade/policy_test.go

    				}
    				// Otherwise, just move on with the next test
    				return
    			}
    
    			if len(actualSkewErrs.Skippable) != rt.expectedSkippableErrs {
    				t.Errorf("failed TestEnforceVersionPolicies\n\texpected skippable errors: %d\n\tgot skippable errors: %d\n%#v\n%#v", rt.expectedSkippableErrs, len(actualSkewErrs.Skippable), *rt.vg, actualSkewErrs)
    			}
    			if len(actualSkewErrs.Mandatory) != rt.expectedMandatoryErrs {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 03:17:05 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/upgrade/apply.go

    		}
    
    		if len(versionSkewErrs.Skippable) > 0 {
    			// Return the error if the user hasn't specified the --force flag
    			if !flags.force {
    				return errors.Errorf("the --version argument is invalid due to these errors:\n\n%v\nCan be bypassed if you pass the --force flag",
    					kubeadmutil.FormatErrMsg(versionSkewErrs.Skippable))
    			}
    			// Soft errors found, but --force was specified
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. src/internal/zstd/zstd.go

    		}
    		return r.wrapError(relativeOffset, err)
    	}
    
    	if magic := binary.LittleEndian.Uint32(r.scratch[:4]); magic != 0xfd2fb528 {
    		if magic >= 0x184d2a50 && magic <= 0x184d2a5f {
    			// This is a skippable frame.
    			r.blockOffset += int64(relativeOffset) + 4
    			if err := r.skipFrame(); err != nil {
    				return err
    			}
    			r.readOneFrame = true
    			goto retry
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 30 04:10:45 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  4. cni/pkg/iptables/iptables.go

    	//
    	// We do this so we can exempt this traffic from ztunnel capture/proxy - otherwise both kube-proxy (legit)
    	// and kubelet (skippable) traffic would have the same srcip once they got to the pod, and would be indistinguishable.
    
    	// CLI: -t mangle -A ISTIO_PRERT -s 169.254.7.127 -p tcp -m tcp --dport <PROBEPORT> -j ACCEPT
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/roundtrip.go

    //	    })
    //	}
    func GlobalNonRoundTrippableTypes() sets.String {
    	return sets.NewString(globalNonRoundTrippableTypes.List()...)
    }
    
    // RoundTripTypesWithoutProtobuf applies the round-trip test to all round-trippable Kinds
    // in the scheme.  It will skip all the GroupVersionKinds in the skip list.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  6. pkg/api/testing/serialization_test.go

    					t.Errorf("expected %v: %v\n%s", gvk, err, string(data))
    					continue
    				}
    			}
    		}
    	}
    }
    
    // TestRoundTripTypes applies the round-trip test to all round-trippable Kinds
    // in all of the API groups registered for test in the legacyscheme package.
    func TestRoundTripTypes(t *testing.T) {
    	seed := rand.Int63()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 19.3K bytes
    - Viewed (0)
Back to top