Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for needMin (0.1 sec)

  1. src/cmd/go/alldocs.go

    // If you are working in the directory containing the code imported as
    // "unicode" and want to run the tests for "unicode/utf8", you can type
    // "go test ./utf8" instead of needing to specify the full path.
    // Similarly, in the reverse situation, "go test .." will test "unicode" from
    // the "unicode/utf8" directory. Relative patterns are also allowed, like
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    // needm is limited in what routines it can call. In particular
    // it can only call nosplit functions (textflag 7) and cannot
    // do any scheduling that requires an m.
    //
    // In order to avoid needing heavy lifting here, we adopt
    // the following strategy: there is a stack of available m's
    // that can be stolen. Using compare-and-swap
    // to pop from the stack has ABA races, so we simulate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet.go

    		klog.V(3).InfoS("Resize is not feasible as request exceeds allocatable node resources", "pod", podCopy.Name)
    		return false, podCopy, v1.PodResizeStatusInfeasible
    	}
    
    	// Treat the existing pod needing resize as a new pod with desired resources seeking admit.
    	// If desired resources don't fit, pod continues to run with currently allocated resources.
    	activePods := kl.GetActivePods()
    	for _, p := range activePods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      return absl::OkStatus();
    }
    
    Status CopyStackTraces(const Graph& from, Graph* to) {
      // Copy over the stack traces.
      // TODO(jpienaar): This really shouldn't be needed, copying the Graph above
      // and then needing these traversals is unfortunate.
      std::unordered_map<string, Node*> node_map = from.BuildNodeNameIndex();
      for (Node* node : to->nodes()) {
        if (const Node* old_node = node_map[node->name()]) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/asm7.go

    	return (a.Index-obj.RBaseARM64)&REG_EXT != 0 || (a.Index-obj.RBaseARM64)&REG_LSL != 0
    }
    
    // Maximum PC-relative displacement.
    // The actual limit is ±2²⁰, but we are conservative
    // to avoid needing to recompute the literal pool flush points
    // as span-dependent jumps are enlarged.
    const maxPCDisp = 512 * 1024
    
    // ispcdisp reports whether v is a valid PC-relative displacement.
    func ispcdisp(v int32) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
Back to top