Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 40 for Lyding (0.08 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/ConfigurationUsageChangingFixture.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.integtests.fixtures
    
    import groovy.transform.SelfType
    
    /**
     * Allows adding methods to the test class that are useful for testing configuration usage changes.
     */
    @SelfType(AbstractIntegrationSpec)
    trait ConfigurationUsageChangingFixture {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/daemon-protocol/src/test/groovy/org/gradle/launcher/daemon/diagnostics/DaemonLogFileUtilsTest.groovy

            given:
            def logFile = log("""\
                line1
                line2
                line3""")
    
            expect:
            DaemonLogFileUtils.tail(logFile, 1) == "line3"
        }
    
        def "input-ending eoln is ignored"() {
            given:
            def logFile = log("""\
                line1
                line2
                line3
            """)
    
            expect:
            DaemonLogFileUtils.tail(logFile, 1) == "line3"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/testing/test-suite-version-catalogs/tests/checkTaskOutput.out

    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 Apr 15 19:28:13 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/implementing_gradle_plugins_precompiled.adoc

    You can provide configuration for your plugin by adding an extension object to this container.
    
    Let's update our `greetings` example:
    
    ====
    include::sample[dir="snippets/plugins/greeting/kotlin", files="buildSrc/src/main/kotlin/greetings.gradle.kts[tags=create-extension]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ConfigurationContainer.java

     * <pre class='autoTested'>
     * plugins {
     *     id 'java' // so that I can use 'implementation', 'testImplementation' configurations
     * }
     *
     * configurations {
     *   //adding a configuration:
     *   myConfiguration
     *
     *   //adding a configuration that extends existing configuration:
     *   //(testImplementation was added by the java plugin)
     *   myIntegrationTestsCompile.extendsFrom(testImplementation)
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/plugins/PluginTarget.java

    /**
     * Represents the target that a plugin should be applied to, such as a Gradle, Settings or Project object.
     * This is used to apply a plugin to a target in a way that is appropriate for that target, such as adding
     * additional functionality specific to the target or disallowing certain types of plugins to be applied.
     */
    public interface PluginTarget {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 20:42:35 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/ProjectStateStore.kt

            val valueContainer = currentValues.computeIfAbsent(key) { k ->
                createContainer(k, creator)
            }
    
            // Calculate the value after adding the entry to the map, so that the value container can take care of thread synchronization
            valueContainer.finalizeIfNotAlready()
            return valueContainer.get()
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/configuration/ScriptPluginFactorySelector.java

    import org.gradle.scripts.ScriptingLanguage;
    
    /**
     * Selects a {@link ScriptPluginFactory} suitable for handling a given build script based
     * on its file name. Build script file names ending in ".gradle" are supported by the
     * {@link DefaultScriptPluginFactory}. Other files are delegated to the first available
     * matching implementation of the {@link ScriptingLanguage} SPI. If no provider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 07:44:44 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/ScopedServiceRegistryTest.groovy

    import org.gradle.internal.service.scopes.ServiceScope
    import spock.lang.Specification
    
    class ScopedServiceRegistryTest extends Specification {
    
        def "fails when registering a service by adding #method in a wrong scope"() {
            given:
            def registry = scopedRegistry(Scope.Build)
    
            when:
            registration(registry)
    
            then:
            def exception = thrown(IllegalArgumentException)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionPerformanceResults.groovy

            }
            return displayName
        }
    
        Collection<BaselineVersion> getBaselineVersions() {
            return baselineVersions.values()
        }
    
        /**
         * Locates the given baseline version, adding it if not present.
         */
        BaselineVersion baseline(String version) {
            def baselineVersion = baselineVersions[version]
            if (baselineVersion == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top