Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 124 for uimm16 (0.21 sec)

  1. src/crypto/tls/auth.go

    	default:
    		return 0, 0, fmt.Errorf("tls: unsupported public key: %T", pub)
    	}
    }
    
    var rsaSignatureSchemes = []struct {
    	scheme          SignatureScheme
    	minModulusBytes int
    	maxVersion      uint16
    }{
    	// RSA-PSS is used with PSSSaltLengthEqualsHash, and requires
    	//    emLen >= hLen + sLen + 2
    	{PSSWithSHA256, crypto.SHA256.Size()*2 + 2, VersionTLS13},
    	{PSSWithSHA384, crypto.SHA384.Size()*2 + 2, VersionTLS13},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  2. schema/field.go

    				schema.err = fmt.Errorf("failed to parse %s as default value for int, got error: %v", field.DefaultValue, err)
    			}
    		}
    	case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64:
    		field.DataType = Uint
    		if field.HasDefaultValue && !skipParseDefaultValue {
    			if field.DefaultValueInterface, err = strconv.ParseUint(field.DefaultValue, 0, 64); err != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 32K bytes
    - Viewed (0)
  3. pilot/pkg/bootstrap/server_test.go

    	cases := []struct {
    		name               string
    		serverCipherSuites []uint16
    		clientCipherSuites []uint16
    		expectSuccess      bool
    	}{
    		{
    			name:          "default cipher suites",
    			expectSuccess: true,
    		},
    		{
    			name:               "client and istiod cipher suites match",
    			serverCipherSuites: []uint16{tls.TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. src/os/file_windows.go

    	if err != nil {
    		return "", err
    	}
    	defer syscall.CloseHandle(h)
    
    	buf := make([]uint16, 100)
    	for {
    		n, err := windows.GetFinalPathNameByHandle(h, &buf[0], uint32(len(buf)), windows.VOLUME_NAME_DOS)
    		if err != nil {
    			return "", err
    		}
    		if n < uint32(len(buf)) {
    			break
    		}
    		buf = make([]uint16, n)
    	}
    	s = syscall.UTF16ToString(buf)
    	if len(s) > 4 && s[:4] == `\\?\` {
    		s = s[4:]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:38:38 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. src/runtime/error.go

    		print(typestring, "(", *(*int64)(eface.data), ")")
    	case abi.Uint:
    		print(typestring, "(", *(*uint)(eface.data), ")")
    	case abi.Uint8:
    		print(typestring, "(", *(*uint8)(eface.data), ")")
    	case abi.Uint16:
    		print(typestring, "(", *(*uint16)(eface.data), ")")
    	case abi.Uint32:
    		print(typestring, "(", *(*uint32)(eface.data), ")")
    	case abi.Uint64:
    		print(typestring, "(", *(*uint64)(eface.data), ")")
    	case abi.Uintptr:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. cmd/bucket-metadata.go

    	}
    	// Read header
    	switch binary.LittleEndian.Uint16(data[0:2]) {
    	case bucketMetadataFormat:
    	default:
    		return b, fmt.Errorf("loadBucketMetadata: unknown format: %d", binary.LittleEndian.Uint16(data[0:2]))
    	}
    	switch binary.LittleEndian.Uint16(data[2:4]) {
    	case bucketMetadataVersion:
    	default:
    		return b, fmt.Errorf("loadBucketMetadata: unknown version: %d", binary.LittleEndian.Uint16(data[2:4]))
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  7. src/runtime/string.go

    		}
    		// Move to next page
    		ptr = unsafe.Pointer(uintptr(ptr) + uintptr(safeLen))
    		offset += safeLen
    		safeLen = pageSize
    	}
    }
    
    func findnullw(s *uint16) int {
    	if s == nil {
    		return 0
    	}
    	p := (*[maxAlloc/2/2 - 1]uint16)(unsafe.Pointer(s))
    	l := 0
    	for p[l] != 0 {
    		l++
    	}
    	return l
    }
    
    //go:nosplit
    func gostringnocopy(str *byte) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. src/database/sql/convert.go

    	case *string:
    		sv = reflect.ValueOf(src)
    		switch sv.Kind() {
    		case reflect.Bool,
    			reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64,
    			reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64,
    			reflect.Float32, reflect.Float64:
    			*d = asString(src)
    			return nil
    		}
    	case *[]byte:
    		sv = reflect.ValueOf(src)
    		if b, ok := asBytes(nil, sv); ok {
    			*d = b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. src/image/jpeg/scan.go

    									}
    									b[unzig[zig]] = ac << al
    								} else {
    									if val0 != 0x0f {
    										d.eobRun = uint16(1 << val0)
    										if val0 != 0 {
    											bits, err := d.decodeBits(int32(val0))
    											if err != nil {
    												return err
    											}
    											d.eobRun |= uint16(bits)
    										}
    										d.eobRun--
    										break
    									}
    									zig += 0x0f
    								}
    							}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. src/net/dnsclient_unix.go

    	// gets set to true.
    	errServerTemporarilyMisbehaving = &temporaryError{"server misbehaving"}
    )
    
    func newRequest(q dnsmessage.Question, ad bool) (id uint16, udpReq, tcpReq []byte, err error) {
    	id = uint16(randInt())
    	b := dnsmessage.NewBuilder(make([]byte, 2, 514), dnsmessage.Header{ID: id, RecursionDesired: true, AuthenticData: ad})
    	if err := b.StartQuestions(); err != nil {
    		return 0, nil, nil, err
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top