Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 194 for Restore (0.17 sec)

  1. pkg/scheduler/framework/plugins/volumebinding/assume_cache_test.go

    	newPV := makePV("pv1", "").withVersion("5").PersistentVolume
    
    	// Restore PV that doesn't exist
    	cache.Restore("nothing")
    
    	// Add oldPV to cache
    	assumecache.AddTestObject(cache.AssumeCache, oldPV)
    	if err := verifyPV(cache, oldPV.Name, oldPV); err != nil {
    		t.Fatalf("Failed to GetPV() after initial update: %v", err)
    	}
    
    	// Restore PV
    	cache.Restore(oldPV.Name)
    	if err := verifyPV(cache, oldPV.Name, oldPV); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/sink/OutputEventRendererTest.groovy

            renderer.addStandardOutputListener(listener)
            renderer.configure(LogLevel.INFO)
            def snapshot = renderer.snapshot()
            renderer.configure(LogLevel.DEBUG)
    
            when:
            renderer.restore(snapshot)
            renderer.onOutput(event('info', LogLevel.INFO))
            renderer.onOutput(event('debug', LogLevel.DEBUG))
    
            then:
            listener.value.readLines() == ['info']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 19:25:32 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

            when:
            succeeds "restore"
    
            then:
            executedAndNotSkipped(':restore')
            original.text == backup.text
            original.text == "Original"
    
            when:
            // The whole setup is as follows:
            // - Both the restore and the backup task have an entry in the task history
            // - The output of the restore path is the input of the backup task.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  7. cmd/bucket-lifecycle.go

    }
    
    // Expiry returns expiry of restored object and true if restore-object has completed.
    // Otherwise returns zero value of time.Time and false.
    func (r restoreObjStatus) Expiry() (time.Time, bool) {
    	if r.Ongoing() {
    		return time.Time{}, false
    	}
    	return r.expiry, true
    }
    
    // Ongoing returns true if restore-object is ongoing.
    func (r restoreObjStatus) Ongoing() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  8. 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)
  9. pkg/proxy/metrics/metrics.go

    	// failures (resulting in a fall back to a full restore) that the proxy has seen.
    	IPTablesPartialRestoreFailuresTotal = metrics.NewCounter(
    		&metrics.CounterOpts{
    			Subsystem:      kubeProxySubsystem,
    			Name:           "sync_proxy_rules_iptables_partial_restore_failures_total",
    			Help:           "Cumulative proxy iptables partial restore failures",
    			StabilityLevel: metrics.ALPHA,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. internal/http/headers.go

    	AmzTagCount      = "x-amz-tagging-count"
    	AmzTagDirective  = "X-Amz-Tagging-Directive"
    
    	// S3 transition restore
    	AmzRestore            = "x-amz-restore"
    	AmzRestoreExpiryDays  = "X-Amz-Restore-Expiry-Days"
    	AmzRestoreRequestDate = "X-Amz-Restore-Request-Date"
    	AmzRestoreOutputPath  = "x-amz-restore-output-path"
    
    	// S3 extensions
    	AmzCopySourceIfModifiedSince   = "x-amz-copy-source-if-modified-since"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top