Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 293 for refStore (0.21 sec)

  1. 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)
  2. 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)
  3. pkg/registry/core/service/portallocator/allocator_test.go

    		t.Fatal(err)
    	}
    	_, err = NewInMemory(*otherPr)
    	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) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 14K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/transforms/xla_call_module_serialization.cc

      auto function_list = DesymbolizeCustomCallCalledIndex(*stablehlo_module);
      if (failed(function_list)) return failure();
      op.setFunctionListAttr(*function_list);
    
      // Restore the deserialized stablehlo module's attributes to the reconstructed
      // stablehlo module. The stablehlo module's attributes can contain important
      // information such as SPMD num_replicas and num_partitions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  7. internal/logger/console.go

    			ansiSaveAttributes()
    			// Print banner with or without the log tag
    			if !tagPrinted {
    				fmt.Fprint(Output, logBanner)
    				tagPrinted = true
    			} else {
    				fmt.Fprint(Output, emptyBanner)
    			}
    			// Restore the text color of the error message
    			ansiRestoreAttributes()
    			ansiMoveRight(bannerWidth)
    			// Continue  error message printing
    			fmt.Fprintln(Output, line)
    			break
    		}
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/passes/prepare_quantize.cc

            !enable_per_channel_quantized_weight_, func_op_quant_spec,
            func_op_quant_scale_spec,
            /*infer_tensor_ranges=*/true, /*legacy_float_scale=*/false,
            /*is_qdq_conversion=*/false);
    
        // Restore constants as stablehlo::ConstantOp.
        RewritePatternSet patterns_2(ctx);
        patterns_2
            .add<MergeConsecutiveQuantizeCast, ConvertArithConstToStablehloConstOp>(
                ctx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 03 05:11:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. src/path/filepath/path_test.go

    		t.Fatalf("chdir %s: %v", dir, err)
    	}
    
    	t.Cleanup(func() {
    		if err := os.Chdir(olddir); err != nil {
    			t.Errorf("restore original working directory %s: %v", olddir, err)
    			os.Exit(1)
    		}
    	})
    }
    
    func chtmpdir(t *testing.T) (restore func()) {
    	oldwd, err := os.Getwd()
    	if err != nil {
    		t.Fatalf("chtmpdir: %v", err)
    	}
    	d, err := os.MkdirTemp("", "test")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/keymatch/AdminKeymatchAction.java

        }
    
        protected void searchPaging(final RenderData data, final SearchForm form) {
            RenderDataUtil.register(data, "keyMatchItems", keyMatchService.getKeyMatchList(keyMatchPager)); // page navi
    
            // restore from pager
            copyBeanToBean(keyMatchPager, form, op -> op.include("term", "query"));
        }
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
Back to top