Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,643 for collector (0.15 sec)

  1. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/FileSystemWatchingBuildActionRunner.java

            String title,
            StatStatistics.Collector statStatisticsCollector,
            FileHasherStatistics.Collector fileHasherStatisticsCollector,
            DirectorySnapshotterStatistics.Collector directorySnapshotterStatisticsCollector
        ) {
            LOGGER.warn("VFS> Statistics {}:", title);
            LOGGER.warn("VFS> > Stat: {}", statStatisticsCollector.collect());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. 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)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/DefaultRuleSourceValidationProblemCollector.java

        private final ValidationProblemCollector collector;
    
        public DefaultRuleSourceValidationProblemCollector(ValidationProblemCollector collector) {
            this.collector = collector;
        }
    
        @Override
        public boolean hasProblems() {
            return collector.hasProblems();
        }
    
        @Override
        public void add(String problem) {
            collector.add(problem);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/core-api/src/main/java/org/gradle/util/internal/SupportedEncryptionAlgorithm.java

        }
    
        private Cipher encryptingCipher(SecretKey key, IVCollector collector) throws EncryptionException {
            try {
                Cipher newCipher = Cipher.getInstance(transformation);
                newCipher.init(Cipher.ENCRYPT_MODE, key);
                if (initVectorLength > 0) {
                    assert collector != null;
                    byte[] iv = newCipher.getIV();
                    assert iv != null;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 06 12:42:13 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/CollectionSupplier.java

         */
        Value<? extends C> calculateValue(ValueConsumer consumer);
    
        /**
         * Combines the current collection supplier with the given {@link Collector} (also a {@link ValueSupplier value supplier}), producing a new
         * collection supplier that produces a collection that contains the original elements and the
         * elements supplied by the given collector.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 05:02:13 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. 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)
  8. android/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
    @SuppressWarnings({"AndroidJdkLibsChecker", "Java7ApiChecker"})
    @IgnoreJRERequirement // used only from APIs with Java 8 types in them
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Mar 09 00:21:17 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. pkg/test/framework/components/opentelemetry/kube.go

      name: opentelemetry-collector
      namespace: istio-system
    spec:
      host: opentelemetry-collector
      trafficPolicy:
        tls:
          mode: DISABLE
    ---`
    
    	extServiceEntry = `
    apiVersion: networking.istio.io/v1alpha3
    kind: ServiceEntry
    metadata:
      name: opentelemetry-collector
    spec:
      hosts:
      # must be of form name.namespace.global
      - opentelemetry-collector.istio-system.global
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 19:29:38 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. samples/open-telemetry/als/README.md

    ## Start otel-collector service
    
    First, create an `otel-collector` backend with simple configuration.
    
    ```bash
    kubectl apply -f ../otel.yaml -n observability
    ```
    
    With following configuration, otel-collector will create a grpc receiver on port `4317`, and output to stdout. You can find more details from [here](https://github.com/open-telemetry/opentelemetry-collector).
    
    ```yaml
    receivers:
      otlp:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top