Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for Se (0.03 sec)

  1. 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)
  2. src/time/zoneinfo_abbrs_windows.go

    	"Jordan Standard Time":            {"+03", "+03"},     // Asia/Amman
    	"Arabic Standard Time":            {"+03", "+03"},     // Asia/Baghdad
    	"Azerbaijan Standard Time":        {"+04", "+04"},     // Asia/Baku
    	"SE Asia Standard Time":           {"+07", "+07"},     // Asia/Bangkok
    	"Altai Standard Time":             {"+07", "+07"},     // Asia/Barnaul
    	"Middle East Standard Time":       {"EET", "EEST"},    // Asia/Beirut
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 20:01:59 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. src/os/pipe_test.go

    		_, err = w.Write([]byte("hi"))
    		if err == nil {
    			t.Fatal("unexpected success of Write to broken pipe")
    		}
    		if pe, ok := err.(*fs.PathError); ok {
    			err = pe.Err
    		}
    		if se, ok := err.(*os.SyscallError); ok {
    			err = se.Err
    		}
    		if err != expect {
    			t.Errorf("iteration %d: got %v, expected %v", i, err, expect)
    		}
    	}
    }
    
    func TestStdPipe(t *testing.T) {
    	switch runtime.GOOS {
    	case "windows":
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 12.4K 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/cmd/internal/obj/mips/obj0.go

    	for p := p0; ; p = p.Link {
    		s[0].p = *p
    		c.markregused(&s[0])
    		if p == pe {
    			break
    		}
    		s = s[1:]
    	}
    	se := s
    
    	for i := cap(sch) - cap(se); i >= 0; i-- {
    		s = sch[i:]
    		if s[0].p.Mark&DELAY == 0 {
    			continue
    		}
    		if -cap(s) < -cap(se) {
    			if !conflict(&s[0], &s[1]) {
    				continue
    			}
    		}
    
    		var t []Sch
    		var j int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:28:53 UTC 2023
    - 30.6K bytes
    - Viewed (0)
  6. src/image/jpeg/writer.go

    //   - the number of components "\x01",
    //   - component 1 uses DC table 0 and AC table 0 "\x01\x00",
    //   - the bytes "\x00\x3f\x00". Section B.2.3 of the spec says that for
    //     sequential DCTs, those bytes (8-bit Ss, 8-bit Se, 4-bit Ah, 4-bit Al)
    //     should be 0x00, 0x3f, 0x00<<4 | 0x00.
    var sosHeaderY = []byte{
    	0xff, 0xda, 0x00, 0x08, 0x01, 0x01, 0x00, 0x00, 0x3f, 0x00,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  7. 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)
  8. src/cmd/doc/pkg.go

    			// Or a type embedded in a constraint.
    			// Nothing else is allowed.
    			ty := field.Type
    			if se, ok := field.Type.(*ast.StarExpr); !isInterface && ok {
    				// The form *ident or *pkg.ident is only valid on
    				// embedded types in structs.
    				ty = se.X
    			}
    			constraint := false
    			switch ident := ty.(type) {
    			case *ast.Ident:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 20:15:52 UTC 2024
    - 32K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top