Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 387 for Processors (0.19 sec)

  1. samples/open-telemetry/als/README.md

    ```yaml
    receivers:
      otlp:
        protocols:
          grpc:
          http:
    processors:
      batch:
    exporters:
      logging:
        loglevel: debug
    service:
      pipelines:
        logs:
          receivers: [otlp]
          processors: [batch]
          exporters: [logging]
    ```
    
    ## Update Istio configmap
    
    Run the following script to update the `istio` with demo profile:
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/SamplesJavaIncrementalAnnotationProcessingIntegrationTest.groovy

        @Rule public final Sample processing = new Sample(temporaryFolder, 'java/incrementalAnnotationProcessing')
    
        def "isolating annotation processors are incremental"() {
            given:
            CompilationOutputsFixture outputs = new CompilationOutputsFixture(processing.dir.file("groovy/user/build/classes"))
            outputs.snapshot { compile() }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  3. platforms/jvm/java-compiler-plugin/src/main/java/org/gradle/internal/compiler/java/IncrementalCompileTask.java

        @Override
        public void addModules(Iterable<String> moduleNames) {
            delegate.addModules(moduleNames);
        }
    
        @Override
        public void setProcessors(Iterable<? extends Processor> processors) {
            delegate.setProcessors(processors);
        }
    
        @Override
        public void setLocale(Locale locale) {
            delegate.setLocale(locale);
        }
    
        @Override
        public Boolean call() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. samples/open-telemetry/loki/otel.yaml

    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
        exporters:
          loki:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 06 20:18:25 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/AbstractStringBasedModelInterpolator.java

            List<InterpolationPostProcessor> processors = new ArrayList<>(2);
            if (projectDir != null) {
                processors.add(new PathTranslatingPostProcessor(
                        getProjectPrefixes(config), TRANSLATED_PATH_EXPRESSIONS, projectDir, pathTranslator));
            }
            processors.add(new UrlNormalizingPostProcessor(urlNormalizer));
            return processors;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. samples/open-telemetry/otel.yaml

        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
            endpoint: http://zipkin.istio-system.svc:9411/api/v2/spans
          logging:
            loglevel: debug
          jaeger:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 08:51:36 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. samples/open-telemetry/loki/REAME.md

    ```yaml
        receivers:
          otlp:
            protocols:
              grpc:
              http:
        processors:
          batch:
          attributes:
            actions:
            - action: insert
              key: loki.attribute.labels
              value: podName, namespace,cluster,meshID
        exporters:
          loki:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 06 20:18:25 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/IsolatingIncrementalAnnotationProcessingIntegrationTest.groovy

        def "incremental processing doesn't trigger unmatched processor option warning"() {
            buildFile << """
                dependencies {
                    compileOnly project(":annotation")
                    annotationProcessor project(":processor")
                }
                compileJava.options.compilerArgs += [ "-Werror", "-Amessage=fromOptions" ]
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  9. platforms/jvm/language-jvm/src/main/java/org/gradle/api/tasks/compile/CompileOptions.java

            this.sourcepath = sourcepath;
        }
    
        /**
         * Returns the classpath to use to load annotation processors. This path is also used for annotation processor discovery.
         *
         * @return The annotation processor path, or {@code null} if annotation processing is disabled.
         * @since 3.4
         */
        @Nullable
        @Optional
        @Classpath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 08:40:36 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/processors/RestartEveryNTestClassProcessorTest.groovy

        }
    
        def 'uses single batch when n equals zero'() {
            given:
            processor = new RestartEveryNTestClassProcessor(factory, 0)
    
            when:
            processor.startProcessing(resultProcessor)
            processor.processTestClass(test1)
            processor.processTestClass(test2)
            processor.stop()
    
            then:
            1 * factory.create() >> delegate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.6K bytes
    - Viewed (0)
Back to top