Lines Matching defs:compute
219 * another thread to compute the value if necessary. Only one value will
243 * @param computer used to compute values for keys
499 V compute(K key, E entry, Function<? super K, ? extends V> computer);
503 * #compute} if necessary. Returns null if a value isn't available at
504 * which point CustomConcurrentHashMap tries to compute a new value.
2045 V value = computingStrategy.compute(key, entry, computer);
2048 "compute() returned null unexpectedly");