Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Skippable (0.13 sec)

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

    			} else {
    				skewErrors.Skippable = append(skewErrors.Skippable, tooLargeKubeadmSkew)
    			}
    		} else {
    			// Upgrading to a higher patch version than kubeadm is ok if the user specifies --force. Not recommended, but possible.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. cmd/untar.go

    	f      format
    }{
    	{
    		header: []byte{0x1f, 0x8b, 8},
    		f:      formatGzip,
    	},
    	{
    		// Zstd default header.
    		header: []byte{0x28, 0xb5, 0x2f, 0xfd},
    		f:      formatZstd,
    	},
    	{
    		// Zstd skippable frame header.
    		header: []byte{0x2a, 0x4d, 0x18},
    		f:      formatZstd,
    	},
    	{
    		// LZ4
    		header: []byte{0x4, 0x22, 0x4d, 0x18},
    		f:      formatLZ4,
    	},
    	{
    		// Snappy/S2 stream
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Apr 04 12:04:40 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. src/internal/zstd/zstd_test.go

    	},
    	{
    		"empty block",
    		"",
    		"\x28\xb5\x2f\xfd\x00\x00\x15\x00\x00\x00\x00",
    	},
    	{
    		"single skippable frame",
    		"",
    		"\x50\x2a\x4d\x18\x00\x00\x00\x00",
    	},
    	{
    		"two skippable frames",
    		"",
    		"\x50\x2a\x4d\x18\x00\x00\x00\x00" +
    			"\x50\x2a\x4d\x18\x00\x00\x00\x00",
    	},
    }
    
    func TestSamples(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:39:21 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  7. 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)
  8. tensorflow/compiler/mlir/tf2xla/api/v2/tf_dialect_to_executor.h

    // the conversion was successful.
    //
    // This also converts the Tensorflow Dialect MLIR into the Tensorflow Executor
    // dialect that is suitable to be exported to GraphDef. Graph -> MLIR -> Graph
    // is not perfectly round trippable, so this API will attempt to make the module
    // exportable and verify some properties of the Tensorflow Executor MLIR that
    // are required by Graph Export. It will return an error if it cannot.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 03 23:19:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tf2xla/api/v1/tf_dialect_to_executor.h

    // Prefer to use the v2 of this API.
    //
    // This also converts the Tensorflow Dialect MLIR into the Tensorflow Executor
    // dialect that is suitable to be exported to GraphDef. Graph -> MLIR -> Graph
    // is not perfectly round trippable, so this API will attempt to make the module
    // exportable and verify some properties of the Tensorflow Executor MLIR that
    // are required by Graph Export. It will return an error if it cannot.
    //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Oct 11 18:45:46 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. src/runtime/debug/mod_test.go

    	f.Add(strip(`
    		go 1.18
    		path example.com/m
    		build CRAZY_ENV="requires\nescaping"
    		`))
    
    	f.Fuzz(func(t *testing.T, s string) {
    		bi, err := debug.ParseBuildInfo(s)
    		if err != nil {
    			// Not a round-trippable BuildInfo string.
    			t.Log(err)
    			return
    		}
    
    		// s2 could have different escaping from s.
    		// However, it should parse to exactly the same contents.
    		s2 := bi.String()
    		bi2, err := debug.ParseBuildInfo(s2)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 09 19:44:03 UTC 2022
    - 1.6K bytes
    - Viewed (0)
Back to top