Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,517 for receivers (0.12 sec)

  1. platforms/documentation/docs/src/samples/templates/build-src-plugin-java-module-transform/application/src/main/java/org/gradle/sample/app/data/Message.java

        private List<String> receivers = new ArrayList<>();
    
        public String getMessage() {
            return message;
        }
    
        public void setMessage(String message) {
            this.message = message;
        }
    
        public List<String> getReceivers() {
            return receivers;
        }
    
        public void setReceivers(List<String> receivers) {
            this.receivers = receivers;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 670 bytes
    - Viewed (0)
  2. src/internal/types/testdata/check/decls2/decls2a.go

    type T5 interface {
    	m() int
    }
    
    func (T5 /* ERROR "invalid receiver" */ ) m1() {}
    func (T5 /* ERROR "invalid receiver" */ ) m2() {}
    
    // Methods associated with a named pointer type.
    type ptr *int
    func (ptr /* ERROR "invalid receiver" */ ) _() {}
    func (* /* ERROR "invalid receiver" */ ptr) _() {}
    
    // Methods with zero or multiple receivers.
    func ( /* ERROR "method has no receiver" */ ) _() {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  3. samples/open-telemetry/otel.yaml

        extensions:
          health_check:
            port: 13133
        service:
          extensions:
          - health_check
          pipelines:
            logs:
              receivers: [otlp]
              processors: [batch]
              exporters: [logging]
            traces:
              receivers:
              - otlp
              - opencensus
              exporters:
              - zipkin
              - logging
              - jaeger
    ---
    apiVersion: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 31 08:51:36 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/java/modules-with-transform/tests/runTask.out

    org.gradle.sample.app - 1.0.2
    com.google.gson - 2.8.9
    org.apache.commons.lang3 - 3.10
    org.apache.commons.cli - 3.2.2
    org.apache.commons.beanutils - 1.9.4
    
    Original: Message{message='null', receivers=[]}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 251 bytes
    - Viewed (0)
  5. src/internal/types/testdata/check/methodsets.go

    		_ func(T0) = T0.v0
    		_ = T0.p0 /* ERROR "invalid method expression T0.p0 (needs pointer receiver (*T0).p0)" */
    
    		_ func (*T0) = (*T0).v0
    		_ func (*T0) = (*T0).p0
    
    		// T1 is like T0
    
    		_ func(T2) = T2.v2
    		_ func(T2) = T2.p2
    
    		_ func(T3) = T3.v0
    		_ func(T3) = T3.p0 /* ERROR "invalid method expression T3.p0 (needs pointer receiver (*T3).p0)" */
    		_ func(T3) = T3.v1
    		_ func(T3) = T3.p1
    		_ func(T3) = T3.v2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. 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]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. 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)
  8. docs/metrics/prometheus/alerts.md

    Prometheus AlertManager is the component that manages sending, inhibition and silencing of the alerts generated from Prometheus. The AlertManager can be configured to send alerts to variety of receivers. Refer [Prometheus AlertManager receivers](https://prometheus.io/docs/alerting/latest/configuration/#receiver) for more details.
    
    Follow below steps to enable and use AlertManager.
    
    ## Deploy and start AlertManager
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 28 20:53:59 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. samples/open-telemetry/loki/REAME.md

    ```bash
    kubectl apply -f otel.yaml -n istio-system
    ```
    
    With the following configuration, otel-collector-contrib will create a grpc receiver on port `4317`, and output to stdout. You can find more details [here](https://github.com/open-telemetry/opentelemetry-collector-contrib).
    
    ```yaml
        receivers:
          otlp:
            protocols:
              grpc:
              http:
        processors:
          batch:
          attributes:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 06 20:18:25 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/modelreader/impl/AnnotationCallInterceptionRequestReaderImpl.java

            }
            if (receivers.size() > 1) {
                throw new Failure("Only one parameter can be annotated with @" + ParameterKind.Receiver.class.getSimpleName());
            }
            VariableElement receiver = receivers.get(0);
            TypeMirror receiverType = receiver.asType();
            if (receiverType.getKind() != TypeKind.DECLARED) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 09:48:42 UTC 2023
    - 13K bytes
    - Viewed (0)
Back to top