Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 236 for TLambda (0.31 sec)

  1. maven-model-builder/src/test/resources/dag.txt

    	quarkus/extensions/jsonb/runtime/pom.xml
    quarkus/extensions/amazon-lambda-http/deployment/pom.xml
    	quarkus/core/deployment/pom.xml
    	quarkus/extensions/security/deployment/pom.xml
    	quarkus/extensions/vertx-http/deployment/pom.xml
    	quarkus/extensions/amazon-lambda/deployment/pom.xml
    	quarkus/extensions/amazon-lambda-http/runtime/pom.xml
    	quarkus/extensions/amazon-lambda-http/http-event-server/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  2. platforms/core-runtime/functional/src/main/java/org/gradle/internal/time/TimestampSuppliers.java

         */
        public static Supplier<Long> inThePast(int value, TimeUnit timeUnit) {
            // This needs to be an anonymous inner class instead of a lambda for configuration cache compatibility
            return new Supplier<Long>() {
                @Override
                public Long get() {
                    return Math.max(0, System.currentTimeMillis() - timeUnit.toMillis(value));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:22:02 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/prettyPrintResults.kt

                    recurseDeeper(current.rhs)
                    appendLine()
                    appendIndented(")")
                }
    
                is FunctionArgument.Lambda -> {
                    append("FunctionArgument.Lambda [${source()}] (\n")
                    appendNextIndented("block = ")
                    recurseDeeper(current.block)
                    appendLine()
                    appendIndented(")")
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/SuccessorsFunction.java

     * someGraphAlgorithm(startNode, MyNode::getChildren);
     * }</pre>
     *
     * <p>If you have some other mechanism for returning the successors of a node, or one that doesn't
     * return an {@code Iterable<? extends N>}, then you can use a lambda to perform a more general
     * transformation:
     *
     * <pre>{@code
     * someGraphAlgorithm(startNode, node -> ImmutableList.of(node.leftChild(), node.rightChild()));
     * }</pre>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 4.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/OverloadResolutionTest.kt

    import kotlin.test.Test
    import kotlin.test.assertEquals
    
    
    object OverloadResolutionTest {
        @Test
        fun `function overloads with and without configure lambda are disambiguated`() {
            val schema = schemaFromTypes(MyTopLevelReceiver::class, listOf(MyTopLevelReceiver::class))
    
            val code = """
                addSomething(1)
                addSomething(1) { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:03 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/BuildableBackedProvider.java

        }
    
        @Nullable
        @Override
        public Class<T> getType() {
            return valueType;
        }
    
        @Override
        public ValueProducer getProducer() {
            // not a lambda for readability purposes.
            //noinspection Convert2Lambda
            return new ValueProducer() {
                @Override
                public void visitProducerTasks(Action<? super Task> visitor) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 20:21:30 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/internal/classpath/DefaultCachedClasspathTransformerTest.groovy

        def "class can include only serializable lambda"() {
            given:
            def cl = transformAndLoad(ClassWithSerializableLambda, ClassWithSerializableLambda.SerializableThing)
    
            expect:
            def original = cl.thing(123)
            def result = recreate(original).call()
    
            result == "123"
        }
    
        def "interface can include only serializable lambda"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  8. cmd/config-current.go

    		configLogIf(ctx, fmt.Errorf("Unable to initialize notification target(s): %w", err))
    	}
    
    	bootstrapTraceMsg("initialize the lambda targets")
    	globalLambdaTargetList, err = lambda.FetchEnabledTargets(GlobalContext, s, transport)
    	if err != nil {
    		configLogIf(ctx, fmt.Errorf("Unable to initialize lambda target(s): %w", err))
    	}
    
    	bootstrapTraceMsg("applying the dynamic configuration")
    	// Apply dynamic config values
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/parsing/RejectedLanguageFeaturesParsingTest.kt

                    )
                )
                FunctionCall [indexes: 12..33, line/column: 2/1..2/22, file: test] (
                    name = f
                    args = [
                        FunctionArgument.Lambda [indexes: 14..33, line/column: 2/3..2/22, file: test] (
                            block = Block [indexes: 16..31, line/column: 2/5..2/20, file: test] (
                                ErroneousStatement (
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 10:53:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomResolutionTest.kt

            val resolver = tracingCodeResolver()
    
            val topLevelBlock = parseAsTopLevelBlock(
                """
                addAndConfigure("correct") { }
                addAndConfigure("lambda missing")
                addAndConfigure("incorrect signature", 1) {
                    number = 123
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
Back to top