Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for TooLong (0.21 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/validation/field/errors.go

    	return &Error{ErrorTypeForbidden, field.String(), "", detail}
    }
    
    // TooLong returns a *Error indicating "too long".  This is used to
    // report that the given value is too long.  This is similar to
    // Invalid, but the returned error will not include the too-long
    // value.
    func TooLong(field *Path, value interface{}, maxLength int) *Error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/validation/validation.go

    		}
    		if len(condition.Reason) > maxReasonLen {
    			allErrs = append(allErrs, field.TooLong(fldPath.Child("reason"), condition.Reason, maxReasonLen))
    		}
    	}
    
    	if len(condition.Message) > maxMessageLen {
    		allErrs = append(allErrs, field.TooLong(fldPath.Child("message"), condition.Message, maxMessageLen))
    	}
    
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 01:52:02 UTC 2022
    - 13.5K bytes
    - Viewed (0)
  3. pkg/apis/storage/validation/validation.go

    		allErrs = append(allErrs, field.TooLong(fldPath, metadata, maxAttachedVolumeMetadataSize))
    	}
    	return allErrs
    }
    
    func validateVolumeError(e *storage.VolumeError, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    
    	if e == nil {
    		return allErrs
    	}
    	if len(e.Message) > maxVolumeErrorMessageSize {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 00:47:13 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. src/os/exec/exec_test.go

    	}
    
    	return cmd
    }
    
    func TestWaitInterrupt(t *testing.T) {
    	t.Parallel()
    
    	// tooLong is an arbitrary duration that is expected to be much longer than
    	// the test runs, but short enough that leaked processes will eventually exit
    	// on their own.
    	const tooLong = 10 * time.Minute
    
    	// Control case: with no cancellation and no WaitDelay, we should wait for the
    	// process to exit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  5. src/os/timeout_test.go

    				if err != nil {
    					t.Fatal(err)
    				}
    				defer r.Close()
    				defer w.Close()
    
    				pasvch := make(chan result)
    				go handler(w, pasvch)
    
    				tooLong := 5 * time.Second
    				max := time.NewTimer(tooLong)
    				defer max.Stop()
    				actvch := make(chan result)
    				go func() {
    					t0 := time.Now()
    					if err := r.SetDeadline(t0.Add(timeout)); err != nil {
    						t.Error(err)
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  6. src/archive/tar/common.go

    		// but neither GNU nor BSD tar checks for it.
    		tooLong := len(s) > size
    		allowLongGNU := paxKey == paxPath || paxKey == paxLinkpath
    		if hasNUL(s) || (tooLong && !allowLongGNU) {
    			whyNoGNU = fmt.Sprintf("GNU cannot encode %s=%q", name, s)
    			format.mustNotBe(FormatGNU)
    		}
    		if !isASCII(s) || tooLong {
    			canSplitUSTAR := paxKey == paxPath
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  7. pkg/controlplane/controller/clusterauthenticationtrust/cluster_authentication_trust_controller_test.go

    		client.PrependReactor("update", "configmaps", func(action clienttesting.Action) (handled bool, ret runtime.Object, err error) {
    			return true, nil, apierrors.NewInvalid(schema.GroupKind{Kind: "ConfigMap"}, cm.Name, field.ErrorList{field.TooLong(field.NewPath(""), cm, corev1.MaxSecretSize)})
    		})
    		client.PrependReactor("delete", "configmaps", func(action clienttesting.Action) (handled bool, ret runtime.Object, err error) {
    			return true, nil, nil
    		})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/api/validation/objectmeta.go

    			allErrs = append(allErrs, field.Invalid(fldPath, k, msg))
    		}
    	}
    	if err := ValidateAnnotationsSize(annotations); err != nil {
    		allErrs = append(allErrs, field.TooLong(fldPath, "", TotalAnnotationSizeLimitB))
    	}
    	return allErrs
    }
    
    func ValidateAnnotationsSize(annotations map[string]string) error {
    	var totalSize int64
    	for k, v := range annotations {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 07 03:12:31 UTC 2022
    - 12K bytes
    - Viewed (0)
  9. pkg/apis/certificates/validation/validation.go

    func validateTrustBundle(path *field.Path, in string) field.ErrorList {
    	var allErrors field.ErrorList
    
    	if len(in) > certificates.MaxTrustBundleSize {
    		allErrors = append(allErrors, field.TooLong(path, fmt.Sprintf("<value omitted, len %d>", len(in)), certificates.MaxTrustBundleSize))
    		return allErrors
    	}
    
    	blockDedupe := map[string][]int{}
    
    	rest := []byte(in)
    	var b *pem.Block
    	i := -1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  10. pkg/apis/networking/validation/validation.go

    func validateIngressClassSpec(spec *networking.IngressClassSpec, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if len(spec.Controller) > maxLenIngressClassController {
    		allErrs = append(allErrs, field.TooLong(fldPath.Child("controller"), spec.Controller, maxLenIngressClassController))
    	}
    	allErrs = append(allErrs, validation.IsDomainPrefixedPath(fldPath.Child("controller"), spec.Controller)...)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 07 14:48:01 UTC 2024
    - 31.5K bytes
    - Viewed (0)
Back to top