Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for restoreAt (0.27 sec)

  1. src/runtime/asm_amd64.s

    	MOVQ	$8, R12
    	BYTE	$0xcc
    	JMP	restore
    
    restore:
    	// Calls and failures resume here.
    	//
    	// Set R12 to 16 and invoke INT3. The debugger should restore
    	// all registers except RIP and RSP and resume execution.
    	MOVQ	$16, R12
    	BYTE	$0xcc
    	// We must not modify flags after this point.
    
    	// Restore pointer-containing registers, which may have been
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 11 20:38:24 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier.go

    			}
    		}
    		natRules.Write("COMMIT")
    		natLines := append(natChains.Bytes(), natRules.Bytes()...)
    		// Write it.
    		err = ipt.Restore(utiliptables.TableNAT, natLines, utiliptables.NoFlushTables, utiliptables.RestoreCounters)
    		if err != nil {
    			logger.Error(err, "Failed to execute iptables-restore", "table", utiliptables.TableNAT)
    			metrics.IPTablesRestoreFailuresTotal.Inc()
    			encounteredError = true
    		}
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  3. cmd/erasure-object.go

    	return err
    }
    
    // RestoreTransitionedObject - restore transitioned object content locally on this cluster.
    // This is similar to PostObjectRestore from AWS GLACIER
    // storage class. When PostObjectRestore API is called, a temporary copy of the object
    // is restored locally to the bucket on source cluster until the restore expiry date.
    // The copy that was transitioned continues to reside in the transitioned tier.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

        // If weight_shape[2] != 1, it means weight shape was already restored.
        if (weight_shape[2] != 1) return failure();
    
        // Weight was reshaped into [H, W, 1, InxMul].
        // Since we know in_channels from input_shape, we can derive multiplier.
        int64_t in_channels = input_shape[3];
        // If in_channels is 1, there is no need to restore weight shape.
        if (in_channels == 1) return failure();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container.go

    }
    
    // restoreSpecsFromContainerLabels restores all information needed for killing a container. In some
    // case we may not have pod and container spec when killing a container, e.g. pod is deleted during
    // kubelet restart.
    // To solve this problem, we've already written necessary information into container labels. Here we
    // just need to retrieve them from container labels and restore the specs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  6. src/cmd/go/go_test.go

    	tg.sleep()
    	restore := addVar(sys, 0)
    	restore()
    	tg.wantNotStale("p1", "", "./testgo list claims p1 is stale, incorrectly, after updating mtime of runtime/internal/sys/sys.go")
    
    	// But changing content of any file should have an effect.
    	// Previously zversion.go was the only one that mattered;
    	// now they all matter, so keep using sys.go.
    	restore = addVar(sys, 1)
    	defer restore()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            def execTimeValue = property.calculateExecutionTimeValue()
    
            then:
            assertCollectionIs(toImmutable(['2', '3', '4']), execTimeValue.toValue().get())
        }
    
        def "property restores undefined-safe items"() {
            given:
            property.add("1")
            property.appendAll(supplierWithChangingExecutionTimeValues(List, value, value))
            property.add("3")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  8. src/testing/testing.go

    // after runs after all testing.
    func (m *M) after() {
    	m.afterOnce.Do(func() {
    		m.writeProfiles()
    	})
    
    	// Restore PanicOnExit0 after every run, because we set it to true before
    	// every run. Otherwise, if m.Run is called multiple times the behavior of
    	// os.Exit(0) will not be restored after the second run.
    	if *panicOnExit0 {
    		m.deps.SetPanicOnExit0(false)
    	}
    }
    
    func (m *M) writeProfiles() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/MapPropertySpec.groovy

            when:
            def execTimeValue = property.calculateExecutionTimeValue()
    
            then:
            execTimeValue.toValue().isMissing()
        }
    
        def "property restores undefined-safe items"() {
            given:
            property.put("a", "1")
            property.insertAll(supplierWithChangingExecutionTimeValues(Map, value, value))
            property.put("c", "3")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 58.7K bytes
    - Viewed (0)
  10. cmd/erasure-healing_test.go

    	hr, err := obj.HealObject(ctx, bucket, object, "", madmin.HealOpts{ScanMode: madmin.HealNormalScan})
    	if err != nil {
    		t.Fatalf("Failed to heal object - %v", err)
    	}
    
    	// Check if the empty directory is restored in the first disk
    	_, err = firstDisk.StatVol(context.Background(), pathJoin(bucket, encodeDirObject(object)))
    	if err != nil {
    		t.Fatalf("Expected object to be present but stat failed - %v", err)
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 49K bytes
    - Viewed (0)
Back to top