Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 703 for index (0.1 sec)

  1. src/internal/xcoff/xcoff.go

    	Xlnnoptr uint32 // File pointer to line number
    	Xendndx  uint32 // Symbol table index of next entry
    	Xpad     uint16 // Unused
    }
    type AuxFcn64 struct {
    	Xlnnoptr uint64 // File pointer to line number
    	Xfsize   uint32 // Size of function in bytes
    	Xendndx  uint32 // Symbol table index of next entry
    	Xpad     uint8  // Unused
    	Xauxtype uint8  // Type of auxiliary entry
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go

    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	Metric  int32
    }
    
    type IfmaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Addrs   int32
    	Flags   int32
    	Index   uint16
    	_       [2]byte
    }
    
    type IfmaMsghdr2 struct {
    	Msglen   uint16
    	Version  uint8
    	Type     uint8
    	Addrs    int32
    	Flags    int32
    	Index    uint16
    	Refcount int32
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/dwarfgen/dwinl.go

    }
    
    // Given a src.XPos, return its associated inlining index if it
    // corresponds to something created as a result of an inline, or -1 if
    // there is no inline info. Note that the index returned will refer to
    // the deepest call in the inlined stack, e.g. if you have "A calls B
    // calls C calls D" and all three callees are inlined (B, C, and D),
    // the index for a node from the inlined body of D will refer to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:45:07 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. src/go/types/check_test.go

    		}
    		// len(indices) > 0
    
    		// If there are multiple matching errors, select the one with the closest column position.
    		index := -1 // index of matching error
    		var delta int
    		for _, i := range indices {
    			if d := absDiff(gotPos.Column, errList[i].col); index < 0 || d < delta {
    				index, delta = i, d
    			}
    		}
    
    		// The closest column position must be within expected colDelta.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. internal/dsync/drwmutex.go

    	if ok {
    		netLockCtx = context.WithValue(netLockCtx, mcontext.ContextTraceKey, tc)
    	}
    
    	for index, c := range restClnts {
    		wg.Add(1)
    		// broadcast lock request to all nodes
    		go func(index int, isReadLock bool, c NetLocker) {
    			defer wg.Done()
    
    			g := Granted{index: index}
    			if c == nil {
    				log("dsync: nil locker\n")
    				ch <- g
    				return
    			}
    
    			var locked bool
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  6. src/encoding/json/encode.go

    				tag := sf.Tag.Get("json")
    				if tag == "-" {
    					continue
    				}
    				name, opts := parseTag(tag)
    				if !isValidTag(name) {
    					name = ""
    				}
    				index := make([]int, len(f.index)+1)
    				copy(index, f.index)
    				index[len(f.index)] = i
    
    				ft := sf.Type
    				if ft.Name() == "" && ft.Kind() == reflect.Pointer {
    					// Follow pointer.
    					ft = ft.Elem()
    				}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  7. src/unicode/utf8/utf8_test.go

    			return
    		}
    		if r1 != index[j].r {
    			t.Errorf("DecodeLastRune(%q, %d) = %#04x, want %#04x", s, si, r1, index[j].r)
    			return
    		}
    		if r2 != index[j].r {
    			t.Errorf("DecodeLastRuneInString(%q, %d) = %#04x, want %#04x", s, si, r2, index[j].r)
    			return
    		}
    		si -= size1
    		if si != index[j].index {
    			t.Errorf("DecodeLastRune(%q) index mismatch at %d, want %d", s, si, index[j].index)
    			return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 07 06:17:15 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/text/unicode/bidi/core.go

    // starting at index. This checks the value at index, and will return
    // index if that value is not in validSet.
    func (s *isolatingRunSequence) findRunLimit(index int, validSet ...Class) int {
    loop:
    	for ; index < len(s.types); index++ {
    		t := s.types[index]
    		for _, valid := range validSet {
    			if t == valid {
    				continue loop
    			}
    		}
    		return index // didn't find a match in validSet
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/internal/language/lookup.go

    )
    
    // findIndex tries to find the given tag in idx and returns a standardized error
    // if it could not be found.
    func findIndex(idx tag.Index, key []byte, form string) (index int, err error) {
    	if !tag.FixCase(form, key) {
    		return 0, ErrSyntax
    	}
    	i := idx.Index(key)
    	if i == -1 {
    		return 0, NewValueError(key)
    	}
    	return i, nil
    }
    
    func searchUint(imap []uint16, key uint16) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  10. pkg/kubelet/userns/userns_manager.go

    	}
    
    	_, err = m.parseUserNsFileAndRecord(pod, content)
    	return err
    }
    
    // isSet checks if the specified index is already set.
    func (m *UsernsManager) isSet(v uint32) bool {
    	index := int(v/userNsLength) - m.off
    	if index < 0 || index >= m.len {
    		return true
    	}
    	return m.used.Has(index)
    }
    
    // allocateOne finds a free user namespace and allocate it to the specified pod.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top