Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 293 for refStore (0.14 sec)

  1. src/runtime/cgo/gcc_libinit.c

    		nanosleep(&ts, nil);
    	}
    	return EAGAIN;
    }
    
    static void
    pthread_key_destructor(void* g) {
    	if (x_crosscall2_ptr != NULL) {
    		// fn == NULL means dropm.
    		// We restore g by using the stored g, before dropm in runtime.cgocallback,
    		// since the g stored in the TLS by Go might be cleared in some platforms,
    		// before this destructor invoked.
    		x_crosscall2_ptr(NULL, g, 0, 0);
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 01:07:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. tools/istio-clean-iptables/pkg/cmd/cleanup.go

    		DeleteRule(ext, iptV, constants.MANGLE, constants.OUTPUT,
    			"-p", constants.TCP, "-m", "connmark", "--mark", cfg.InboundTProxyMark, "-j", "CONNMARK", "--restore-mark")
    	}
    
    	// Must be last, the others refer to it
    	chains = []string{constants.ISTIOREDIRECT, constants.ISTIOINREDIRECT}
    	flushAndDeleteChains(ext, iptV, constants.NAT, chains)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

      let summary = "Restore variable tensors";
      let description = [{
        This is the MLRT version of tf.IfrtRestoreVariableOp.
    
        This Op is similar to a combination of RestoreV2 and AssignVariable Op, but
        this Op's execution is asynchronous.
    
        This Op is specific to MLRT runtime and is not a stable interface for
        serialization.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/AdminCrawlinginfoAction.java

        protected void searchPaging(final RenderData data, final SearchForm form) {
            RenderDataUtil.register(data, "crawlingInfoItems", crawlingInfoService.getCrawlingInfoList(crawlingInfoPager)); // page navi
    
            // restore from pager
            copyBeanToBean(crawlingInfoPager, form, op -> op.include("sessionId"));
        }
    
        // ===================================================================================
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  5. src/runtime/lock_futex.go

    		futexwakeup(key32(&l.key), 1)
    	}
    
    	gp := getg()
    	gp.m.mLockProfile.recordUnlock(l)
    	gp.m.locks--
    	if gp.m.locks < 0 {
    		throw("runtimeĀ·unlock: lock count")
    	}
    	if gp.m.locks == 0 && gp.preempt { // restore the preemption request in case we've cleared it in newstack
    		gp.stackguard0 = stackPreempt
    	}
    }
    
    // One-time notifications.
    func noteclear(n *note) {
    	n.key = 0
    }
    
    func notewakeup(n *note) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:34 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top