Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,162 for index (0.04 sec)

  1. staging/src/k8s.io/api/events/v1/generated.pb.go

    				return err
    			}
    			iNdEx = postIndex
    		default:
    			iNdEx = preIndex
    			skippy, err := skipGenerated(dAtA[iNdEx:])
    			if err != nil {
    				return err
    			}
    			if (skippy < 0) || (iNdEx+skippy) < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if (iNdEx + skippy) > l {
    				return io.ErrUnexpectedEOF
    			}
    			iNdEx += skippy
    		}
    	}
    
    	if iNdEx > l {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 35.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/scheduling/v1/generated.pb.go

    			m.PreemptionPolicy = &s
    			iNdEx = postIndex
    		default:
    			iNdEx = preIndex
    			skippy, err := skipGenerated(dAtA[iNdEx:])
    			if err != nil {
    				return err
    			}
    			if (skippy < 0) || (iNdEx+skippy) < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if (iNdEx + skippy) > l {
    				return io.ErrUnexpectedEOF
    			}
    			iNdEx += skippy
    		}
    	}
    
    	if iNdEx > l {
    		return io.ErrUnexpectedEOF
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/coordination/v1/generated.pb.go

    			if (skippy < 0) || (iNdEx+skippy) < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if (iNdEx + skippy) > l {
    				return io.ErrUnexpectedEOF
    			}
    			iNdEx += skippy
    		}
    	}
    
    	if iNdEx > l {
    		return io.ErrUnexpectedEOF
    	}
    	return nil
    }
    func (m *LeaseList) 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
    - 24K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/coordination/v1beta1/generated.pb.go

    			if (skippy < 0) || (iNdEx+skippy) < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if (iNdEx + skippy) > l {
    				return io.ErrUnexpectedEOF
    			}
    			iNdEx += skippy
    		}
    	}
    
    	if iNdEx > l {
    		return io.ErrUnexpectedEOF
    	}
    	return nil
    }
    func (m *LeaseList) 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
    - 24.1K bytes
    - Viewed (0)
  5. src/index/suffixarray/suffixarray.go

    }
    
    // lookupAll returns a slice into the matching region of the index.
    // The runtime is O(log(N)*len(s)).
    func (x *Index) lookupAll(s []byte) ints {
    	// find matching suffix index range [i:j]
    	// find the first index where s would be the prefix
    	i := sort.Search(x.sa.len(), func(i int) bool { return bytes.Compare(x.at(i), s) >= 0 })
    	// starting at i, find the first index at which s is not a prefix
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. src/container/heap/example_pq_test.go

    	pq[i], pq[j] = pq[j], pq[i]
    	pq[i].index = i
    	pq[j].index = j
    }
    
    func (pq *PriorityQueue) Push(x any) {
    	n := len(*pq)
    	item := x.(*Item)
    	item.index = n
    	*pq = append(*pq, item)
    }
    
    func (pq *PriorityQueue) Pop() any {
    	old := *pq
    	n := len(old)
    	item := old[n-1]
    	old[n-1] = nil  // don't stop the GC from reclaiming the item eventually
    	item.index = -1 // for safety
    	*pq = old[0 : n-1]
    	return item
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:27:36 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authorization/v1beta1/generated.pb.go

    	_ = l
    	if len(m.NonResourceURLs) > 0 {
    		for iNdEx := len(m.NonResourceURLs) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.NonResourceURLs[iNdEx])
    			copy(dAtA[i:], m.NonResourceURLs[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.NonResourceURLs[iNdEx])))
    			i--
    			dAtA[i] = 0x12
    		}
    	}
    	if len(m.Verbs) > 0 {
    		for iNdEx := len(m.Verbs) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Verbs[iNdEx])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/extensions/v1beta1/generated.pb.go

    	_ = l
    	if len(m.PolicyTypes) > 0 {
    		for iNdEx := len(m.PolicyTypes) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.PolicyTypes[iNdEx])
    			copy(dAtA[i:], m.PolicyTypes[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.PolicyTypes[iNdEx])))
    			i--
    			dAtA[i] = 0x22
    		}
    	}
    	if len(m.Egress) > 0 {
    		for iNdEx := len(m.Egress) - 1; iNdEx >= 0; iNdEx-- {
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 293.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.pb.go

    			copy(dAtA[i:], m.Categories[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Categories[iNdEx])))
    			i--
    			dAtA[i] = 0x3a
    		}
    	}
    	if len(m.ShortNames) > 0 {
    		for iNdEx := len(m.ShortNames) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.ShortNames[iNdEx])
    			copy(dAtA[i:], m.ShortNames[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.ShortNames[iNdEx])))
    			i--
    			dAtA[i] = 0x32
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authentication/v1beta1/generated.pb.go

    			dAtA[i] = 0x12
    			i -= len(keysForExtra[iNdEx])
    			copy(dAtA[i:], keysForExtra[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(keysForExtra[iNdEx])))
    			i--
    			dAtA[i] = 0xa
    			i = encodeVarintGenerated(dAtA, i, uint64(baseI-i))
    			i--
    			dAtA[i] = 0x22
    		}
    	}
    	if len(m.Groups) > 0 {
    		for iNdEx := len(m.Groups) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Groups[iNdEx])
    			copy(dAtA[i:], m.Groups[iNdEx])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 47.5K bytes
    - Viewed (0)
Back to top