Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 765 for vers (0.69 sec)

  1. cmd/mrf.go

    			if u.scanMode != 0 {
    				scan = u.scanMode
    			}
    			if u.object == "" {
    				healBucket(u.bucket, scan)
    			} else {
    				if len(u.versions) > 0 {
    					vers := len(u.versions) / 16
    					if vers > 0 {
    						for i := 0; i < vers; i++ {
    							healObject(u.bucket, u.object, uuid.UUID(u.versions[16*i:]).String(), scan)
    						}
    					}
    				} else {
    					healObject(u.bucket, u.object, u.versionID, scan)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/syscall/dir_plan9.go

    	ErrBadName   = errors.New("bad character in file name")
    )
    
    // A Qid represents a 9P server's unique identification for a file.
    type Qid struct {
    	Path uint64 // the file server's unique identification for the file
    	Vers uint32 // version number for given Path
    	Type uint8  // the type of the file (syscall.QTDIR for example)
    }
    
    // A Dir contains the metadata for a file.
    type Dir struct {
    	// system-modified data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:32:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/debug/buildinfo/buildinfo.go

    // binaries built with module support.
    func Read(r io.ReaderAt) (*BuildInfo, error) {
    	vers, mod, err := readRawBuildInfo(r)
    	if err != nil {
    		return nil, err
    	}
    	bi, err := debug.ParseBuildInfo(mod)
    	if err != nil {
    		return nil, err
    	}
    	bi.GoVersion = vers
    	return bi, nil
    }
    
    type exe interface {
    	// ReadData reads and returns up to size bytes starting at virtual address addr.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/mod/sumdb/test.go

    // and fetch new records as needed by calling gosum.
    func NewTestServer(signer string, gosum func(path, vers string) ([]byte, error)) *TestServer {
    	return &TestServer{signer: signer, gosum: gosum}
    }
    
    // A TestServer is an in-memory implementation of [ServerOps] for testing.
    type TestServer struct {
    	signer string
    	gosum  func(path, vers string) ([]byte, error)
    
    	mu      sync.Mutex
    	hashes  testHashes
    	records [][]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  5. src/debug/dwarf/entry.go

    			// encoded in the debugging information entry itself.
    			val = true
    
    		// reference to other entry
    		case formRefAddr:
    			vers := b.format.version()
    			if vers == 0 {
    				b.error("unknown version for DW_FORM_ref_addr")
    			} else if vers == 2 {
    				val = Offset(b.addr())
    			} else {
    				is64, known := b.format.dwarf64()
    				if !known {
    					b.error("unknown size for DW_FORM_ref_addr")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 19:33:30 UTC 2023
    - 30.7K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_server_tls13.go

    	c := hs.c
    
    	hs.hello = new(serverHelloMsg)
    
    	// TLS 1.3 froze the ServerHello.legacy_version field, and uses
    	// supported_versions instead. See RFC 8446, sections 4.1.3 and 4.2.1.
    	hs.hello.vers = VersionTLS12
    	hs.hello.supportedVersion = c.vers
    
    	if len(hs.clientHello.supportedVersions) == 0 {
    		c.sendAlert(alertIllegalParameter)
    		return errors.New("tls: client used the legacy version field to negotiate TLS 1.3")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  7. src/crypto/tls/auth.go

    // versions that support signature algorithms, so TLS 1.2 and 1.3.
    func selectSignatureScheme(vers uint16, c *Certificate, peerAlgs []SignatureScheme) (SignatureScheme, error) {
    	supportedAlgs := signatureSchemesForCertificate(vers, c)
    	if len(supportedAlgs) == 0 {
    		return 0, unsupportedCertificateError(c)
    	}
    	if len(peerAlgs) == 0 && vers == VersionTLS12 {
    		// For TLS 1.2, if the client didn't send signature_algorithms then we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/fetch.go

    		if cfg.CmdName != "mod download" {
    			vers := mod.Version
    			if mod.Path == "golang.org/toolchain" {
    				// Shorten v0.0.1-go1.13.1.darwin-amd64 to go1.13.1.darwin-amd64
    				_, vers, _ = strings.Cut(vers, "-")
    				if i := strings.LastIndex(vers, "."); i >= 0 {
    					goos, goarch, _ := strings.Cut(vers[i+1:], "-")
    					vers = vers[:i] + " (" + goos + "/" + goarch + ")"
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  9. src/crypto/tls/handshake_messages.go

    			if !extData.ReadUint8LengthPrefixed(&versList) || versList.Empty() {
    				return false
    			}
    			for !versList.Empty() {
    				var vers uint16
    				if !versList.ReadUint16(&vers) {
    					return false
    				}
    				m.supportedVersions = append(m.supportedVersions, vers)
    			}
    		case extensionCookie:
    			// RFC 8446, Section 4.2.2
    			if !readUint16LengthPrefixed(&extData, &m.cookie) ||
    				len(m.cookie) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  10. src/crypto/tls/handshake_messages_test.go

    }
    
    func randomString(n int, rand *rand.Rand) string {
    	b := randomBytes(n, rand)
    	return string(b)
    }
    
    func (*clientHelloMsg) Generate(rand *rand.Rand, size int) reflect.Value {
    	m := &clientHelloMsg{}
    	m.vers = uint16(rand.Intn(65536))
    	m.random = randomBytes(32, rand)
    	m.sessionId = randomBytes(rand.Intn(32), rand)
    	m.cipherSuites = make([]uint16, rand.Intn(63)+1)
    	for i := 0; i < len(m.cipherSuites); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 15.7K bytes
    - Viewed (0)
Back to top