Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for clen (0.04 sec)

  1. pkg/apis/core/validation/validation.go

    func validateFCVolumeSource(fc *core.FCVolumeSource, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    	if len(fc.TargetWWNs) < 1 && len(fc.WWIDs) < 1 {
    		allErrs = append(allErrs, field.Required(fldPath.Child("targetWWNs"), "must specify either targetWWNs or wwids, but not both"))
    	}
    
    	if len(fc.TargetWWNs) != 0 && len(fc.WWIDs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	//
    	// ptr, len, cap := s
    	// len += 3
    	// if uint(len) > uint(cap) {
    	//     ptr, len, cap = growslice(ptr, len, cap, 3, typ)
    	//     Note that len is unmodified by growslice.
    	// }
    	// // with write barriers, if needed:
    	// *(ptr+(len-3)) = e1
    	// *(ptr+(len-2)) = e2
    	// *(ptr+(len-1)) = e3
    	// return makeslice(ptr, len, cap)
    	//
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top