Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 496 for index (0.04 sec)

  1. src/syscall/ztypes_freebsd_arm64.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)
  2. src/cmd/vendor/golang.org/x/text/unicode/norm/forminfo.go

    func (p Properties) isInert() bool {
    	return p.flags&qcInfoMask == 0 && p.ccc == 0
    }
    
    func (p Properties) multiSegment() bool {
    	return p.index >= firstMulti && p.index < endMulti
    }
    
    func (p Properties) nLeadingNonStarters() uint8 {
    	return p.nLead
    }
    
    func (p Properties) nTrailingNonStarters() uint8 {
    	return uint8(p.flags & 0x03)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  3. src/net/main_test.go

    	}
    
    	ifi := loopbackInterface()
    	if ifi != nil {
    		index := fmt.Sprintf("%v", ifi.Index)
    		resolveTCPAddrTests = append(resolveTCPAddrTests, []resolveTCPAddrTest{
    			{"tcp6", "[fe80::1%" + ifi.Name + "]:1", &TCPAddr{IP: ParseIP("fe80::1"), Port: 1, Zone: zoneCache.name(ifi.Index)}, nil},
    			{"tcp6", "[fe80::1%" + index + "]:2", &TCPAddr{IP: ParseIP("fe80::1"), Port: 2, Zone: index}, nil},
    		}...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. src/crypto/md5/gen.go

    func rotate() string {
    	data.a, data.b, data.c, data.d = data.d, data.a, data.b, data.c
    	return "" // no output
    }
    
    func idx(round, index int) int {
    	v := 0
    	switch round {
    	case 1:
    		v = index
    	case 2:
    		v = (1 + 5*index) & 15
    	case 3:
    		v = (5 + 3*index) & 15
    	case 4:
    		v = (7 * index) & 15
    	}
    	return v
    }
    
    func seq(i int) []int {
    	s := make([]int, i)
    	for i := range s {
    		s[i] = i
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/pathelement.go

    	Field = "f"
    
    	// Value indicates that the content of this path element is a field's value
    	Value = "v"
    
    	// Index indicates that the content of this path element is an index in an array
    	Index = "i"
    
    	// Key indicates that the content of this path element is a key value map
    	Key = "k"
    
    	// Separator separates the type of a path element from the contents
    	Separator = ":"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/match.go

    		if err != nil {
    			ct = t
    		}
    		conf := language.Exact
    		for {
    			if index, ok := m.index[ct]; ok {
    				return ct, index, conf
    			}
    			if ct == language.Und {
    				break
    			}
    			ct = ct.Parent()
    			conf = language.High
    		}
    	}
    	return language.Und, 0, language.No
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    	p := strings.Index(s[1:], "-")
    	if p == -1 {
    		return s[1:], ""
    	}
    	p++
    	return s[1:p], s[p:]
    }
    
    // LanguageID returns an index, where 0 <= index < NumCompactTags, for tags
    // for which data exists in the text repository.The index will change over time
    // and should not be stored in persistent storage. If t does not match a compact
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. src/go/internal/typeparams/typeparams.go

    	Indices []ast.Expr // index expressions
    	Rbrack  token.Pos  // position of "]"
    }
    
    func (x *IndexExpr) Pos() token.Pos {
    	return x.Orig.Pos()
    }
    
    func UnpackIndexExpr(n ast.Node) *IndexExpr {
    	switch e := n.(type) {
    	case *ast.IndexExpr:
    		return &IndexExpr{
    			Orig:    e,
    			X:       e.X,
    			Lbrack:  e.Lbrack,
    			Indices: []ast.Expr{e.Index},
    			Rbrack:  e.Rbrack,
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:05 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/net/route/interface_classic.go

    	}
    	m := &InterfaceAddrMessage{
    		Version: int(b[2]),
    		Type:    int(b[3]),
    		Flags:   int(nativeEndian.Uint32(b[8:12])),
    		raw:     b[:l],
    	}
    	if runtime.GOOS == "netbsd" {
    		m.Index = int(nativeEndian.Uint16(b[16:18]))
    	} else {
    		m.Index = int(nativeEndian.Uint16(b[12:14]))
    	}
    	var err error
    	m.Addrs, err = parseAddrs(uint(nativeEndian.Uint32(b[4:8])), parseKernelInetAddr, b[w.bodyOff:])
    	if err != nil {
    		return nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker.go

    	}
    
    	w.lock.Lock()
    	defer w.lock.Unlock()
    	w.updateIndexLocked(identifier, index, 1)
    	return w.forgetWatch(identifier, index)
    }
    
    func (w *watchTracker) updateIndexLocked(identifier *watchIdentifier, index *indexValue, incr int) {
    	if index == nil {
    		w.watchCount[*identifier] += incr
    	} else {
    		// For resources with defined index, for a given watch event we are
    		// only processing the watchers that:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.4K bytes
    - Viewed (0)
Back to top