Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 187 for Lyding (0.16 sec)

  1. platforms/core-configuration/declarative-dsl-api/src/main/java/org/gradle/declarative/dsl/model/annotations/Adding.java

    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    @Target(ElementType.METHOD)
    @Retention(RetentionPolicy.RUNTIME)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 926 bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/LambdaTest.kt

        @Suppress("unused")
        private
        abstract class Receiver {
            @Adding
            abstract fun lambdaRequired(x: Int, configure: Receiver.() -> Unit): Receiver
    
            @Adding
            abstract fun lambdaOptional(x: Int, configure: Receiver.() -> Unit = { }): Receiver
    
            @Adding
            abstract fun lambdaNotAllowed(x: Int): Receiver
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 26 12:27:49 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoPlugins/demoTypes.kt

    package org.gradle.internal.declarativedsl.demo.demoPlugins
    
    import org.gradle.declarative.dsl.model.annotations.Adding
    import org.gradle.declarative.dsl.model.annotations.Builder
    import org.gradle.declarative.dsl.model.annotations.Configuring
    import org.gradle.declarative.dsl.model.annotations.HasDefaultValue
    import org.gradle.declarative.dsl.model.annotations.Restricted
    
    
    class TopLevelScope {
        @get:Restricted
        val plugins = PluginsBlock()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/work/NormalizeLineEndings.java

     * will be considered equivalent.
     *
     * Line ending normalization is only supported with ASCII encoding and its supersets (i.e.
     * UTF-8, ISO-8859-1, etc).  Other encodings (e.g. UTF-16) will be treated as binary files
     * and will not be subject to line ending normalization.
     *
     * <p>This annotation should be attached to the getter method in Java or the property in Groovy.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/readme.md

        execution failed for task :tooling-api:gradle3.5.1CrossVersionTest'.
        > No tests found for given includes: [org.gradle.integtests.tooling.r81.LogLevelConfigCrossVersionSpec](--tests filter)`
    
    You can fix it by adding `-PtestJavaVersion=8` to the build.
    
    This is due to the fact that Gradle 4.6 and older don't support Java 11 and newer, which is checked before the test filter is applied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 21:50:04 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/buildlifecycle/projectEvaluateEvents/tests/projectEvaluateEvents.out

    Adding test task to project ':project-a'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 80 bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/plugin/management/PluginManagementSpec.java

    import org.gradle.api.Action;
    import org.gradle.api.artifacts.dsl.RepositoryHandler;
    import org.gradle.api.initialization.ConfigurableIncludedPluginBuild;
    import org.gradle.declarative.dsl.model.annotations.Adding;
    import org.gradle.declarative.dsl.model.annotations.Configuring;
    import org.gradle.declarative.dsl.model.annotations.Restricted;
    import org.gradle.internal.HasInternalProtocol;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/internal/JavaPluginHelper.java

    import org.gradle.testing.base.TestingExtension;
    
    /**
     * Utility class intended for use only when the {@link org.gradle.api.plugins.JavaPlugin JavaPlugin} is applied.
     *
     * This class exists to avoid adding these methods to the plugin itself,
     * and thus avoids adding these methods to the public API.
     */
    public class JavaPluginHelper {
    
        private JavaPluginHelper() {
            // Private to prevent instantiation.
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 09 13:16:07 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/rules/IncubatingInternalInterfaceAddedRuleTest.groovy

            when:
            newBase.addInterface(stablePublicInterface)
    
            then:
            noViolation(rule)
        }
    
        def 'adding an #type interface can be reported'() {
            given:
            newBase.addInterface(interfaces[type])
    
            when:
            Violation violation = rule.maybeViolation(apiClass)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 06 19:15:15 UTC 2022
    - 4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java-feature-variant/incompatible-variants/tests/runtimeClasspath.out

    project :producer FAILED
    \--- runtimeClasspath
    
    project :producer FAILED
    \--- runtimeClasspath
    
    project :producer FAILED
    \--- runtimeClasspath
    
    A web-based, searchable dependency report is available by adding the --scan option.
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 712 bytes
    - Viewed (0)
Back to top