Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 13 of 13 for Combiner4 (0.04 seconds)

  1. docs/fr/docs/alternatives.md

    /// check | A inspiré **FastAPI** à
    
    Être un micro-framework. Il est donc facile de combiner les outils et les pièces nécessaires.
    
    Proposer un système de routage simple et facile à utiliser.
    
    ///
    
    ### <a href="https://requests.readthedocs.io" class="external-link" target="_blank">Requests</a>
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Oct 11 17:48:49 GMT 2025
    - 27.5K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/math/StatsTesting.java

              .doubleValue();
    
      /**
       * Returns a stream of a million primitive doubles. The stream is parallel, which should cause
       * {@code collect} calls to run in multithreaded mode, so testing the combiner as well as the
       * supplier and accumulator.
       */
      static DoubleStream megaPrimitiveDoubleStream() {
        return DoubleStream.iterate(0.0, x -> x + 1.0).limit(MEGA_STREAM_COUNT).parallel();
      }
    
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Dec 19 18:03:30 GMT 2024
    - 23.8K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        }
    
        /*
         * While the current implementation returns `this`, that's not something we mean to guarantee.
         * Anyway, the purpose of this method is to implement a BinaryOperator combiner for a Collector,
         * so its return value will get used naturally.
         */
        @SuppressWarnings("CanIgnoreReturnValueSuggester")
        Builder<K, V> combine(ImmutableSortedMap.Builder<K, V> other) {
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Sep 22 21:07:18 GMT 2025
    - 52.9K bytes
    - Click Count (0)
Back to Top