Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Combiner5 (0.22 sec)

  1. platforms/core-runtime/functional/src/main/java/org/gradle/internal/Combiners.java

     * Promote to a more shared subproject if useful.
     */
    public abstract class Combiners {
    
        /**
         * We know the stream we are processing is handled sequentially, and hence there is no need for a combiner.
         */
        public static <T> BinaryOperator<T> nonCombining() {
            return Combiners::unsupportedCombineOperation;
        }
    
        private static <T> T unsupportedCombineOperation(T a, T b) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:06 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. docs/fr/docs/advanced/additional-responses.md

    **FastAPI** conservera les informations supplémentaires des `responses` et les combinera avec le schéma JSON de votre modèle.
    
    Par exemple, vous pouvez déclarer une réponse avec un code HTTP `404` qui utilise un modèle Pydantic et a une `description` personnalisée.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/BiProvider.java

        private final BiFunction<? super A, ? super B, ? extends R> combiner;
        private final ProviderInternal<A> left;
        private final ProviderInternal<B> right;
    
        public BiProvider(@Nullable Class<R> type, Provider<A> left, Provider<B> right, BiFunction<? super A, ? super B, ? extends R> combiner) {
            this.type = type;
            this.combiner = combiner;
            this.left = Providers.internal(left);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/internal/file/DefaultReservedFileSystemLocationRegistry.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.file;
    
    import org.gradle.internal.Combiners;
    
    import java.io.File;
    import java.util.List;
    
    public class DefaultReservedFileSystemLocationRegistry implements ReservedFileSystemLocationRegistry {
        private final FileHierarchySet reservedFileSystemLocations;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:27 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tpu_update_embedding_enqueue_op_inputs.mlir

      "tf.EnqueueTPUEmbeddingSparseTensorBatch"(%arg0, %arg1, %arg2, %arg3, %arg4, %arg5, %0, %0, %0, %arg7) {_tpu_embedding_layer = "call1", _xla_outside_compilation = "0", combiners = ["mean", "sum"], device_ordinal = -1 : i64, max_sequence_lengths = [0, 0, 0], table_ids = [1, 1, 0]} : (tensor<?x2xi32>, tensor<?x2xi32>, tensor<?x2xi32>, tensor<?xi32>, tensor<?xi32>, tensor<?xi32>, tensor<0xf32>, tensor<0xf32>, tensor<0xf32>,...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/testing/CollectorTester.java

            A accum = collector.supplier().get();
            for (T input : inputs) {
              A newAccum = collector.supplier().get();
              collector.accumulator().accept(newAccum, input);
              accum = collector.combiner().apply(accum, newAccum);
            }
            return accum;
          }
        },
        /** Get one accumulator for each element and merge the accumulators right-to-left. */
        MERGE_RIGHT_ASSOCIATIVE {
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/DefaultProviderFactory.java

        }
    
        @Override
        public <A, B, R> Provider<R> zip(Provider<A> left, Provider<B> right, BiFunction<? super A, ? super B, ? extends R> combiner) {
            return left.zip(right, combiner);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/AbstractFileWatcherUpdater.java

     */
    
    package org.gradle.internal.watch.registry.impl;
    
    import com.google.common.annotations.VisibleForTesting;
    import com.google.common.collect.ImmutableSet;
    import org.gradle.internal.Combiners;
    import org.gradle.internal.file.FileHierarchySet;
    import org.gradle.internal.file.FileMetadata;
    import org.gradle.internal.file.FileType;
    import org.gradle.internal.snapshot.FileSystemLocationSnapshot;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 17:02:39 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/runtime_fallback/runtime_fallback_combine.cc

    ==============================================================================*/
    
    //===----------------------------------------------------------------------===//
    //
    // This file implements a set of simple combiners for optimizing operations in
    // the Runtime Fallback dialect.
    //
    //===----------------------------------------------------------------------===//
    
    #include "mlir/IR/Matchers.h"
    #include "mlir/IR/PatternMatch.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 09 12:09:19 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/TestNamedProvider.groovy

        Provider<T> forUseAtConfigurationTime() {
            throw new UnsupportedOperationException()
        }
    
        @Override
        <U, R> Provider<R> zip(Provider<U> right, BiFunction<? super T, ? super U, ? extends R> combiner) {
            throw new UnsupportedOperationException()
        }
    
        @Override
        ValueProducer getProducer() {
            throw new UnsupportedOperationException()
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 08:18:33 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top