Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 227 for quint8 (0.36 sec)

  1. cmd/kubeadm/app/constants/constants.go

    func EtcdSupportedVersion(supportedEtcdVersion map[uint8]string, versionString string) (etcdVersion *version.Version, warning, err error) {
    	kubernetesVersion, err := version.ParseSemantic(versionString)
    	if err != nil {
    		return nil, nil, err
    	}
    	desiredVersion, etcdStringVersion := uint8(kubernetesVersion.Minor()), ""
    
    	min, max := ^uint8(0), uint8(0)
    	for k, v := range supportedEtcdVersion {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  2. src/reflect/abi.go

    func (a *abiSeq) regAssign(t *abi.Type, offset uintptr) bool {
    	switch Kind(t.Kind()) {
    	case UnsafePointer, Pointer, Chan, Map, Func:
    		return a.assignIntN(offset, t.Size(), 1, 0b1)
    	case Bool, Int, Uint, Int8, Uint8, Int16, Uint16, Int32, Uint32, Uintptr:
    		return a.assignIntN(offset, t.Size(), 1, 0b0)
    	case Int64, Uint64:
    		switch goarch.PtrSize {
    		case 4:
    			return a.assignIntN(offset, 4, 2, 0b0)
    		case 8:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. src/syscall/fs_wasip1.go

    }
    
    // fd_fdstat_get_type is accessed from net
    //go:linkname fd_fdstat_get_type
    
    func fd_fdstat_get_type(fd int) (uint8, error) {
    	var stat fdstat
    	errno := fd_fdstat_get(int32(fd), unsafe.Pointer(&stat))
    	return stat.filetype, errnoErr(errno)
    }
    
    type preopentype = uint8
    
    const (
    	preopentypeDir preopentype = iota
    )
    
    type prestatDir struct {
    	prNameLen size
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/typecheck.go

    func typecheckslice(l []ir.Node, top int) {
    	for i := range l {
    		l[i] = typecheck(l[i], top)
    	}
    }
    
    var _typekind = []string{
    	types.TINT:        "int",
    	types.TUINT:       "uint",
    	types.TINT8:       "int8",
    	types.TUINT8:      "uint8",
    	types.TINT16:      "int16",
    	types.TUINT16:     "uint16",
    	types.TINT32:      "int32",
    	types.TUINT32:     "uint32",
    	types.TINT64:      "int64",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/walk/walk.go

    	c := cheapExpr(n, &init)
    	if c != n || len(init) != 0 {
    		base.Fatalf("backingArrayPtrLen not cheap: %v", n)
    	}
    	ptr = ir.NewUnaryExpr(base.Pos, ir.OSPTR, n)
    	if n.Type().IsString() {
    		ptr.SetType(types.Types[types.TUINT8].PtrTo())
    	} else {
    		ptr.SetType(n.Type().Elem().PtrTo())
    	}
    	ptr.SetTypecheck(1)
    	length = ir.NewUnaryExpr(base.Pos, ir.OLEN, n)
    	length.SetType(types.Types[types.TINT])
    	length.SetTypecheck(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1beta1/generated.pb.go

    }
    
    func encodeVarintGenerated(dAtA []byte, offset int, v uint64) int {
    	offset -= sovGenerated(v)
    	base := offset
    	for v >= 1<<7 {
    		dAtA[offset] = uint8(v&0x7f | 0x80)
    		v >>= 7
    		offset++
    	}
    	dAtA[offset] = uint8(v)
    	return base
    }
    func (m *PartialObjectMetadataList) Size() (n int) {
    	if m == nil {
    		return 0
    	}
    	var l int
    	_ = l
    	if len(m.Items) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/test/test.go

    void makeEvent(SDL_KeyboardEvent *event) {
     unsigned char *p;
     int i;
    
     p = (unsigned char*)event;
     for (i=0; i<sizeof *event; i++) {
       p[i] = i;
     }
    }
    
    int same(SDL_KeyboardEvent* e, Uint8 typ, Uint8 which, Uint8 state, Uint8 scan, SDLKey sym, SDLMod mod, Uint16 uni) {
      return e->typ == typ && e->which == which && e->state == state && e->keysym.scancode == scan && e->keysym.sym == sym && e->keysym.mod == mod && e->keysym.unicode == uni;
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/typecheck/expr.go

    	case ir.OSTR2RUNES:
    		if n.X.Op() == ir.OLITERAL {
    			return stringtoruneslit(n)
    		}
    
    	case ir.OBYTES2STR:
    		if t.Elem() != types.ByteType && t.Elem() != types.Types[types.TUINT8] {
    			// If t is a slice of a user-defined byte type B (not uint8
    			// or byte), then add an extra CONVNOP from []B to []byte, so
    			// that the call to slicebytetostring() added in walk will
    			// typecheck correctly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. src/encoding/json/encode.go

    		buf, err := tm.MarshalText()
    		return string(buf), err
    	}
    	switch k.Kind() {
    	case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    		return strconv.FormatInt(k.Int(), 10), nil
    	case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uintptr:
    		return strconv.FormatUint(k.Uint(), 10), nil
    	}
    	panic("unexpected map key type")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  10. src/runtime/runtime1.go

    	}
    }
    
    func check() {
    	var (
    		a     int8
    		b     uint8
    		c     int16
    		d     uint16
    		e     int32
    		f     uint32
    		g     int64
    		h     uint64
    		i, i1 float32
    		j, j1 float64
    		k     unsafe.Pointer
    		l     *uint16
    		m     [4]byte
    	)
    	type x1t struct {
    		x uint8
    	}
    	type y1t struct {
    		x1 x1t
    		y  uint8
    	}
    	var x1 x1t
    	var y1 y1t
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
Back to top