Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,314 for receivers (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/transformation/OriginReplacement.kt

                is ObjectOrigin.ConfiguringLambdaReceiver -> origin.copy(receiver = replace(origin.receiver), parameterBindings = replaceInArgs(origin.parameterBindings))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. analysis/analysis-api/build.gradle.kts

        explicitApi()
    }
    
    sourceSets {
        "main" { projectDefault() }
        "test" { projectDefault() }
    }
    
    tasks.withType<KotlinJvmCompile>().configureEach {
        compilerOptions.freeCompilerArgs.add("-Xcontext-receivers")
    }
    
    testsJar()
    
    projectTest {
        workingDir = rootDir
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/base/KtContextReceiver.kt

    /**
     * A context receiver of function/property type which are directly specified in the code
     *
     * E.g, for the following code
     * ```
     * context(a@Int)
     * fun foo(){}
     * ```
     *
     * the context receiver is `KaContextReceiver(type=KtClassType(Int), label="a")`
     */
    public abstract class KaContextReceiver : KaLifetimeOwner {
        /**
         * Type of the context receiver
         *
         * @see KaContextReceiver
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/pointers/FirCallableSignature.kt

            if (receiverType != declaration.receiverParameter?.typeRef?.renderType()) return false
    
            val receivers = declaration.contextReceivers
            for ((index, parameter) in contextReceiverTypes.withIndex()) {
                if (receivers[index].typeRef.renderType() != parameter) return false
            }
    
            if (declaration is FirFunction) {
                requireNotNull(parameters)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:06 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. samples/open-telemetry/tracing/README.md

    kubectl -n observability apply -f ../otel.yaml
    ```
    
    The otel-collector will create a grpc receiver on port `4317`, and later the sidecars will report trace information to this grpc port. You can find more details from [here](https://github.com/open-telemetry/opentelemetry-collector).
    
    Below is the configuration:
    
    ```yaml
    receivers:
      otlp:
        protocols:
          grpc:
          http:
    processors:
      batch:
    exporters:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Feb 18 16:38:12 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/api_predicates.go

    // generic type.
    func Satisfies(V Type, T *Interface) bool {
    	return (*Checker)(nil).implements(nopos, V, T, true, nil)
    }
    
    // Identical reports whether x and y are identical types.
    // Receivers of [Signature] types are ignored.
    //
    // Predicates such as [Identical], [Implements], and
    // [Satisfies] assume that both operands belong to a
    // consistent collection of symbols ([Object] values).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 16:36:08 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top