Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,517 for collector (0.16 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/Collector.java

     */
    
    package org.gradle.api.internal.provider;
    
    import com.google.common.collect.ImmutableCollection;
    import org.gradle.api.Action;
    
    
    /**
     * A collector is a value supplier of zero or more values of type {@link T}.
     * <p>
     *     A <code>Collector</code> represents an increment to a collection property.
     * </p>
     */
    public interface Collector<T> extends ValueSupplier {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 05:02:13 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. guava-testlib/src/com/google/common/testing/CollectorTester.java

      private final BiPredicate<? super R, ? super R> equivalence;
    
      private CollectorTester(
          Collector<T, A, R> collector, BiPredicate<? super R, ? super R> equivalence) {
        this.collector = checkNotNull(collector);
        this.equivalence = checkNotNull(equivalence);
      }
    
      /**
       * Different orderings for combining the elements of an input array, which must all produce the
       * same result.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 17:40:56 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/MoreCollectors.java

       * collector without breaking j2cl?
       */
      private static final Collector<Object, ?, Optional<Object>> TO_OPTIONAL =
          Collector.of(
              ToOptionalState::new,
              ToOptionalState::add,
              ToOptionalState::combine,
              ToOptionalState::getOptional,
              Collector.Characteristics.UNORDERED);
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. samples/open-telemetry/otel.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: opentelemetry-collector-conf
      labels:
        app: opentelemetry-collector
    data:
      opentelemetry-collector-config: |
        receivers:
          opencensus:
            endpoint: 0.0.0.0:55678
          otlp:
            protocols:
              grpc:
              http:
        processors:
          batch:
        exporters:
          zipkin:
            # Export to zipkin for easy querying
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 08:51:36 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/impl/DirectorySnapshotterStatistics.java

            protected final Collector collector;
    
            public CollectingFileVisitor(Collector collector) {
                this.collector = collector;
                collector.recordVisitHierarchy();
            }
    
            @Override
            public final FileVisitResult preVisitDirectory(Path dir, BasicFileAttributes attrs) {
                collector.recordVisitDirectory();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MapCollectors.java

            public Value<Void> collectEntries(ValueConsumer consumer, MapEntryCollector<K, V> collector, Map<K, V> dest) {
                collector.add(key, value, dest);
                return Value.present();
            }
    
            @Override
            public Value<Void> collectKeys(ValueConsumer consumer, ValueCollector<K> collector, ImmutableCollection.Builder<K> dest) {
                collector.add(key, dest);
                return Value.present();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 12:22:39 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. samples/open-telemetry/tracing/README.md

    ```yaml
    exporters:
      jaeger:
        endpoint: jaeger-collector.istio-system.svc.cluster.local:14250
        tls:
          insecure: true
        sending_queue:
          enabled: true
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/utils/InlineFunctionAnalyzer.kt

                        collector.checkResolveCall(resolvedCall)
                    }
                }
    
                override fun visitForExpression(expression: KtForExpression) {
                    super.visitForExpression(expression)
    
                    val bindingContext = analysisContext.analyze(expression)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/TableCollectors.java

    import java.util.function.Supplier;
    import java.util.stream.Collector;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /** Collectors utilities for {@code common.collect.Table} internals. */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    final class TableCollectors {
    
      static <T extends @Nullable Object, R, C, V>
          Collector<T, ?, ImmutableTable<R, C, V>> toImmutableTable(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Mar 09 00:21:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_statistics_saver_op.cc

        // TODO - b/335044516 : Find a way to flush outside of the destructor.
        CalibrationStatisticsMap statistics_map;
        for (const auto& [id, collector] : id_to_collector_) {
          std::optional<CalibrationStatistics> statistics =
              collector->GetStatistics();
          if (!statistics.has_value()) continue;
    
          statistics_map.mutable_statistics()->emplace(id, std::move(*statistics));
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 13 01:31:23 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top