Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 133 for index (0.11 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.pb.go

    				return ErrInvalidLengthGenerated
    			}
    			if (iNdEx + skippy) > l {
    				return io.ErrUnexpectedEOF
    			}
    			iNdEx += skippy
    		}
    	}
    
    	if iNdEx > l {
    		return io.ErrUnexpectedEOF
    	}
    	return nil
    }
    func (m *CarpList) Unmarshal(dAtA []byte) error {
    	l := len(dAtA)
    	iNdEx := 0
    	for iNdEx < l {
    		preIndex := iNdEx
    		var wire uint64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 57K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.pb.go

    				return ErrInvalidLengthGenerated
    			}
    			if (iNdEx + skippy) > l {
    				return io.ErrUnexpectedEOF
    			}
    			iNdEx += skippy
    		}
    	}
    
    	if iNdEx > l {
    		return io.ErrUnexpectedEOF
    	}
    	return nil
    }
    func (m *PodList) Unmarshal(dAtA []byte) error {
    	l := len(dAtA)
    	iNdEx := 0
    	for iNdEx < l {
    		preIndex := iNdEx
    		var wire uint64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 56.9K bytes
    - Viewed (0)
  3. cmd/erasure-object.go

    			fi := metadata[index]
    			// Assign index when index is initialized
    			if fi.Erasure.Index == 0 {
    				fi.Erasure.Index = index + 1
    			}
    
    			if !fi.IsValid() {
    				return errFileCorrupt
    			}
    			resp, err := disks[index].RenameData(ctx, srcBucket, srcEntry, fi, dstBucket, dstEntry, RenameOptions{})
    			if err != nil {
    				return err
    			}
    			diskVersions[index] = resp.Sign
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  4. src/html/template/exec_test.go

    	{"map[nil]", "{{index .MSI nil}}", "", tVal, false},
    	{"map[``]", "{{index .MSI ``}}", "0", tVal, true},
    	{"map[WRONG]", "{{index .MSI 10}}", "", tVal, false},
    	{"double index", "{{index .SMSI 1 `eleven`}}", "11", tVal, true},
    	{"nil[1]", "{{index nil 1}}", "", tVal, false},
    	{"map MI64S", "{{index .MI64S 2}}", "i642", tVal, true},
    	{"map MI32S", "{{index .MI32S 2}}", "two", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. pkg/apis/flowcontrol/validation/validation_test.go

    			field.Required(field.NewPath("spec").Child("rules").Index(0).Child("subjects").Index(0).Child("serviceAccount"), "serviceAccount is required when subject kind is 'ServiceAccount'"),
    			field.Forbidden(field.NewPath("spec").Child("rules").Index(0).Child("subjects").Index(0).Child("user"), "user is forbidden when subject kind is not 'User'"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 54.7K bytes
    - Viewed (0)
  6. src/index/suffixarray/sais2.go

    	// The first difference is that the rightmost LMS-substring's end index is len(text),
    	// so the caller must pretend that sa[-1] == len(text), as noted above.
    	// The second difference is that the first leftmost LMS-substring start index
    	// does not end an earlier LMS-substring, so as an optimization we can omit
    	// that leftmost LMS-substring start index (the last one we wrote).
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/cmd/link/internal/loader/loader.go

    // objSym represents a symbol in an object file. It is a tuple of
    // the object and the symbol's local index.
    // For external symbols, objidx is the index of l.extReader (extObj),
    // s is its index into the payload array.
    // {0, 0} represents the nil symbol.
    type objSym struct {
    	objidx uint32 // index of the object (in l.objs array)
    	s      uint32 // local index
    }
    
    type nameVer struct {
    	name string
    	v    int
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  8. src/text/template/exec_test.go

    	{"map[nil]", "{{index .MSI nil}}", "", tVal, false},
    	{"map[``]", "{{index .MSI ``}}", "0", tVal, true},
    	{"map[WRONG]", "{{index .MSI 10}}", "", tVal, false},
    	{"double index", "{{index .SMSI 1 `eleven`}}", "11", tVal, true},
    	{"nil[1]", "{{index nil 1}}", "", tVal, false},
    	{"map MI64S", "{{index .MI64S 2}}", "i642", tVal, true},
    	{"map MI32S", "{{index .MI32S 2}}", "two", tVal, true},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 22:23:55 UTC 2024
    - 60.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		if !unicode.IsPrint(r) {
    			errors = append(errors, fmt.Sprintf("must only contain printable UTF-8 characters; non-printable character found at index %d", i))
    			break
    		}
    		if unicode.IsControl(r) {
    			errors = append(errors, fmt.Sprintf("must only contain printable UTF-8 characters; control character found at index %d", i))
    			break
    		}
    	}
    	if !utf8.ValidString(*deprecationWarning) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  10. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    					return nil, statusError(logger, err)
    				}
    				s.informationsForClaim[index].availableOnNode = selector
    			}
    			s.informationsForClaim[index].status = statusForClaim(s.podSchedulingState.schedulingCtx, pod.Spec.ResourceClaims[index].Name)
    
    			if class.StructuredParameters != nil && *class.StructuredParameters {
    				s.informationsForClaim[index].structuredParameters = true
    
    				// Allocation in flight? Better wait for that
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
Back to top