Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 170 for strerror (0.17 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go

    type Timespec struct {
    	Sec  int32
    	Nsec int32
    }
    
    type Timeval struct {
    	Sec  int32
    	Usec int32
    }
    
    type Timex struct {
    	Modes     uint32
    	Offset    int32
    	Freq      int32
    	Maxerror  int32
    	Esterror  int32
    	Status    int32
    	Constant  int32
    	Precision int32
    	Tolerance int32
    	Time      Timeval
    	Tick      int32
    	Ppsfreq   int32
    	Jitter    int32
    	Shift     int32
    	Stabil    int32
    	Jitcnt    int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. src/syscall/ztypes_linux_arm.go

    type Timespec struct {
    	Sec  int32
    	Nsec int32
    }
    
    type Timeval struct {
    	Sec  int32
    	Usec int32
    }
    
    type Timex struct {
    	Modes     uint32
    	Offset    int32
    	Freq      int32
    	Maxerror  int32
    	Esterror  int32
    	Status    int32
    	Constant  int32
    	Precision int32
    	Tolerance int32
    	Time      Timeval
    	Tick      int32
    	Ppsfreq   int32
    	Jitter    int32
    	Shift     int32
    	Stabil    int32
    	Jitcnt    int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go

    	SO_ACCEPTFILTER                   = 0x1000
    	SO_BROADCAST                      = 0x20
    	SO_CPUHINT                        = 0x1030
    	SO_DEBUG                          = 0x1
    	SO_DONTROUTE                      = 0x10
    	SO_ERROR                          = 0x1007
    	SO_KEEPALIVE                      = 0x8
    	SO_LINGER                         = 0x80
    	SO_NOSIGPIPE                      = 0x800
    	SO_OOBINLINE                      = 0x100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 70.7K bytes
    - Viewed (0)
  4. src/os/signal/signal_cgo_test.go

    	default:
    		fmt.Fprintf(os.Stderr, "unknown subprocess level %s\n", lvl)
    		os.Exit(1)
    	}
    
    	t.Parallel()
    
    	pty, procTTYName, err := testpty.Open()
    	if err != nil {
    		ptyErr := err.(*testpty.PtyError)
    		if ptyErr.FuncName == "posix_openpt" && ptyErr.Errno == syscall.EACCES {
    			t.Skip("posix_openpt failed with EACCES, assuming chroot and skipping")
    		}
    		t.Fatal(err)
    	}
    	defer pty.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 10:09:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. src/crypto/tls/ticket.go

    		for _, chain := range s.verifiedChains {
    			b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    				// We elide the first certificate because it's always the leaf.
    				if len(chain) == 0 {
    					b.SetError(errors.New("tls: internal error: empty verified chain"))
    					return
    				}
    				for _, cert := range chain[1:] {
    					b.AddUint24LengthPrefixed(func(b *cryptobyte.Builder) {
    						b.AddBytes(cert.Raw)
    					})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go

    	SO_BINTIME                     = 0x2000
    	SO_BROADCAST                   = 0x20
    	SO_DEBUG                       = 0x1
    	SO_DOMAIN                      = 0x1019
    	SO_DONTROUTE                   = 0x10
    	SO_ERROR                       = 0x1007
    	SO_KEEPALIVE                   = 0x8
    	SO_LABEL                       = 0x1009
    	SO_LINGER                      = 0x80
    	SO_LISTENINCQLEN               = 0x1013
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.2K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go

    	SO_BINTIME                     = 0x2000
    	SO_BROADCAST                   = 0x20
    	SO_DEBUG                       = 0x1
    	SO_DOMAIN                      = 0x1019
    	SO_DONTROUTE                   = 0x10
    	SO_ERROR                       = 0x1007
    	SO_KEEPALIVE                   = 0x8
    	SO_LABEL                       = 0x1009
    	SO_LINGER                      = 0x80
    	SO_LISTENINCQLEN               = 0x1013
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.2K bytes
    - Viewed (0)
  8. cmd/handler-utils.go

    const (
    	copyDirective    = "COPY"
    	replaceDirective = "REPLACE"
    	accessDirective  = "ACCESS"
    )
    
    // Parses location constraint from the incoming reader.
    func parseLocationConstraint(r *http.Request) (location string, s3Error APIErrorCode) {
    	// If the request has no body with content-length set to 0,
    	// we do not have to validate location constraint. Bucket will
    	// be created at default region.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go

    	SO_BINTIME                     = 0x2000
    	SO_BROADCAST                   = 0x20
    	SO_DEBUG                       = 0x1
    	SO_DOMAIN                      = 0x1019
    	SO_DONTROUTE                   = 0x10
    	SO_ERROR                       = 0x1007
    	SO_KEEPALIVE                   = 0x8
    	SO_LABEL                       = 0x1009
    	SO_LINGER                      = 0x80
    	SO_LISTENINCQLEN               = 0x1013
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go

    	SO_BINTIME                     = 0x2000
    	SO_BROADCAST                   = 0x20
    	SO_DEBUG                       = 0x1
    	SO_DOMAIN                      = 0x1019
    	SO_DONTROUTE                   = 0x10
    	SO_ERROR                       = 0x1007
    	SO_KEEPALIVE                   = 0x8
    	SO_LABEL                       = 0x1009
    	SO_LINGER                      = 0x80
    	SO_LISTENINCQLEN               = 0x1013
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 83.7K bytes
    - Viewed (0)
Back to top