Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 61 for Restore (0.24 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. src/cmd/link/internal/ppc64/asm.go

    	su := ldr.MakeSymbolUpdater(s)
    	su.SetRelocSym(ri, stub.Sym())
    
    	// A type 1 call must restore the toc pointer after the call.
    	if stubType == 1 {
    		su.MakeWritable()
    		p := su.Data()
    
    		// Check for a toc pointer restore slot (a nop), and rewrite to restore the toc pointer.
    		var nop uint32
    		if len(p) >= int(r.Off()+8) {
    			nop = ctxt.Arch.ByteOrder.Uint32(p[r.Off()+4:])
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/compile/internal/ssa/prove.go

    	ft.limitStack = append(ft.limitStack, checkpointBound)
    	ft.orderS.Checkpoint()
    	ft.orderU.Checkpoint()
    }
    
    // restore restores known relation to the state just
    // before the previous checkpoint.
    // Called when backing up on a branch.
    func (ft *factsTable) restore() {
    	if ft.unsatDepth > 0 {
    		ft.unsatDepth--
    	} else {
    		ft.unsat = false
    	}
    	for {
    		old := ft.stack[len(ft.stack)-1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/cmd/compile/internal/ssa/regalloc.go

    // the spill at this point, so we allocate the spill as blockless initially.
    // The restore is then generated to load v back into a register so it can
    // be used. Subsequent uses of v will use the restored value c instead.
    //
    // What remains is the question of where to schedule the spill.
    // During allocation, we keep track of the dominator of all restores of v.
    // The spill of v must dominate that block. The spill must also be issued at
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                Activation activation = profile.getActivation();
    
                if (activation == null) {
                    continue;
                }
    
                // restore activation
                profile.setActivation(activations.get(profile.getId()));
            }
        }
    
        private Model interpolateModel(Model model, ModelBuildingRequest request, ModelProblemCollector problems) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    	"istio.io/istio/pkg/test/util/retry"
    )
    
    func createConfigs(configs []*config.Config, store model.ConfigStore, t testing.TB) {
    	t.Helper()
    	for _, cfg := range configs {
    		_, err := store.Create(*cfg)
    		if err != nil && strings.Contains(err.Error(), "item already exists") {
    			_, err := store.Update(*cfg)
    			if err != nil {
    				t.Fatalf("error occurred updating ServiceEntry config: %v", err)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  10. 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)
Back to top