Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 570 for index (0.13 sec)

  1. test/for.go

    	for i = range [5]struct{}{} {
    	}
    	assertequal(i, 4, " incorrect index value after range loop")
    
    	i = 0
    	var a1 [5]struct{}
    	for i = range a1 {
    		a1[i] = struct{}{}
    	}
    	assertequal(i, 4, " incorrect index value after array with zero size elem range clear")
    
    	i = 0
    	var a2 [5]int
    	for i = range a2 {
    		a2[i] = 0
    	}
    	assertequal(i, 4, " incorrect index value after array range clear")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 10 16:36:41 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. src/net/interface_freebsd.go

    	if err != nil {
    		return nil, err
    	}
    	msgs, err := route.ParseRIB(syscall.NET_RT_IFMALIST, rib)
    	if err != nil {
    		return nil, err
    	}
    	ifmat := make([]Addr, 0, len(msgs))
    	for _, m := range msgs {
    		switch m := m.(type) {
    		case *route.InterfaceMulticastAddrMessage:
    			if ifi.Index != m.Index {
    				continue
    			}
    			var ip IP
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 02 16:05:55 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/buildtag/buildtag.go

    			check.goBuildLine(pos, text)
    		}
    	}
    	if strings.HasPrefix(text, "/*") {
    		if i := strings.Index(text, "\n"); i >= 0 {
    			// multiline /* */ comment - process interior lines
    			check.inStar = true
    			i++
    			pos += token.Pos(i)
    			text = text[i:]
    			for text != "" {
    				i := strings.Index(text, "\n")
    				if i < 0 {
    					i = len(text)
    				} else {
    					i++
    				}
    				line := text[:i]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modindex/write.go

    package modindex
    
    import (
    	"cmd/go/internal/base"
    	"encoding/binary"
    	"go/token"
    	"sort"
    )
    
    const indexVersion = "go index v2" // 11 bytes (plus \n), to align uint32s in index
    
    // encodeModuleBytes produces the encoded representation of the module index.
    // encodeModuleBytes may modify the packages slice.
    func encodeModuleBytes(packages []*rawPackage) []byte {
    	e := newEncoder()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 10:10:21 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/cases/trieval.go

    // stores some basic case data and an index into an array with additional data.
    //
    // The per-rune values have the following format:
    //
    //	if (exception) {
    //	  15..4  unsigned exception index
    //	} else {
    //	  15..8  XOR pattern or index to XOR pattern for case mapping
    //	         Only 13..8 are used for XOR patterns.
    //	      7  inverseFold (fold to upper, not to lower)
    //	      6  index: interpret the XOR pattern as an index
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. src/mime/mediatype.go

    			offset := 0
    			for index := 0; index < len(value); index++ {
    				ch := value[index]
    				// {RFC 2231 section 7}
    				// attribute-char := <any (US-ASCII) CHAR except SPACE, CTLs, "*", "'", "%", or tspecials>
    				if ch <= ' ' || ch >= 0x7F ||
    					ch == '*' || ch == '\'' || ch == '%' ||
    					isTSpecial(rune(ch)) {
    
    					b.WriteString(value[offset:index])
    					offset = index + 1
    
    					b.WriteByte('%')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. src/strconv/bytealg_bootstrap.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build compiler_bootstrap
    
    package strconv
    
    // index returns the index of the first instance of c in s, or -1 if missing.
    func index(s string, c byte) int {
    	for i := 0; i < len(s); i++ {
    		if s[i] == c {
    			return i
    		}
    	}
    	return -1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 401 bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/util/workloadinstances/selector.go

    	}
    }
    
    // FindAllInIndex returns a list of workload instances in the index
    // that match given predicate.
    //
    // The returned list is not ordered.
    func FindAllInIndex(index Index, predicate func(*model.WorkloadInstance) bool) []*model.WorkloadInstance {
    	var instances []*model.WorkloadInstance
    	index.ForEach(func(instance *model.WorkloadInstance) {
    		if predicate(instance) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 07 04:26:56 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  9. src/syscall/ztypes_freebsd_amd64.go

    	Addrs     int32
    	Flags     int32
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Metric    int32
    }
    
    type IfmaMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Addrs     int32
    	Flags     int32
    	Index     uint16
    	Pad_cgo_0 [2]byte
    }
    
    type IfAnnounceMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Index   uint16
    	Name    [16]int8
    	What    uint16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 8K bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/crypto/internal/alias/alias.go

    // corresponding) index. The memory beyond the slice length is ignored.
    func AnyOverlap(x, y []byte) bool {
    	return len(x) > 0 && len(y) > 0 &&
    		uintptr(unsafe.Pointer(&x[0])) <= uintptr(unsafe.Pointer(&y[len(y)-1])) &&
    		uintptr(unsafe.Pointer(&y[0])) <= uintptr(unsafe.Pointer(&x[len(x)-1]))
    }
    
    // InexactOverlap reports whether x and y share memory at any non-corresponding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top