Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for Restore (0.51 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. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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. pkg/proxy/ipvs/proxier.go

    			lines := utiliptables.ExtractLines(proxier.iptablesData.Bytes(), pErr.Line(), 3)
    			proxier.logger.Error(pErr, "Failed to execute iptables-restore", "rules", lines)
    		} else {
    			proxier.logger.Error(err, "Failed to execute iptables-restore", "rules", proxier.iptablesData.Bytes())
    		}
    		metrics.IPTablesRestoreFailuresTotal.Inc()
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            boolean modified = false;
            for (Profile profile : model.getProfiles()) {
                Activation activation = profile.getActivation();
                if (activation != null) {
                    // restore activation
                    profile = profile.withActivation(activations.get(profile.getId()));
                    modified = true;
                }
                profiles.add(profile);
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
Back to top