Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,346 for rstore (0.15 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/asm_zos_s390x.s

    //
    TEXT ·CallLeFuncWithErr(SB), NOSPLIT, $0
    	MOVW PSALAA, R8
    	MOVD LCA64(R8), R8
    	MOVD CAA(R8), R9
    	MOVD g, GOCB(R9)
    
    	// Restore LE stack.
    	MOVD SAVSTACK_ASYNC(R8), R9 // R9-> LE stack frame saving address
    	MOVD 0(R9), R4              // R4-> restore previously saved stack frame pointer
    
    	MOVD parms_base+8(FP), R7 // R7 -> argument array
    	MOVD parms_len+16(FP), R8 // R8 number of arguments
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. pkg/scheduler/util/assumecache/assume_cache.go

    	// The logger that was chosen when setting up the cache.
    	// Will be used for all operations.
    	logger klog.Logger
    
    	// Synchronizes updates to store
    	rwMutex sync.RWMutex
    
    	// describes the object stored
    	description string
    
    	// Stores objInfo pointers
    	store cache.Indexer
    
    	// Index function for object
    	indexFunc cache.IndexFunc
    	indexName string
    }
    
    type objInfo struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/_gen/386Ops.go

    		{name: "MOVSSstore", argLength: 3, reg: fpstore, asm: "MOVSS", aux: "SymOff", faultOnNilArg0: true, symEffect: "Write"}, // fp32 store
    		{name: "MOVSDstore", argLength: 3, reg: fpstore, asm: "MOVSD", aux: "SymOff", faultOnNilArg0: true, symEffect: "Write"}, // fp64 store
    		{name: "MOVSSstoreidx1", argLength: 4, reg: fpstoreidx, asm: "MOVSS", aux: "SymOff", symEffect: "Write"},                // fp32 indexed by i store
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 14 08:10:32 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/cpumanager/state/state_checkpoint_test.go

    			}
    
    			// set values of cs1 instance so they are stored in checkpoint and can be read by cs2
    			cs1.SetDefaultCPUSet(tc.expectedState.defaultCPUSet)
    			cs1.SetCPUAssignments(tc.expectedState.assignments)
    
    			// restore checkpoint with previously stored values
    			cs2, err := NewCheckpointState(testingDir, testingCheckpoint, "none", nil)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/_gen/RISCV64Ops.go

    		// Atomic stores.
    		// store arg1 to *arg0. arg2=mem. returns memory.
    		{name: "LoweredAtomicStore8", argLength: 3, reg: gpstore, faultOnNilArg0: true, hasSideEffects: true},
    		{name: "LoweredAtomicStore32", argLength: 3, reg: gpstore, faultOnNilArg0: true, hasSideEffects: true},
    		{name: "LoweredAtomicStore64", argLength: 3, reg: gpstore, faultOnNilArg0: true, hasSideEffects: true},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  6. docs/bucket/lifecycle/DESIGN.md

    ### Expiry or removal events
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/dra/state/state_checkpoint_test.go

    	err = os.WriteFile(path.Join(testingDir, testingCheckpoint), []byte(oldCheckpointData), 0644)
    	assert.NoError(t, err, "could not store checkpoint data")
    
    	checkpoint := NewDRAManagerCheckpoint()
    	err = cpm.GetCheckpoint(testingCheckpoint, checkpoint)
    	assert.NoError(t, err, "could not restore checkpoint")
    
    	checkpointData, err := checkpoint.MarshalCheckpoint()
    	assert.NoError(t, err, "could not Marshal Checkpoint")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:13 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. src/runtime/sys_linux_ppc64x.s

    	JMP	finish
    
    nosaveg:
    	BL	(CTR)	// Call from VDSO
    
    finish:
    	MOVD	$0, R0		// Restore R0
    	MOVD	0(R1), R3	// sec
    	MOVD	8(R1), R5	// nsec
    	MOVD	R15, R1		// 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,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. src/runtime/sys_aix_ppc64.s

    
    // asmsyscall6 calls a library function with a function descriptor
    // stored in libcall_fn and store the results in libcall structure
    // Up to 6 arguments can be passed to this C function
    // Called by runtime.asmcgocall
    // It reserves a stack of 288 bytes for the C function. It must
    // follow AIX convention, thus the first local variable must
    // be stored at the offset 112, after the linker area (48 bytes)
    // and the argument area (64).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/memorymanager/state/state_checkpoint.go

    }
    
    // SetMachineState stores NUMANodeMap in State
    func (sc *stateCheckpoint) SetMachineState(memoryMap NUMANodeMap) {
    	sc.Lock()
    	defer sc.Unlock()
    
    	sc.cache.SetMachineState(memoryMap)
    	err := sc.storeState()
    	if err != nil {
    		klog.InfoS("Store state to checkpoint error", "err", err)
    	}
    }
    
    // SetMemoryBlocks stores memory assignments of container
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 16:05:48 UTC 2022
    - 5.3K bytes
    - Viewed (0)
Back to top