Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 562 for refStore (0.25 sec)

  1. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/source/PrintStreamLoggingSystemTest.groovy

            then:
            stream != originalStream
    
            when:
            loggingSystem.restore(snapshot)
    
            then:
            stream == originalStream
        }
    
        def originalStreamCanBeReplacedBetweenCapture() {
            def stream2 = new PrintStream(new ByteArrayOutputStream())
    
            given:
            loggingSystem.restore(loggingSystem.startCapture())
            stream = stream2
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. src/runtime/mkpreempt.go

    	l.regs = append(l.regs, regPos{saveOp: sop, restoreOp: rop, reg: reg, pos: l.stack})
    	l.stack += size
    }
    
    func (l *layout) addSpecial(save, restore string, size int) {
    	l.regs = append(l.regs, regPos{save: save, restore: restore, pos: l.stack})
    	l.stack += size
    }
    
    func (l *layout) save() {
    	for _, reg := range l.regs {
    		if reg.save != "" {
    			p(reg.save, reg.pos)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 15.3K bytes
    - Viewed (0)
  3. docs/bucket/lifecycle/DESIGN.md

    ```
    ...
            "MetaUsr": {
             "X-Amz-Restore-Expiry-Days": "4",
              "X-Amz-Restore-Request-Date": "Mon, 22 Feb 2021 21:10:09 GMT",
              "x-amz-restore": "ongoing-request=false, expiry-date=Sat, 27 Feb 2021 00:00:00 GMT",
    ...
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/builder/testdata/multi-rules-new-chain-v6-restore.golden

    Leonardo Sarra <******@****.***> 1718116194 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 96 bytes
    - Viewed (0)
  5. pkg/util/iptables/testing/fake_test.go

    		`, "\n"))
    	if buf.String() != expected {
    		t.Fatalf("bad post-restore dump. expected:\n%s\n\ngot:\n%s\n", expected, buf.Bytes())
    	}
    
    	// Trying to use Restore to delete a chain that another chain jumps to will fail
    	rules = dedent.Dedent(strings.Trim(`
    		*nat
    		:KUBE-MISC-TWO - [0:0]
    		-X KUBE-MISC-TWO
    		COMMIT
    		`, "\n"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  6. 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)
  7. pkg/kubelet/cm/cpumanager/state/state_checkpoint_test.go

    		policyName        string
    		initialContainers containermap.ContainerMap
    		expectedError     string
    		expectedState     *stateMemory
    	}{
    		{
    			"Restore non-existing checkpoint",
    			"",
    			"none",
    			containermap.ContainerMap{},
    			"",
    			&stateMemory{},
    		},
    		{
    			"Restore default cpu set",
    			`{
    				"policyName": "none",
    				"defaultCPUSet": "4-6",
    				"entries": {},
    				"checksum": 354655845
    			}`,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_restore_op.mlir

    // RUN: tf-quant-opt %s -split-input-file -verify-diagnostics \
    // RUN:   -quant-insert-restore-op | FileCheck %s
    // RUN: tf-quant-opt %s -split-input-file -verify-diagnostics \
    // RUN:   -mlir-print-debuginfo -mlir-print-local-scope \
    // RUN:   -quant-insert-restore-op | FileCheck %s --check-prefix CHECK-LOC
    
    // RestoreV2 op created for a single VarHandleOp.
    
    module attributes {tf_saved_model.semantics} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  9. pkg/util/iptables/iptables_test.go

    	// both flags true
    	err := runner.Restore(TableNAT, []byte{}, FlushTables, RestoreCounters)
    	if err != nil {
    		t.Errorf("%s flush,restore: Expected success, got %v", protocol, err)
    	}
    
    	commandSet := sets.New(fcmd.CombinedOutputLog[1]...)
    	if !commandSet.HasAll(iptablesRestoreCmd, "-T", string(TableNAT), "--counters") || commandSet.HasAny("--noflush") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:21:59 UTC 2023
    - 46.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/InputTrackingStateTest.kt

            state.restoreForCurrentThread() // Revert call at <2>, restore to "disabled" state set by call at <1>
            assertFalse(state.isEnabledForCurrentThread())
    
            state.restoreForCurrentThread() // Revert call at <1>, restore to "enabled" state
            assertTrue(state.isEnabledForCurrentThread())
        }
    
        @Test
        fun `disable and restore calls can be mixed non-trivially`() {
            val state = InputTrackingState()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top