Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,629 for tffunction (0.15 sec)

  1. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesTest.groovy

    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.UnitTestPreconditions
    
    import javax.annotation.Nullable
    import java.util.function.BiConsumer
    import java.util.function.BiFunction
    import java.util.function.Consumer
    
    class AccessTrackingPropertiesTest extends AbstractAccessTrackingMapTest {
        private BiConsumer<Object, Object> onChange = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/TreeRangeMapTest.java

    import com.google.common.collect.testing.features.MapFeature;
    import java.util.List;
    import java.util.Map;
    import java.util.Map.Entry;
    import java.util.NoSuchElementException;
    import java.util.function.BiFunction;
    import junit.framework.Test;
    import junit.framework.TestCase;
    import junit.framework.TestSuite;
    
    /**
     * Tests for {@code TreeRangeMap}.
     *
     * @author Louis Wasserman
     */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

    ) -> None:
      """Runs the representative dataset through a function for calibration.
    
      NOTE: This is intended to be run in graph mode (TF1).
    
      The function is identified by the SignatureDef.
    
      Args:
        sess: The Session object to run the function in.
        signature_def: A SignatureDef that identifies a function by specifying the
          inputs and outputs.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableMap.java

    import java.util.Iterator;
    import java.util.Map;
    import java.util.Set;
    import java.util.SortedMap;
    import java.util.Spliterator;
    import java.util.Spliterators;
    import java.util.function.BiFunction;
    import java.util.function.BinaryOperator;
    import java.util.function.Function;
    import java.util.stream.Collector;
    import java.util.stream.Collectors;
    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 30 14:39:16 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

    import org.gradle.api.internal.tasks.TaskDependencyContainer;
    import org.gradle.api.provider.Provider;
    import org.gradle.internal.DisplayName;
    
    import javax.annotation.Nullable;
    import java.util.function.BiFunction;
    
    /**
     * <p>The internal view of a {@link Provider}.</p>
     *
     * <p>A {@code Provider<T>} has several different pieces of state associated with it:</p>
     *
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/AbstractBiMap.java

        for (Entry<? extends K, ? extends V> entry : map.entrySet()) {
          put(entry.getKey(), entry.getValue());
        }
      }
    
      @Override
      public void replaceAll(BiFunction<? super K, ? super V, ? extends V> function) {
        this.delegate.replaceAll(function);
        inverse.delegate.clear();
        Entry<K, V> broken = null;
        Iterator<Entry<K, V>> itr = this.delegate.entrySet().iterator();
        while (itr.hasNext()) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Aug 24 01:40:03 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/ConsumerProvidedVariantFinder.java

        private static class TransformCache {
            private final ConcurrentHashMap<CacheKey, List<CachedVariant>> cache = new ConcurrentHashMap<>();
            private final BiFunction<List<ImmutableAttributes>, ImmutableAttributes, List<CachedVariant>> action;
    
            public TransformCache(BiFunction<List<ImmutableAttributes>, ImmutableAttributes, List<CachedVariant>> action) {
                this.action = action;
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptionClosureInstrumentingClassVisitor.java

    import org.objectweb.asm.Type;
    
    import javax.annotation.Nonnull;
    import javax.annotation.Nullable;
    import java.util.Arrays;
    import java.util.EnumSet;
    import java.util.Optional;
    import java.util.function.BiFunction;
    
    import static org.gradle.internal.classanalysis.AsmConstants.ASM_LEVEL;
    import static org.objectweb.asm.Opcodes.IRETURN;
    import static org.objectweb.asm.Type.BOOLEAN_TYPE;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Maps.java

       * {@link java.util.stream.Collectors#toMap(java.util.function.Function,
       * java.util.function.Function) Collectors.toMap(Function, Function)}, which throws an {@code
       * IllegalStateException}.)
       *
       * @since 21.0
       */
      public static <T extends @Nullable Object, K extends Enum<K>, V>
          Collector<T, ?, ImmutableMap<K, V>> toImmutableEnumMap(
              java.util.function.Function<? super T, ? extends K> keyFunction,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

    import org.gradle.process.ExecOutput;
    import org.gradle.process.ExecSpec;
    import org.gradle.process.JavaExecSpec;
    
    import java.util.Map;
    import java.util.concurrent.Callable;
    import java.util.function.BiFunction;
    
    /**
     * A factory for creating instances of {@link Provider}.
     *
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top