Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 688 for restoreAt (0.18 sec)

  1. src/runtime/time_linux_amd64.s

    	MOVQ	0(SP), CX	// monotonic sec
    	IMULQ	$1000000000, CX
    	MOVQ	8(SP), DX	// monotonic nsec
    
    	MOVQ	R12, SP		// Restore real 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.
    	MOVQ	8(SP), SI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 2K bytes
    - Viewed (0)
  2. pkg/scheduler/util/assumecache/assume_cache_test.go

    	newObj := makeObj("pvc1", "5", "")
    
    	// Restore object that doesn't exist
    	cache.Restore("nothing")
    
    	// Add old object to cache.
    	informer.add(oldObj)
    	verify(ktesting.WithStep(tCtx, "after initial update"), cache, oldObj.GetName(), oldObj, oldObj)
    
    	// Restore object.
    	cache.Restore(oldObj.GetName())
    	verify(ktesting.WithStep(tCtx, "after initial Restore"), cache, oldObj.GetName(), oldObj, oldObj)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. test/fixedbugs/issue59367.go

    	_ = b[1]            // bounds check
    	x := *p             // load a byte
    	y := uint16(x)      // zero extend to 16 bits
    	b[0] = byte(y >> 8) // compute ROLW
    	b[1] = byte(y)
    	nop()               // spill/restore ROLW
    	b[0] = byte(y >> 8) // use ROLW
    	b[1] = byte(y)
    }
    
    //go:noinline
    func f32(p *uint8, b []byte) {
    	_ = b[3]             // bounds check
    	x := *p              // load a byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 21:11:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. src/runtime/rt0_netbsd_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_netbsd_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
    - 1.8K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/runtime/asm_arm.s

    	BL	runtime·cgocallbackg(SB)
    
    	// Restore g->sched (== m->curg->sched) from saved values.
    	MOVW	0(R13), R5
    	MOVW	R5, (g_sched+gobuf_pc)(g)
    	MOVW	$(12+4)(R13), R4	// must match frame size
    	MOVW	R4, (g_sched+gobuf_sp)(g)
    
    	// Switch back to m->g0's stack and restore m->g0->sched.sp.
    	// (Unlike m->curg, the g0 goroutine never uses sched.pc,
    	// so we do not have to restore it.)
    	MOVW	g_m(g), R8
    	MOVW	m_g0(R8), R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 23 21:00:52 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  8. 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)
  9. platforms/jvm/language-java/src/test/groovy/org/gradle/api/internal/tasks/compile/incremental/transaction/CompileTransactionTest.groovy

                return hasOnlyDirectories(transactionDir)
            }
    
            then:
            isTransactionDirEmpty
        }
    
        def "files are stashed and restored on compile failure"() {
            def destinationDir = spec.getDestinationDir()
            createNewFile(new File(destinationDir, "file.txt"))
            createNewFile(new File(destinationDir, "subDir/another-file.txt"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 18K bytes
    - Viewed (0)
  10. 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)
Back to top