Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Combiner5 (0.12 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/provider/Provider.java

         * provider value using the supplied combiner function.
         *
         * <p>
         * The resulting provider will be live, so that each time it is queried, it queries both this and the supplied provider
         * and applies the combiner to the results. Whenever any of the providers has no value, the new provider
         * will also have no value and the combiner will not be called.
         * </p>
         *
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

         * provider value using the supplied combiner function.
         *
         * <p>
         * The resulting provider will be live, so that each time it is queried, it queries both supplied providers
         * and applies the combiner to the results. Whenever any of the providers has no value, the new provider
         * will also have no value and the combiner will not be called.
         * </p>
         *
         * <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)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ProviderInternal.java

         */
        ExecutionTimeValue<? extends T> calculateExecutionTimeValue();
    
        @Override
        default <U, R> Provider<R> zip(Provider<U> right, BiFunction<? super T, ? super U, ? extends R> combiner) {
            return new BiProvider<>(null, this, right, combiner);
        }
    
        /**
         * Returns a provider that attaches the side effect to the values it produces.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/WatchableHierarchies.java

    import java.util.Deque;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    import java.util.function.Predicate;
    import java.util.stream.Stream;
    
    import static org.gradle.internal.Combiners.nonCombining;
    
    public class WatchableHierarchies {
        private static final Logger LOGGER = LoggerFactory.getLogger(WatchableHierarchies.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. docs/fr/docs/tutorial/query-params-str-validations.md

    La documentation sera donc mise à jour automatiquement pour autoriser plusieurs valeurs :
    
    <img src="/img/tutorial/query-params-str-validations/image02.png">
    
    ### Combiner liste de paramètres et valeurs par défaut
    
    Et l'on peut aussi définir une liste de valeurs par défaut si aucune n'est fournie :
    
    ```Python hl_lines="9"
    {!../../../docs_src/query_params_str_validations/tutorial012.py!}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jul 27 18:53:21 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. 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>
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
Back to top