Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 98 for Member (0.5 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ModelSetIntegrationTest.groovy

                  @Model
                  void group(Group group) {
                    group.name = "Women in computing"
    
                    group.members.create { name = "Ada Lovelace" }
                    group.members.create { name = "Grace Hooper" }
    
                    assert group.members.is(group.members)
                  }
                }
    
                apply type: Rules
    
                model {
                  tasks {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheProblemsSummary.kt

    internal
    class Summary(
        /**
         * Total of all problems, regardless of severity.
         */
        val problemCount: Int,
    
        /**
         * Total number of problems that are failures.
         */
        val failureCount: Int,
    
        /**
         * Total number of [suppressed][ProblemSeverity.Suppressed] problems.
         */
        private
        val suppressedCount: Int,
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/common/extensions.kt

     * See https://www.jetbrains.com/help/teamcity/teamcity-data-clean-up.html#Clean-up+Rules
     *
     * @param historyDays days number of days to store build history .
     * @param artifactsDays number of days to store artifacts. In the stored history, artifacts older than this number will be cleaned up.
     * @param artifactPatterns patterns for artifacts clean-up. If not specified, all artifacts will be removed.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/java/org/gradle/kotlin/dsl/fixtures/codegen/IncubatingFunction.java

     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.fixtures.codegen;
    
    import org.gradle.api.Incubating;
    
    public interface IncubatingFunction {
        @Incubating
        void extendedFunction(Class<Number> type);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 12 16:16:08 UTC 2023
    - 804 bytes
    - Viewed (0)
  5. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.ci-reporting.gradle.kts

     * failing tasks only, to not use up unnecessary disk space on Team City. This also improves the performance of
     * artifact publishing by reducing the artifacts and packaging reports that consist of multiple files.
     *
     * Reducing the number of reports also makes it easier to find the important ones when analysing a failed build in
     * Team City.
     */
    
    val testFilesCleanup = extensions.create<TestFileCleanUpExtension>("testFilesCleanup").apply {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 06:57:51 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/tasks/PerformanceTest.groovy

        Property<String> getBaselines() {
            return baselines
        }
    
        @Option(option = "warmups", description = "Number of warmups before measurements")
        void setWarmups(@Nullable String warmups) {
            this.warmups = warmups
        }
    
        @Option(option = "runs", description = "Number of iterations of measurements")
        void setRuns(@Nullable String runs) {
            this.runs = runs
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Dec 03 03:46:18 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  7. gradlew

            fi
            # Roll the args list around exactly as many times as the number of
            # args, so each arg winds up back in the position where it started, but
            # possibly modified.
            #
            # NB: a `for` loop captures its iteration list before it begins, so
            # changing the positional parameters here affects neither the number of
            # iterations, nor the values presented in `arg`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 11:20:16 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ManagedModelGroovyScalarConfigurationIntegrationTest.groovy

            failure.assertThatCause(containsString('''The following types/formats are supported:
      - A String or CharSequence
      - Any Number'''))
    
            where:
            // not including char, Character, and String since Groovy auto-coerces to String,
            // or boolean/Boolean since those are special cased for 'true'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 19.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/codegen/GradleApiExtensionsTest.kt

                        subject.invariantClass(type = Number::class)
                        subject.covariantClass(type = Int::class)
                        subject.contravariantClass(type = Number::class)
    
                        subject.varargOfClasses(Number::class, Int::class)
                        subject.arrayOfClasses(types = arrayOf(Number::class, Int::class))
                        subject.collectionOfClasses(listOf(Number::class, Int::class))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Nov 12 16:16:08 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/dom/DomResolutionTest.kt

                """
                addAndConfigure("test") {
                    number = 123
                }
                justAdd("test2")
                complexValueOne = one(two("three"))
                complexValueOneFromUtils = utils.oneUtil()
                complexValueTwo = two("three")
                nested {
                    number = 456
                    add()
                }
                """.trimIndent()
            )
    
    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