Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 187 for Lyding (0.07 sec)

  1. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/IterationOrderRetainingSetElementSourceTest.groovy

            when:
            provider1.value = ["buzz", "fizz", "foo"]
    
            then:
            source.iterator().collect() == ["foo", "buzz", "fizz"]
        }
    
        def "adding is not ignored when a realized provider currently has the same value"() {
            def provider1 = setProvider("foo")
    
            when:
            source.addPendingCollection(provider1)
            source.realizePending()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 06:43:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/tasks/TaskInputFilePropertyBuilder.java

         *
         * <p>
         * 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>
         *
         * @since 7.2
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 13 17:35:59 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionRangeSelectorTest.groovy

            accept("(,2.0]", "2.0")
    
            accept("(,2.0[", "0")
            accept("(,2.0[", "0.1.2")
            accept("(,2.0[", "1.99")
        }
    
        def "accepts candidate versions that fall into the selector's range (adding qualifiers to the mix)"() {
            expect:
            accept("[1.0,2.0]", "1.5-dev-1")
            accept("[1.0,2.0]", "1.2.3-rc-2")
            accept("[1.0,2.0]", "2.0-final")
    
            accept("[1.0-dev-1,2.0[", "1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/java/fixtures/tests/dependencyInsight.out

                   - Variant sources provides com.google.code.gson:gson:2.8.5
    
    com.google.code.gson:gson:2.8.5 FAILED
    \--- functionalTestClasspath
    
    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: Tue Jan 30 20:55:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/configurations/ConfigurationReportsImpl.java

    import org.gradle.api.tasks.diagnostics.configurations.ConfigurationReports;
    
    import javax.inject.Inject;
    
    /**
     * Default implementation of {@link ConfigurationReports} which allows for adding and configuring reports.
     *
     * Class must by non-{@code final}.
     */
    public class ConfigurationReportsImpl extends TaskReportContainer<ConfigurableReport> implements ConfigurationReports {
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 28 21:08:41 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheInitScriptsIntegrationTest.groovy

            then:
            output.indexOf('initscript2!') < output.indexOf('initscript1!')
            configurationCache.assertStateStored()
        }
    
        def "invalidates cache upon adding init script to command line"() {
    
            given:
            def initScript1 = file('initscript1.gradle.kts').tap {
                text = 'println("initscript1!")'
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    1. *Specify a file on the command line* with the option `-I` or `--init-script` followed by the path to the script.
    +
    The command line option can appear more than once, each time adding another init script. The build will fail if any files specified on the command line do not exist.
    2. *Put a file called `init.gradle(.kts)`* in the `__$<<directory_layout.adoc#dir:gradle_user_home,GRADLE_USER_HOME>>__/` directory.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/slf4j/Slf4jLoggingConfigurer.java

                // Cannot configure Slf4j logger. This will happen if:
                // - Tests are executed with a custom classloader (e.g using `java.system.class.loader`)
                // - Tests are run with `--module-path`, effectively hiding Gradle classes
                return;
            }
            OutputEventListenerBackedLoggerContext context = (OutputEventListenerBackedLoggerContext) loggerFactory;
    
            if (currentLevel == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/BuildscriptRepositoryContentFilteringIntegrationTest.groovy

            true        | "excludeGroupByRegex('or.+')"
            false       | "excludeGroup('org')"
            false       | "excludeGroupByRegex('or.+')"
        }
    
        def 'exclusive content filtering in settings prevents adding repositories in project'() {
            given:
            settingsFile << """
    pluginManagement {
        repositories {
            ivy {
                url "irrelevant"
            }
            exclusiveContent {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/developingPlugins/externalLibraries/tests/buildEnvironment.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: Fri Feb 09 07:14:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top