Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 108 for needMin (0.6 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    Gradle provides lazy properties, which delay calculating a property’s value until it’s actually required.
    
    Lazy properties provide three main benefits:
    
    1. *Deferred Value Resolution:* Allows wiring Gradle models without needing to know when a property's value will be known.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  2. src/runtime/mgcsweep.go

    			mheap_.userArena.readyList.insert(s)
    			unlock(&mheap_.lock)
    		})
    		return false
    	}
    
    	if spc.sizeclass() != 0 {
    		// Handle spans for small objects.
    		if nfreed > 0 {
    			// Only mark the span as needing zeroing if we've freed any
    			// objects, because a fresh span that had been allocated into,
    			// wasn't totally filled, but then swept, still has all of its
    			// free slots zeroed.
    			s.needzero = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    
    Many long-form options have short-option equivalents. The following are equivalent:
    
    ----
    gradle --help
    gradle -h
    ----
    
    NOTE: Many command-line flags can be specified in `gradle.properties` to avoid needing to be typed.
    See the <<build_environment.adoc#sec:gradle_configuration_properties, Configuring build environment guide>> for details.
    
    == Command-line usage
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_binary.adoc

    A plugin can provide dependency declarations in custom blocks that allow users to declare dependencies in a type-safe and context-aware way.
    
    For instance, instead of users needing to know and use the underlying `Configuration` name to add dependencies, a custom `dependencies` block lets the plugin pick a meaningful name that
    can be used consistently.
    
    === Adding a custom `dependencies` block
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 29 02:31:44 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  5. tensorflow/c/eager/tape.h

    // upstream gradients.
    //
    // TODO(apassos) provide concrete template instantiations for TFE_TensorHandle
    // specialization, which is blocked by quite a few things needing to loop back
    // into python now.
    template <typename Gradient, typename BackwardFunction, typename TapeTensor>
    class VSpace {
     public:
      virtual ~VSpace() {}
    
      // Returns the number of elements in the gradient tensor.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 02 12:40:29 UTC 2024
    - 47.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/CacheBuilder.java

     * href="https://www.javadoc.io/doc/com.github.ben-manes.caffeine/caffeine/latest/com.github.benmanes.caffeine/com/github/benmanes/caffeine/cache/CacheLoader.html">{@code
     * CacheLoader}</a>, etc.), so you can use Caffeine without needing to use any Guava types.
     * Caffeine's types are better than Guava's, especially for <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

      //        the while for these resources.
      //
      // Note that for WhileRegion ops, if a resource is written, it will be written
      // only in the body and not the condition, so the hoister analysis will infer
      // it as needing a read as well.
    
      // Generate hoisted reads before the while.
      hoister.GenerateHoistedReads();
    
      // Replace just the read-only resources with the hoisted reads.
      hoister.ReplaceResourceLoads(/*read_only=*/true);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. src/math/big/natdiv.go

    long division algorithm, the fixup loop essentially never runs.
    
    In the recursive algorithm, the extra digit in (2·⌊n/2⌋+1)-by-(⌊n/2⌋+1)-digit
    division has exactly the same effect: the probability of needing a fixup is the
    same 2/B. Even better, we can allow the general case x/y < 2T and the fixup
    probability only grows to 4/B, still essentially zero.
    
    
    References
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/lib.go

    		setCgoAttr(ctxt, d.file, d.pkg, d.directives, hostObjSyms)
    	}
    	ctxt.cgodata = nil
    
    	if ctxt.LinkMode == LinkInternal {
    		// Drop all the cgo_import_static declarations.
    		// Turns out we won't be needing them.
    		for symIdx := range hostObjSyms {
    			if l.SymType(symIdx) == sym.SHOSTOBJ {
    				// If a symbol was marked both
    				// cgo_import_static and cgo_import_dynamic,
    				// then we want to make it cgo_import_dynamic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  10. pkg/controller/daemon/daemon_controller.go

    	// error channel to communicate back failures.  make the buffer big enough to avoid any blocking
    	errCh := make(chan error, createDiff+deleteDiff)
    
    	logger.V(4).Info("Nodes needing daemon pods for daemon set, creating", "daemonset", klog.KObj(ds), "needCount", nodesNeedingDaemonPods, "createCount", createDiff)
    	createWait := sync.WaitGroup{}
    	// If the returned error is not nil we have a parse error.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
Back to top