Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 1,860 for receiver (0.08 seconds)

  1. build-logic/buildquality/src/main/kotlin/gradlebuild/codenarc/rules/IntegrationTestFixturesRule.kt

            }
        }
    
        private
        fun checkOutputContains(call: MethodCallExpression) {
            val receiver = call.receiver!!
            if (receiver is PropertyExpression) {
                if (receiver.propertyAsString == "output") {
                    val objectExpr = receiver.objectExpression!!
                    checkIndirectOutputContains(objectExpr, call)
                }
            }
        }
    
        private
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.6K bytes
    - Click Count (0)
  2. 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
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Wed Apr 23 15:13:23 GMT 2025
    - 4.4K bytes
    - Click Count (0)
  3. build-logic-commons/code-quality-rules/src/main/java/gradlebuild/codenarc/rules/IntegrationTestFixtureVisitor.java

            }
        }
    
        private void checkOutputContains(MethodCallExpression call) {
            ASTNode receiver = call.getReceiver();
            if (receiver instanceof PropertyExpression) {
                if (((PropertyExpression) receiver).getPropertyAsString().equals("output")) {
                    Expression objectExpr = ((PropertyExpression) receiver).getObjectExpression();
                    checkIndirectOutputContains(objectExpr, call);
                }
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 2.9K bytes
    - Click Count (0)
  4. android/guava/src/com/google/common/reflect/Invokable.java

      @SuppressWarnings({"unchecked", "nullness"})
      @CanIgnoreReturnValue
      public final @Nullable R invoke(@Nullable T receiver, @Nullable Object... args)
          throws InvocationTargetException, IllegalAccessException {
        return (R) invokeInternal(receiver, checkNotNull(args));
      }
    
      /** Returns the return type of this {@code Invokable}. */
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Mar 17 20:26:29 GMT 2025
    - 18.4K bytes
    - Click Count (0)
  5. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt

         *
         * The fixture build supports both Java and Kotlin sources.
         *
         * @param v1 sources producer for V1, receiver is the `src/main` directory
         * @param v2 sources producer for V2, receiver is the `src/main` directory
         * @param block convenience block invoked on the result
         * @return the check result
         */
        private
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Dec 30 10:14:25 GMT 2025
    - 18K bytes
    - Click Count (0)
  6. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt

            if (declaration is KtCallableDeclaration) {
                incubating += declaration.valueParametersString
                declaration.receiverTypeString?.let { receiver ->
                    incubating += " with $receiver receiver"
                }
                if (declaration.parent == ktFile) {
                    incubating += ", top-level in ${sourceFile.name}"
                }
            }
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Mon Jun 02 09:57:54 GMT 2025
    - 14.1K bytes
    - Click Count (0)
  7. build-logic/kotlin-dsl/build.gradle.kts

        implementation(projects.dependencyModules)
        implementation(projects.jvm)
        implementation(projects.kotlinDslSharedRuntime)
    
        implementation(kotlin("gradle-plugin"))
        implementation(kotlin("sam-with-receiver"))
        implementation("org.ow2.asm:asm")
        implementation("com.thoughtworks.qdox:qdox")
    
        testImplementation("junit:junit")
        testImplementation("org.mockito.kotlin:mockito-kotlin")
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Mon May 19 11:33:57 GMT 2025
    - 660 bytes
    - Click Count (0)
  8. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/action/AnnotationGeneratorWorkAction.kt

            return imports.joinToString(separator = "\n") {
                if (it.isBlank()) "" else "import $it"
            }
        }
    
        private
        inline fun <reified Receiver> groovyReceiverAccessors(): String {
            return groovyReceiverAccessors(Receiver::class)
        }
    
        private
        fun groovyReceiverAccessors(receiverType: KClass<*>): String {
            val objectMethods = Any::class.java.declaredMethods.toList()
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Sun Jul 07 16:02:18 GMT 2024
    - 8.1K bytes
    - Click Count (0)
  9. android/guava-tests/test/com/google/common/cache/CacheEvictionTest.java

    import static com.google.common.truth.Truth.assertThat;
    import static java.lang.Math.min;
    import static java.util.Arrays.asList;
    
    import com.google.common.cache.CacheTesting.Receiver;
    import com.google.common.cache.TestingCacheLoaders.IdentityLoader;
    import com.google.common.cache.TestingRemovalListeners.CountingRemovalListener;
    import java.util.List;
    import java.util.Set;
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Oct 28 18:19:59 GMT 2025
    - 15.1K bytes
    - Click Count (0)
  10. doc/go_spec.html

    A method declaration binds an identifier, the <i>method name</i>, to a method,
    and associates the method with the receiver's <i>base type</i>.
    </p>
    
    <pre class="ebnf">
    MethodDecl = "func" Receiver MethodName Signature [ FunctionBody ] .
    Receiver   = Parameters .
    </pre>
    
    <p>
    The receiver is specified via an extra parameter section preceding the method
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Tue Dec 02 23:07:19 GMT 2025
    - 286.5K bytes
    - Click Count (1)
Back to Top