Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 36 for Ra (0.02 sec)

  1. src/cmd/internal/buildid/rewrite.go

    		copy(p[cstart:cend], zeros)
    	}
    	r.off += int64(n)
    	return n, err
    }
    
    func findMachoCodeSignature(r any) (*macho.File, codesign.CodeSigCmd, bool) {
    	ra, ok := r.(io.ReaderAt)
    	if !ok {
    		return nil, codesign.CodeSigCmd{}, false
    	}
    	f, err := macho.NewFile(ra)
    	if err != nil {
    		return nil, codesign.CodeSigCmd{}, false
    	}
    	cmd, ok := codesign.FindCodeSigCmd(f)
    	return f, cmd, ok
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 5.1K bytes
    - Viewed (0)
  2. common/scripts/run.sh

    WD=$(dirname "$0")
    WD=$(cd "$WD"; pwd)
    
    export FOR_BUILD_CONTAINER=1
    # shellcheck disable=SC1090,SC1091
    source "${WD}/setup_env.sh"
    
    
    MOUNT_SOURCE="${MOUNT_SOURCE:-${PWD}}"
    MOUNT_DEST="${MOUNT_DEST:-/work}"
    
    read -ra DOCKER_RUN_OPTIONS <<< "${DOCKER_RUN_OPTIONS:-}"
    
    [[ -t 1 ]] && DOCKER_RUN_OPTIONS+=("-it")
    [[ ${UID} -ne 0 ]] && DOCKER_RUN_OPTIONS+=(-u "${UID}:${DOCKER_GID}")
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 11 02:34:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/runtime/asan_riscv64.s

    	MOV	X2, X8		// callee-saved
    	BEQZ	g, g0stack	// no g, still on a system stack
    	MOV	g_m(g), X21
    	MOV	m_g0(X21), X21
    	BEQ	X21, g, g0stack
    
    	MOV	(g_sched+gobuf_sp)(X21), X2
    
    g0stack:
    	JALR	RA, X14
    	MOV	X8, X2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 06:55:54 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  4. src/runtime/defs_linux_riscv64.go

    }
    
    const (
    	_O_RDONLY   = 0x0
    	_O_WRONLY   = 0x1
    	_O_CREAT    = 0x40
    	_O_TRUNC    = 0x200
    	_O_NONBLOCK = 0x800
    	_O_CLOEXEC  = 0x80000
    )
    
    type user_regs_struct 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: Tue Aug 22 19:05:10 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. src/net/protoconn_test.go

    	ls := (&streamListener{Listener: ln}).newLocalServer()
    	defer ls.teardown()
    	if err := ls.buildup(handler); err != nil {
    		t.Fatal(err)
    	}
    
    	ra, err := ResolveTCPAddr("tcp4", ls.Listener.Addr().String())
    	if err != nil {
    		t.Fatal(err)
    	}
    	c, err := DialTCP("tcp4", nil, ra)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer c.Close()
    	c.SetKeepAlive(false)
    	c.SetKeepAlivePeriod(3 * time.Second)
    	c.SetLinger(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. src/runtime/signal_openbsd_riscv64.go

    )
    
    type sigctxt struct {
    	info *siginfo
    	ctxt unsafe.Pointer
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) regs() *sigcontext {
    	return (*sigcontext)(c.ctxt)
    }
    
    func (c *sigctxt) ra() uint64  { return uint64(c.regs().sc_ra) }
    func (c *sigctxt) sp() uint64  { return uint64(c.regs().sc_sp) }
    func (c *sigctxt) gp() uint64  { return uint64(c.regs().sc_gp) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 04 02:55:17 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. src/runtime/signal_freebsd_riscv64.go

    import "unsafe"
    
    type sigctxt struct {
    	info *siginfo
    	ctxt unsafe.Pointer
    }
    
    //go:nosplit
    //go:nowritebarrierrec
    func (c *sigctxt) regs() *mcontext { return &(*ucontext)(c.ctxt).uc_mcontext }
    
    func (c *sigctxt) ra() uint64  { return c.regs().mc_gpregs.gp_ra }
    func (c *sigctxt) sp() uint64  { return c.regs().mc_gpregs.gp_sp }
    func (c *sigctxt) gp() uint64  { return c.regs().mc_gpregs.gp_gp }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:17:13 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  8. src/runtime/sys_freebsd_riscv64.s

    	RET
    
    // func sigfwd(fn uintptr, sig uint32, info *siginfo, ctx unsafe.Pointer)
    TEXT runtime·sigfwd(SB),NOSPLIT,$0-32
    	MOVW	sig+8(FP), A0
    	MOV	info+16(FP), A1
    	MOV	ctx+24(FP), A2
    	MOV	fn+0(FP), T1
    	JALR	RA, T1
    	RET
    
    // func sigtramp(signo, ureg, ctxt unsafe.Pointer)
    TEXT runtime·sigtramp(SB),NOSPLIT,$64
    	MOVW	A0, 8(X2)
    	MOV	A1, 16(X2)
    	MOV	A2, 24(X2)
    
    	// this might be called in external code context,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/text/AbstractLineChoppingStyledTextOutputTest.groovy

            System.setProperty("line.separator", "\r\n")
            def output = output()
    
            when:
            output.text('\r')
            output.text('a')
    
            then:
            result.toString() == "[\ra]"
        }
    
        def "can append new line after multiple carriage return followed by data on Windows"() {
            System.setProperty("line.separator", "\r\n")
            def output = output()
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/container_manager_windows.go

    	deviceManager devicemanager.Manager
    	// Interface for Topology resource co-ordination
    	topologyManager topologymanager.Manager
    }
    
    type noopWindowsResourceAllocator struct{}
    
    func (ra *noopWindowsResourceAllocator) Admit(attrs *lifecycle.PodAdmitAttributes) lifecycle.PodAdmitResult {
    	return admission.GetPodAdmitResult(nil)
    }
    
    func (cm *containerManagerImpl) Start(node *v1.Node,
    	activePods ActivePodsFunc,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 11:25:36 UTC 2023
    - 8.7K bytes
    - Viewed (0)
Back to top