Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for Se (0.05 sec)

  1. src/cmd/compile/internal/ssa/check.go

    		}
    		blockMark[b.ID] = true
    		if b.Func != f {
    			f.Fatalf("%s.Func=%s, want %s", b, b.Func.Name, f.Name)
    		}
    
    		for i, e := range b.Preds {
    			if se := e.b.Succs[e.i]; se.b != b || se.i != i {
    				f.Fatalf("block pred/succ not crosslinked correctly %d:%s %d:%s", i, b, se.i, se.b)
    			}
    		}
    		for i, e := range b.Succs {
    			if pe := e.b.Preds[e.i]; pe.b != b || pe.i != i {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  2. src/encoding/json/encode.go

    }
    
    type structFields struct {
    	list         []field
    	byExactName  map[string]*field
    	byFoldedName map[string]*field
    }
    
    func (se structEncoder) encode(e *encodeState, v reflect.Value, opts encOpts) {
    	next := byte('{')
    FieldLoop:
    	for i := range se.fields.list {
    		f := &se.fields.list[i]
    
    		// Find the nested struct field by following f.index.
    		fv := v
    		for _, i := range f.index {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  3. src/fmt/scan.go

    	panic(scanError{errors.New(err)})
    }
    
    func (s *ss) Token(skipSpace bool, f func(rune) bool) (tok []byte, err error) {
    	defer func() {
    		if e := recover(); e != nil {
    			if se, ok := e.(scanError); ok {
    				err = se.err
    			} else {
    				panic(e)
    			}
    		}
    	}()
    	if f == nil {
    		f = notSpace
    	}
    	s.buf = s.buf[:0]
    	tok = s.token(skipSpace, f)
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 21:56:20 UTC 2024
    - 31.9K bytes
    - Viewed (0)
  4. src/crypto/x509/verify.go

    type SystemRootsError struct {
    	Err error
    }
    
    func (se SystemRootsError) Error() string {
    	msg := "x509: failed to load system roots and no roots provided"
    	if se.Err != nil {
    		return msg + "; " + se.Err.Error()
    	}
    	return msg
    }
    
    func (se SystemRootsError) Unwrap() error { return se.Err }
    
    // errNotParsed is returned when a certificate without ASN.1 contents is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    		}
    		if err != nil {
    			cc.vlogf("http2: Transport readFrame error on conn %p: (%T) %v", cc, err, err)
    		}
    		if se, ok := err.(http2StreamError); ok {
    			if cs := rl.streamByID(se.StreamID); cs != nil {
    				if se.Cause == nil {
    					se.Cause = cc.fr.errDetail
    				}
    				rl.endStreamError(cs, se)
    			}
    			continue
    		} else if err != nil {
    			cc.countReadFrameError(err)
    			return err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. src/net/http/cookiejar/jar.go

    	}
    	if o != nil {
    		jar.psList = o.PublicSuffixList
    	}
    	return jar, nil
    }
    
    // entry is the internal representation of a cookie.
    //
    // This struct type is not used outside of this package per se, but the exported
    // fields are those of RFC 6265.
    type entry struct {
    	Name       string
    	Value      string
    	Quoted     bool
    	Domain     string
    	Path       string
    	SameSite   string
    	Secure     bool
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. src/crypto/ecdsa/ecdsa.go

    	// under standard cryptographic assumptions (see [Larsson] for examples).
    	//
    	// [Coron]: https://cs.nyu.edu/~dodis/ps/merkle.pdf
    	// [Larsson]: https://web.archive.org/web/20040719170906/https://www.nada.kth.se/kurser/kth/2D1441/semteo03/lecturenotes/assump.pdf
    
    	// Get 256 bits of entropy from rand.
    	entropy := make([]byte, 32)
    	if _, err := io.ReadFull(rand, entropy); err != nil {
    		return nil, err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  8. src/image/jpeg/scan.go

    		return FormatError("total sampling factors too large")
    	}
    
    	// zigStart and zigEnd are the spectral selection bounds.
    	// ah and al are the successive approximation high and low values.
    	// The spec calls these values Ss, Se, Ah and Al.
    	//
    	// For progressive JPEGs, these are the two more-or-less independent
    	// aspects of progression. Spectral selection progression is when not
    	// all of a block's 64 DCT coefficients are transmitted in one pass.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 00:46:29 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  9. src/encoding/json/encode_test.go

    		if testing.Short() && i < len(digits)-4 {
    			break
    		}
    		for exp := -30; exp <= 30; exp++ {
    			for _, sign := range "+-" {
    				for bits := 32; bits <= 64; bits += 32 {
    					s := fmt.Sprintf("%c%se%d", sign, digits[:i], exp)
    					f, err := strconv.ParseFloat(s, bits)
    					if err != nil {
    						log.Fatal(err)
    					}
    					next := math.Nextafter
    					if bits == 32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  10. src/reflect/value.go

    		if !stringCopy {
    			panic(&ValueError{"reflect.Copy", sk})
    		}
    	}
    	src.mustBeExported()
    
    	de := dst.typ().Elem()
    	if !stringCopy {
    		se := src.typ().Elem()
    		typesMustMatch("reflect.Copy", toType(de), toType(se))
    	}
    
    	var ds, ss unsafeheader.Slice
    	if dk == Array {
    		ds.Data = dst.ptr
    		ds.Len = dst.Len()
    		ds.Cap = ds.Len
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top