Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for precision (0.34 sec)

  1. android/guava/src/com/google/common/cache/LocalCache.java

    import java.util.logging.Logger;
    import javax.annotation.CheckForNull;
    
    /**
     * The concurrent hash map implementation built by {@link CacheBuilder}.
     *
     * <p>This implementation is heavily derived from revision 1.96 of <a
     * href="http://tinyurl.com/ConcurrentHashMap">ConcurrentHashMap.java</a>.
     *
     * @author Charles Fry
     * @author Bob Lee ({@code com.google.common.collect.MapMaker})
     * @author Doug Lea ({@code ConcurrentHashMap})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/cache/LocalCache.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * The concurrent hash map implementation built by {@link CacheBuilder}.
     *
     * <p>This implementation is heavily derived from revision 1.96 of <a
     * href="http://tinyurl.com/ConcurrentHashMap">ConcurrentHashMap.java</a>.
     *
     * @author Charles Fry
     * @author Bob Lee ({@code com.google.common.collect.MapMaker})
     * @author Doug Lea ({@code ConcurrentHashMap})
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.4.md

    * azure: kube-up respects AZURE_RESOURCE_GROUP ([#28700](https://github.com/kubernetes/kubernetes/pull/28700), [@colemickens](https://github.com/colemickens))
    * Modified influxdb petset to provision persistent  volume. ([#28840](https://github.com/kubernetes/kubernetes/pull/28840), [@jszczepkowski](https://github.com/jszczepkowski))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    	 * ELF and Windows PE systems do.
    	 * OS X and Plan 9 do not.
    	 * And if we're using external linking mode, the point is moot,
    	 * since it's not our decision; that code expects the sections in
    	 * segtext.
    	 */
    	var segro *sym.Segment
    	if ctxt.IsELF && ctxt.LinkMode == LinkInternal {
    		segro = &Segrodata
    	} else if ctxt.HeadType == objabi.Hwindows {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet.go

    			klog.ErrorS(err, "SetPodAllocation failed", "pod", klog.KObj(updatedPod))
    			return pod
    		}
    	}
    	if resizeStatus != "" {
    		// Save resize decision to checkpoint
    		if err := kl.statusManager.SetPodResizeStatus(updatedPod.UID, resizeStatus); err != nil {
    			//TODO(vinaykul,InPlacePodVerticalScaling): Can we recover from this in some way? Investigate
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

              // Ternimator ops, for example, tfl::yield op, should be ignored since
              // the argument can be used for yielding as the `body` function result
              // and that does not give any meaningful points to the decision
              // whether the given arugment is a read-only variable or not.
              if (user->hasTrait<OpTrait::IsTerminator>()) continue;
              if (!llvm::isa<mlir::TF::ReadVariableOp>(user)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    // to make different method call sequences on x, but there must be no
    // other source of non-determinism in the call sequences.
    //
    // When faced with a new decision, x chooses randomly. Future explorations
    // of that path will choose successive values for the result. Thus, stopping
    // the loop after a fixed number of iterations gives somewhat stochastic
    // testing.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top