Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Skippable (0.56 sec)

  1. 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)
  2. 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)
  3. 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)
Back to top