Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 354 for index (0.05 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/complete.go

    	}
    	for i := range v.AnyOf {
    		allErrs = append(allErrs, validateNestedValueValidationCompleteness(&v.AnyOf[i], s, sPath, vPath.Child("anyOf").Index(i), opts)...)
    	}
    	for i := range v.OneOf {
    		allErrs = append(allErrs, validateNestedValueValidationCompleteness(&v.OneOf[i], s, sPath, vPath.Child("oneOf").Index(i), opts)...)
    	}
    
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 18:20:00 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/errors.go

    	check := err.check
    	if check.firstErr != nil {
    		// It is sufficient to look at the first sub-error only.
    		msg := err.desc[0].msg
    		if strings.Index(msg, "invalid operand") > 0 || strings.Index(msg, "invalid type") > 0 {
    			return
    		}
    	}
    
    	if check.conf.Trace {
    		check.trace(err.pos(), "ERROR: %s (code = %d)", err.desc[0].msg, err.code)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 22:06:18 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go

    type IfaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Hdrlen  uint16
    	Index   uint16
    	Tableid uint16
    	Pad1    uint8
    	Pad2    uint8
    	Addrs   int32
    	Flags   int32
    	Metric  int32
    }
    
    type IfAnnounceMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Hdrlen  uint16
    	Index   uint16
    	What    uint16
    	Name    [16]int8
    }
    
    type RtMsghdr struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_mips64.go

    type IfaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Hdrlen  uint16
    	Index   uint16
    	Tableid uint16
    	Pad1    uint8
    	Pad2    uint8
    	Addrs   int32
    	Flags   int32
    	Metric  int32
    }
    
    type IfAnnounceMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Hdrlen  uint16
    	Index   uint16
    	What    uint16
    	Name    [16]int8
    }
    
    type RtMsghdr struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. src/runtime/mpagealloc_64bit.go

    		return summaryRangeToSumAddrRange(level, sumIdxBase, sumIdxLimit)
    	}
    
    	// Find the first inUse index which is strictly greater than base.
    	//
    	// Because this function will never be asked remap the same memory
    	// twice, this index is effectively the index at which we would insert
    	// this new growth, and base will never overlap/be contained within
    	// any existing range.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 03 11:00:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. pkg/test/framework/components/istio/istio.go

    // This regular expression matches list object index selection expression such as
    // abc[100], Tba_a[0].
    var listObjRex = regexp.MustCompile(`^([a-zA-Z]?[a-z_A-Z\d]*)\[([ ]*[\d]+)[ ]*\]$`)
    
    func getConfigValue(path []string, val map[string]*structpb.Value) *structpb.Value {
    	retVal := structpb.NewNullValue()
    	if len(path) > 0 {
    		match := listObjRex.FindStringSubmatch(path[0])
    		// valid list index
    		switch len(match) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 30 17:47:34 UTC 2023
    - 8K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/net/route/route_classic.go

    	if m.Version == 0 {
    		b[2] = rtmVersion
    	} else {
    		b[2] = byte(m.Version)
    	}
    	b[3] = byte(m.Type)
    	nativeEndian.PutUint32(b[8:12], uint32(m.Flags))
    	nativeEndian.PutUint16(b[4:6], uint16(m.Index))
    	nativeEndian.PutUint32(b[16:20], uint32(m.ID))
    	nativeEndian.PutUint32(b[20:24], uint32(m.Seq))
    	attrs, err := marshalAddrs(b[w.bodyOff:], m.Addrs)
    	if err != nil {
    		return nil, err
    	}
    	if attrs > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. src/internal/filepathlite/path.go

    			return FromSlash(originalPath)
    		}
    		return originalPath + "."
    	}
    	rooted := IsPathSeparator(path[0])
    
    	// Invariants:
    	//	reading from path; r is index of next byte to process.
    	//	writing to buf; w is index of next byte to write.
    	//	dotdot is index in buf where .. must stop, either because
    	//		it is the leading slash or it is a leading ../../.. prefix.
    	n := len(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:50 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/nodes_test.go

    		}
    
    		// verify node position with expected position as indicated by @
    		if pos := int(node.Pos().Col()); pos != index+colbase {
    			t.Errorf("pos error: %s: pos = %d, want %d (%s)", src, pos, index+colbase, test.nodetyp)
    			continue
    		}
    	}
    }
    
    func stripAt(s string) (string, int) {
    	if i := strings.Index(s, "@"); i >= 0 {
    		return s[:i] + s[i+1:], i
    	}
    	return s, -1
    }
    
    func typeOf(n Node) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 18:45:06 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go

    	Addrs     int32
    	Flags     int32
    	Metric    int32
    	Index     uint16
    	Pad_cgo_0 [6]byte
    }
    
    type IfAnnounceMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Index   uint16
    	Name    [16]int8
    	What    uint16
    }
    
    type RtMsghdr struct {
    	Msglen    uint16
    	Version   uint8
    	Type      uint8
    	Index     uint16
    	Pad_cgo_0 [2]byte
    	Flags     int32
    	Addrs     int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top