Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 110 for Ra (0.02 sec)

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

    	Code   int32
    	Pid    int32
    	Uid    uint32
    	Status int32
    	Addr   uintptr
    	Value  [8]byte
    	_      [40]byte
    }
    
    type Sigset_t struct {
    	Val [4]uint32
    }
    
    type Reg struct {
    	Ra      uint64
    	Sp      uint64
    	Gp      uint64
    	Tp      uint64
    	T       [7]uint64
    	S       [12]uint64
    	A       [8]uint64
    	Sepc    uint64
    	Sstatus uint64
    }
    
    type FpReg struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  2. src/regexp/syntax/parse.go

    // a *[]rune.
    type ranges struct {
    	p *[]rune
    }
    
    func (ra ranges) Less(i, j int) bool {
    	p := *ra.p
    	i *= 2
    	j *= 2
    	return p[i] < p[j] || p[i] == p[j] && p[i+1] > p[j+1]
    }
    
    func (ra ranges) Len() int {
    	return len(*ra.p) / 2
    }
    
    func (ra ranges) Swap(i, j int) {
    	p := *ra.p
    	i *= 2
    	j *= 2
    	p[i], p[i+1], p[j], p[j+1] = p[j], p[j+1], p[i], p[i+1]
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go

    	SizeofIovec           = 0x10
    	SizeofMsghdr          = 0x38
    	SizeofCmsghdr         = 0x10
    )
    
    const (
    	SizeofSockFprog = 0x10
    )
    
    type PtraceRegs struct {
    	Pc  uint64
    	Ra  uint64
    	Sp  uint64
    	Gp  uint64
    	Tp  uint64
    	T0  uint64
    	T1  uint64
    	T2  uint64
    	S0  uint64
    	S1  uint64
    	A0  uint64
    	A1  uint64
    	A2  uint64
    	A3  uint64
    	A4  uint64
    	A5  uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. hack/make-rules/test-e2e-node.sh

        exit 1
      fi
    
      # Check if any of the images specified already have running instances.  If so reuse those instances
      # by moving the IMAGE to a HOST
      if [[ ${images} != "" ]]; then
      IFS=',' read -ra IM <<< "${images}"
           images=""
           for i in "${IM[@]}"; do
             if gcloud compute instances list --project="${project}" --filter="name:'${instance_prefix}-${i}' AND zone:'${zone}'" | grep "${i}"; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 16 09:46:28 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. src/syscall/ztypes_linux_riscv64.go

    }
    
    type InotifyEvent struct {
    	Wd     int32
    	Mask   uint32
    	Cookie uint32
    	Len    uint32
    }
    
    const SizeofInotifyEvent = 0x10
    
    type PtraceRegs struct {
    	Pc  uint64
    	Ra  uint64
    	Sp  uint64
    	Gp  uint64
    	Tp  uint64
    	T0  uint64
    	T1  uint64
    	T2  uint64
    	S0  uint64
    	S1  uint64
    	A0  uint64
    	A1  uint64
    	A2  uint64
    	A3  uint64
    	A4  uint64
    	A5  uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  6. src/crypto/tls/testdata/Server-TLSv13-CHACHA20-SHA256

    00000270  97 85 5d 06 21 62 e2 95  d7 b5 a5 a9 08 cf 34 f4  |..].!b........4.|
    00000280  ae cc 17 e4 0e 4e 5a 13  b1 73 03 45 b9 29 b5 45  |.....NZ..s.E.).E|
    00000290  77 a1 4b 2f 8f c5 72 41  dc ab f9 b7 f3 72 28 f4  |w.K/..rA.....r(.|
    000002a0  cb 08 07 0a 20 7c 8b 26  70 92 7b 7b b9 99 61 0a  |.... |.&p.{{..a.|
    000002b0  63 17 e2 96 86 0a 6a 56  a1 90 1f 5e 50 bb 7f 72  |c.....jV...^P..r|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  7. src/slices/sort_test.go

    		{str1, "foo", 0, true},
    		{str1, "bar", 0, false},
    		{str1, "zx", 1, false},
    
    		{str2, "aa", 0, false},
    		{str2, "ab", 0, true},
    		{str2, "ad", 1, false},
    		{str2, "ca", 1, true},
    		{str2, "ra", 2, false},
    
    		{str3, "bb", 0, false},
    		{str3, "mo", 0, true},
    		{str3, "nb", 1, false},
    		{str3, "qo", 1, true},
    		{str3, "tr", 2, false},
    		{str3, "vo", 2, true},
    		{str3, "xr", 3, false},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 19:20:55 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  8. cmd/sftp-server-driver.go

    		Transport: globalRemoteFTPClientTransport,
    	})
    }
    
    func (f *sftpDriver) AccessKey() string {
    	return f.permissions.CriticalOptions["AccessKey"]
    }
    
    func (f *sftpDriver) Fileread(r *sftp.Request) (ra io.ReaderAt, err error) {
    	// This is not timing the actual read operation, but the time it takes to prepare the reader.
    	stopFn := globalSftpMetrics.log(r, f.AccessKey())
    	defer stopFn(0, err)
    
    	flags := r.Pflags()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/doc.go

    Examples:
    
    	MOVD R29, 384(R19)    <=>    str x29, [x19,#384]
    	MOVB.P R30, 30(R4)    <=>    strb w30, [x4],#30
    	STLRH R21, (R19)      <=>    stlrh w21, [x19]
    
    (2) MADD, MADDW, MSUB, MSUBW, SMADDL, SMSUBL, UMADDL, UMSUBL <Rm>, <Ra>, <Rn>, <Rd>
    
    Examples:
    
    	MADD R2, R30, R22, R6       <=>    madd x6, x22, x2, x30
    	SMSUBL R10, R3, R17, R27    <=>    smsubl x27, w17, w10, x3
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  10. cmd/erasure-multipart.go

    		pool := globalBytePoolCap.Load()
    		bufA := pool.Get()
    		bufB := pool.Get()
    		defer pool.Put(bufA)
    		defer pool.Put(bufB)
    		ra, err := readahead.NewReaderBuffer(data, [][]byte{bufA[:fi.Erasure.BlockSize], bufB[:fi.Erasure.BlockSize]})
    		if err == nil {
    			toEncode = ra
    			defer ra.Close()
    		}
    	}
    
    	n, err := erasure.Encode(ctx, toEncode, writers, buffer, writeQuorum)
    	closeBitrotWriters(writers)
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top