Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,664 for collector (0.14 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. pkg/test/framework/components/opentelemetry/opentelemetry-collector.go

    )
    
    // Config represents the configuration for setting up an opentelemetry
    // collector.
    type Config struct {
    	// Cluster to be used in a multicluster environment
    	Cluster cluster.Cluster
    
    	// HTTP Address of ingress gateway of the cluster to be used to install open telemetry collector in.
    	IngressAddr string
    }
    
    // Instance represents a opencensus collector deployment on kubernetes.
    type Instance interface {
    	resource.Resource
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 23 01:09:12 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  3. 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)
  4. subprojects/core/src/main/java/org/gradle/api/internal/collections/SortedSetElementSource.java

                        copied.add(collector);
                    }
                }
                realize(copied);
            }
        }
    
        private void realize(Iterable<Collectors.TypedCollector<T>> collectors) {
            for (Collectors.TypedCollector<T> collector : collectors) {
                pending.remove(collector);
                ImmutableList.Builder<T> builder = ImmutableList.builder();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. 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)
  6. samples/open-telemetry/loki/otel.yaml

    apiVersion: v1
    kind: ConfigMap
    metadata:
      name: opentelemetry-collector-conf
      labels:
        app: opentelemetry-collector
    data:
      opentelemetry-collector-config: |
        receivers:
          otlp:
            protocols:
              grpc:
              http:
        processors:
          batch:
          attributes:
            actions:
            - action: insert
              key: loki.attribute.labels
              value: pod, namespace,cluster,mesh
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 06 20:18:25 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  7. 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)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/model/internal/inspect/FormattingValidationProblemCollectorTest.groovy

        }
    
        def "formats message with multiple problems"() {
            given:
            def collector = new FormattingValidationProblemCollector("<thing>", ModelType.of(String))
            collector.add("does not extend RuleSource")
            collector.add("does not have any rule method")
    
            expect:
            collector.format() == '''Type java.lang.String is not a valid <thing>:
    - does not extend RuleSource
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. maven-builder-support/src/test/java/org/apache/maven/building/DefaultProblemCollectorTest.java

            collector.setSource("SOURCE_PROBLEM2");
            collector.add(null, "PROBLEM2", -1, -1, null);
    
            collector.setSource("SOURCE_PROBLEM3");
            collector.add(null, "PROBLEM3", -1, -1, null);
    
            assertEquals("", collector.getProblems().get(0).getSource());
            assertEquals("SOURCE_PROBLEM2", collector.getProblems().get(1).getSource());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Apr 15 17:24:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. test/typeparam/issue52241.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    type Collector[T any] struct {
    }
    
    func (c *Collector[T]) Collect() {
    }
    
    func TestInOrderIntTree() {
    	collector := Collector[int]{}
    	_ = collector.Collect
    }
    
    func main() {
    	TestInOrderIntTree()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 06 21:07:37 UTC 2022
    - 381 bytes
    - Viewed (0)
Back to top