Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 92 for quint8 (0.12 sec)

  1. src/crypto/tls/ticket.go

    	//       uint16 version;
    	//       SessionStateType type;
    	//       uint16 cipher_suite;
    	//       uint64 created_at;
    	//       opaque secret<1..2^8-1>;
    	//       Extra extra<0..2^24-1>;
    	//       uint8 ext_master_secret = { 0, 1 };
    	//       uint8 early_data = { 0, 1 };
    	//       CertificateEntry certificate_list<0..2^24-1>;
    	//       CertificateChain verified_chains<0..2^24-1>; /* excluding leaf */
    	//       select (SessionState.early_data) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  2. src/crypto/tls/key_agreement.go

    // the sigType (for earlier TLS versions). For Ed25519 signatures, which don't
    // do pre-hashing, it returns the concatenation of the slices.
    func hashForServerKeyExchange(sigType uint8, hashFunc crypto.Hash, version uint16, slices ...[]byte) []byte {
    	if sigType == signatureEd25519 {
    		var signed []byte
    		for _, slice := range slices {
    			signed = append(signed, slice...)
    		}
    		return signed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 14:56:25 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. src/encoding/gob/encode.go

    		}
    	}
    }
    
    // encInt encodes the signed integer (int int8 int16 int32 int64) referenced by v.
    func encInt(i *encInstr, state *encoderState, v reflect.Value) {
    	value := v.Int()
    	if value != 0 || state.sendZero {
    		state.update(i)
    		state.encodeInt(value)
    	}
    }
    
    // encUint encodes the unsigned integer (uint uint8 uint16 uint32 uint64 uintptr) referenced by v.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/objfile.go

    		for p := s.Func().Text; p != nil; p = p.Link {
    			fmt.Fprintf(ctxt.Bso, "\t%#04x ", uint(int(p.Pc)))
    			if ctxt.Debugasm > 1 {
    				io.WriteString(ctxt.Bso, p.String())
    			} else {
    				p.InnermostString(ctxt.Bso)
    			}
    			fmt.Fprintln(ctxt.Bso)
    		}
    	}
    	for i := 0; i < len(s.P); i += 16 {
    		fmt.Fprintf(ctxt.Bso, "\t%#04x", uint(i))
    		j := i
    		for ; j < i+16 && j < len(s.P); j++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. scan.go

    			db.AddError(rows.Scan(values...))
    
    			mapValue := map[string]interface{}{}
    			scanIntoMap(mapValue, values, columns)
    			*dest = append(*dest, mapValue)
    		}
    	case *int, *int8, *int16, *int32, *int64,
    		*uint, *uint8, *uint16, *uint32, *uint64, *uintptr,
    		*float32, *float64,
    		*bool, *string, *time.Time,
    		*sql.NullInt32, *sql.NullInt64, *sql.NullFloat64,
    		*sql.NullBool, *sql.NullString, *sql.NullTime:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/database/sql/convert.go

    	case []byte:
    		return string(v)
    	}
    	rv := reflect.ValueOf(src)
    	switch rv.Kind() {
    	case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    		return strconv.FormatInt(rv.Int(), 10)
    	case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
    		return strconv.FormatUint(rv.Uint(), 10)
    	case reflect.Float64:
    		return strconv.FormatFloat(rv.Float(), 'g', -1, 64)
    	case reflect.Float32:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  7. cmd/erasure-healing-common_test.go

    				Index:      []uint8(nil),
    				Checksums:  map[string]string(nil),
    			},
    		},
    		Erasure: ErasureInfo{
    			Algorithm:    "ReedSolomon",
    			DataBlocks:   6,
    			ParityBlocks: 6,
    			BlockSize:    1048576,
    			Index:        1,
    			Distribution: []int{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12},
    			Checksums:    []ChecksumInfo{{PartNumber: 1, Algorithm: 0x3, Hash: []uint8{}}},
    		},
    		NumVersions: 1,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_messages_test.go

    		ks.group = CurveID(rand.Intn(30000) + 1)
    		ks.data = randomBytes(rand.Intn(200)+1, rand)
    		m.keyShares = append(m.keyShares, ks)
    	}
    	switch rand.Intn(3) {
    	case 1:
    		m.pskModes = []uint8{pskModeDHE}
    	case 2:
    		m.pskModes = []uint8{pskModeDHE, pskModePlain}
    	}
    	for i := 0; i < rand.Intn(5); i++ {
    		var psk pskIdentity
    		psk.obfuscatedTicketAge = uint32(rand.Intn(500000))
    		psk.label = randomBytes(rand.Intn(500)+1, rand)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/block.go

    			continue
    		}
    		return false
    	}
    	return true
    }
    
    func (b *Block) AuxIntString() string {
    	switch b.Kind.AuxIntType() {
    	case "int8":
    		return fmt.Sprintf("%v", int8(b.AuxInt))
    	case "uint8":
    		return fmt.Sprintf("%v", uint8(b.AuxInt))
    	case "": // no aux int type
    		return ""
    	default: // type specified but not implemented - print as int64
    		return fmt.Sprintf("%v", b.AuxInt)
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  10. 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)
Back to top