Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for lastN (0.41 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

                    toc.append("<li class=\"mainTopic\"><a/></li>").children().last().select("a").first().text(name).attr("href", "#" + anchor);
                } else if(!name.startsWith("Table") && tag.equals("h3")){
                    toc.append("<li class=\"subTopic\"><a/></li>").children().last().select("a").first().text(name).attr("href", "#" + anchor);
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/schemaFromConfiguringFunctions.kt

    import kotlin.reflect.KClass
    import kotlin.reflect.full.memberFunctions
    
    
    /**
     * Provides type discovery via functions that return an object or configure an object accepting a lambda as the last parameter
     * (via [org.gradle.api.Action] or a Kotlin function type, see [gradleConfigureLambdas]).
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/LoggingFileSystemWatchingIntegrationTest.groovy

            then:
            !(result.output =~ /Received \d+ file system events since last build while watching \d+ locations/)
            !(result.output =~ /Virtual file system retained information about \d+ files, \d+ directories and \d+ missing files since last build/)
            result.output =~ /VFS> Statistics since last build:/
            result.output =~ /VFS> > Stat: Executed stat\(\) x 0. getUnixMode\(\) x 0/
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskRealizationBuildOperationIntegrationTest.groovy

            realizeOps.size() == 2
            realizeOps*.details.each {
                assert it.taskPath == ":foo"
            }
            realizeOps.first().details.eager == false
            realizeOps.last().details.eager == true
            def uniqueId = Iterables.getOnlyElement(realizeOps*.details*.taskId as Set)
    
            when:
            configurationCacheRun(":foo")
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Result.java

     * <p>
     * The meaning of the value parameter is specific to each concrete subclass. The validity of {@code null}
     * is also to be defined by each subclass. This implementation does allow null values.
     *
     * <p>The result is the last message sent from the daemon back to the daemon client.
     */
    public abstract class Result<T> extends Message {
    
        private final T value;
    
        public Result(T value) {
            this.value = value;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/Resolver.kt

        ): Map<String, FqName> = buildMap {
            trees.forEach { import ->
                val fqn = DefaultFqName(
                    import.name.nameParts.dropLast(1).joinToString("."), import.name.nameParts.last()
                )
    
                compute(fqn.simpleName) { _, existing ->
                    if (existing != null && existing != fqn) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/diagnostics/DaemonLogFileUtils.java

    import java.util.stream.Stream;
    
    /**
     * Extracted utility methods to parse daemon logs.
     */
    final class DaemonLogFileUtils {
        private DaemonLogFileUtils() {}
    
        /**
         * Reads the last {@code tailSize} lines of the daemon log file and returns them as a single string.
         *
         * @param file the daemon log
         * @param tailSize the length of tail
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoPlugins/ReflectionDemo.kt

            println("===")
            schema.reflectAndPrint(newCode)
        }
    }
    
    
    private
    fun String.replaceRange(range: IntRange, replacement: String): String {
        return take(range.start) + replacement + drop(range.last + 1)
    }
    
    
    val pluginDefinition = schema.dataClassesByFqName
        .getValue(DefaultFqName.parse("org.gradle.internal.declarativedsl.demo.demoPlugins.PluginDefinition"))
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/AbstractConfigurationCacheIntegrationTest.groovy

            normalizedOutput
                .replaceAll(/Received \d+ file system events .*\n/, '')
                .replaceAll(/Spent \d+ ms processing file system events since last build\n/, '')
                .replaceAll(/Spent \d+ ms registering watches for file system events\n/, '')
                .replaceAll(/Virtual file system .*\n/, '')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/context.kt

        }
    
        fun nextCallId(): OperationId = OperationId(nextInstant.incrementAndGet(), generationId)
    
        fun leaveScope(scope: AnalysisScope) {
            check(mutableScopes.last() === scope)
            mutableScopes.removeLast()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top