Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 724 for Restore (0.18 sec)

  1. src/runtime/rt0_openbsd_arm64.s

    	SUB	$16, RSP		// reserve 16 bytes for sp-8 where fp may be saved.
    	BL	(R4)
    	ADD	$16, RSP
    	B	restore
    
    nocgo:
    	MOVD	$0x800000, R0                     // stacksize = 8192KB
    	MOVD	$_rt0_arm64_openbsd_lib_go(SB), R1
    	MOVD	R0, 8(RSP)
    	MOVD	R1, 16(RSP)
    	MOVD	$runtime·newosproc0(SB),R4
    	BL	(R4)
    
    restore:
    	// Restore callee-save registers.
    	RESTORE_R19_TO_R28(24)
    	RESTORE_F8_TO_F15(104)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. pkg/util/iptables/iptables.go

    	SaveInto(table Table, buffer *bytes.Buffer) error
    	// Restore runs `iptables-restore` passing data through []byte.
    	// table is the Table to restore
    	// data should be formatted like the output of SaveInto()
    	// flush sets the presence of the "--noflush" flag. see: FlushFlag
    	// counters sets the "--counters" flag. see: RestoreCountersFlag
    	Restore(table Table, data []byte, flush FlushFlag, counters RestoreCountersFlag) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  3. src/runtime/cgo/gcc_s390x.S

    	std     %f10, 16(%r15)
    	std     %f11, 24(%r15)
    	std     %f12, 32(%r15)
    	std     %f13, 40(%r15)
    	std     %f14, 48(%r15)
    	std     %f15, 56(%r15)
    
    	/* restore g pointer */
    	lgr     %r13, %r3
    
    	/* call fn */
    	basr    %r14, %r2
    
    	/* restore floating point registers */
    	ld      %f8, 0(%r15)
    	ld      %f9, 8(%r15)
    	ld      %f10, 16(%r15)
    	ld      %f11, 24(%r15)
    	ld      %f12, 32(%r15)
    	ld      %f13, 40(%r15)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 05 16:41:48 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  4. analysis/analysis-api-impl-base/src/org/jetbrains/kotlin/analysis/api/impl/base/java/source/JavaElementTypeSourceWithSmartPointer.kt

        override val type: TYPE
            get() {
                val type = pointer.type
                    ?: error("Cannot restore a PsiType from $pointer")
    
                @Suppress("UNCHECKED_CAST")
                return type as TYPE
            }
    
        override fun toString(): String {
            return pointer.type?.toString() ?: "Cannot restore a PsiType from $pointer"
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 31 13:01:19 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. pkg/kubelet/cm/memorymanager/state/state_checkpoint_test.go

    	testCases := []struct {
    		description       string
    		checkpointContent string
    		expectedError     string
    		expectedState     *stateMemory
    	}{
    		{
    			"Restore non-existing checkpoint",
    			"",
    			"",
    			&stateMemory{},
    		},
    		{
    			"Restore valid checkpoint",
    			`{
    				"policyName":"static",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 30 03:35:26 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  6. src/runtime/rt0_linux_loong64.s

    	BEQ	R19, nocgo
    	MOVV	$_rt0_loong64_linux_lib_go(SB), R4
    	MOVV	$0, R5
    	JAL	(R19)
    	JMP	restore
    
    nocgo:
    	MOVV	$0x800000, R4                     // stacksize = 8192KB
    	MOVV	$_rt0_loong64_linux_lib_go(SB), R5
    	MOVV	R4, 8(R3)
    	MOVV	R5, 16(R3)
    	MOVV	$runtime·newosproc0(SB), R19
    	JAL	(R19)
    
    restore:
    	// Restore callee-save registers.
    	RESTORE_R22_TO_R31(3*8)
    	RESTORE_F24_TO_F31(13*8)
    	RET
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 15:50:43 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/runtime/sys_linux_arm64.s

    fallback:
    	MOVD	$SYS_clock_gettime, R8
    	SVC
    
    finish:
    	MOVD	0(RSP), R3	// sec
    	MOVD	8(RSP), R5	// nsec
    
    	MOVD	R20, RSP	// restore SP
    	// Restore vdsoPC, vdsoSP
    	// We don't worry about being signaled between the two stores.
    	// If we are not in a signal handler, we'll restore vdsoSP to 0,
    	// and no one will care about vdsoPC. If we are in a signal handler,
    	// we cannot receive another signal.
    	MOVD	16(RSP), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 16.7K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/stubtest_linux_ppc64le.S

    //                      TOC save slot is rewrittent to restore TOC.
    // NOTOC -> TOC [P10]: A PIC call stub using P10 instructions to call the global entry
    // NOTOC -> TOC [P8]:  A PIC call stub using P8 instructions to call the global entry
    //
    // TOC   -> dynamic:              A PLT call stub is generated which saves R2.
    //                                 TOC save slot is rewritten to restore TOC.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:06:17 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  9. src/runtime/asm_s390x.s

    	CMP	R1, $0
    	BEQ	nocgo
    	MOVD	$_rt0_s390x_lib_go(SB), R2
    	MOVD	$0, R3
    	BL	R1
    	BR	restore
    
    nocgo:
    	MOVD	$0x800000, R1              // stacksize
    	MOVD	R1, 0(R15)
    	MOVD	$_rt0_s390x_lib_go(SB), R1
    	MOVD	R1, 8(R15)                 // fn
    	MOVD	$runtime·newosproc(SB), R1
    	BL	R1
    
    restore:
    	// Restore F8-F15 from our stack frame.
    	FMOVD	16(R15), F8
    	FMOVD	24(R15), F9
    	FMOVD	32(R15), F10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/term/term_plan9.go

    }
    
    func getState(fd int) (*State, error) {
    	return nil, fmt.Errorf("terminal: GetState not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
    }
    
    func restore(fd int, state *State) error {
    	return fmt.Errorf("terminal: Restore not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
    }
    
    func getSize(fd int) (width, height int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 1.1K bytes
    - Viewed (0)
Back to top