Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 377 for Restore (0.12 sec)

  1. 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)
  2. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export.h

    // when the conversion fails.
    //
    // * `checkpoint_dir` is the directory where checkpoints where variable values
    // are stored. This value will be fed to the "file_prefix" tensor to restore the
    // variables.
    // * `function_aliases` maps the actual function name to the function alias.
    // This associates the quantized functions to the original functions' aliases.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_export_test.cc

                 attr {
                   key: "tf_saved_model.index_path",
                   value { list { s: "__tf_file_prefix" } }
                 }
               })pb",
          &graph_def));
    
      // Restore op's name should start with "restore_op" and the save op's name
      // should start with "tf_quant__save_op".
      const std::vector<std::string> control_ret_node_names = {
          "restore_op_0", "tf_quant__save_op_0"};
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 11:11:25 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. src/runtime/signal_unix.go

    	// so sleeping here is not a waste of time.
    	usleep(1000)
    
    	// If the signal didn't cause the program to exit, restore the
    	// Go signal handler and carry on.
    	//
    	// We may receive another instance of the signal before we
    	// restore the Go handler, but that is not so bad: we know
    	// that the Go program has been ignoring the signal.
    	setsig(sig, abi.FuncPCABIInternal(sighandler))
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/role/AdminRoleAction.java

            });
        }
    
        protected void searchPaging(final RenderData data, final SearchForm form) {
            RenderDataUtil.register(data, "roleItems", roleService.getRoleList(rolePager)); // page navi
    
            // restore from pager
            copyBeanToBean(rolePager, form, op -> op.include("id"));
        }
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/resources/org/gradle/reporting/flot.selection.min.js

    x=Math.min(selection.first.x,selection.second.x)+.5,y=Math.min(selection.first.y,selection.second.y)+.5,w=Math.abs(selection.second.x-selection.first.x)-1,h=Math.abs(selection.second.y-selection.first.y)-1;ctx.fillRect(x,y,w,h);ctx.strokeRect(x,y,w,h);ctx.restore()}});plot.hooks.shutdown.push(function(plot,eventHolder){eventHolder.unbind("mousemove",onMouseMove);eventHolder.unbind("mousedown",onMouseDown);if(mouseUpHandler)$(document).unbind("mouseup",mouseUpHandler)})}$.plot.plugins.push({init:init,optio...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/abi.go

    	if base.Ctxt.Arch.Name == "ppc64le" && base.Ctxt.Flag_dynlink {
    		// cannot tailcall on PPC64 with dynamic linking, as we need
    		// to restore R2 after call.
    		tailcall = false
    	}
    	if base.Ctxt.Arch.Name == "amd64" && wrapperABI == obj.ABIInternal {
    		// cannot tailcall from ABIInternal to ABI0 on AMD64, as we need
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. src/runtime/race_amd64.s

    	MOVQ	R11, RARG1
    	// void __tsan_func_enter(ThreadState *thr, void *pc);
    	MOVQ	$__tsan_func_enter(SB), AX
    	// racecall<> preserves BX
    	CALL	racecall<>(SB)
    	MOVQ	BX, DX	// restore function entry context
    	RET
    
    // func runtime·racefuncexit()
    // Called from instrumented code.
    TEXT	runtime·racefuncexit(SB), NOSPLIT, $0-0
    	MOVQ	g_racectx(R14), RARG0	// goroutine context
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. tools/istio-iptables/pkg/capture/run.go

    }
    
    func (cfg *IptablesConfigurator) executeCommands(iptVer, ipt6Ver *dep.IptablesVersion) error {
    	if cfg.cfg.RestoreFormat {
    		// Execute iptables-restore
    		if err := cfg.executeIptablesRestoreCommand(iptVer, true); err != nil {
    			return err
    		}
    		// Execute ip6tables-restore
    		if err := cfg.executeIptablesRestoreCommand(ipt6Ver, false); err != nil {
    			return err
    		}
    	} else {
    		// Execute iptables commands
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  10. pkg/registry/core/service/portallocator/allocator_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	if err := r.Restore(*otherPr, dst.Data); err != ErrMismatchedNetwork {
    		t.Fatal(err)
    	}
    	other, err := NewInMemory(*pr2)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if err := other.Restore(*pr2, dst.Data); err != nil {
    		t.Fatal(err)
    	}
    
    	for _, n := range ports {
    		if !other.Has(n) {
    			t.Errorf("restored range does not have %d", n)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top