Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 82 for Sall (0.14 sec)

  1. .cm/misc_labels.cm

        if:
          - {{ ('misc_labels' | isEnabledAutomation(pr)) }}
          - {{ is.formatting }}
        run:
          - action: add-label@v1
            args:
              label: 'a:chore'
          - action: approve@v1
    
      # Call out PRs that change the build script (and will be longer to checkout and review)
      label_build_script_change:
        if:
          - {{ ('misc_labels' | isEnabledAutomation(pr)) }}
          - {{ is.build_script_change }}
        run:
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Fri Apr 12 13:42:16 GMT 2024
    - 3K bytes
    - Viewed (0)
  2. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

        @Test
        fun allVersionsAreIncludedInCrossVersionTests() {
            assertEquals("0.0", ALL_CROSS_VERSION_BUCKETS[0][0])
            assertEquals("99.0", ALL_CROSS_VERSION_BUCKETS[ALL_CROSS_VERSION_BUCKETS.size - 1][1])
    
            (1 until ALL_CROSS_VERSION_BUCKETS.size).forEach {
                assertEquals(ALL_CROSS_VERSION_BUCKETS[it - 1][1], ALL_CROSS_VERSION_BUCKETS[it][0])
            }
        }
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Jan 02 10:00:06 GMT 2024
    - 13.3K bytes
    - Viewed (0)
  3. build-logic/documentation/src/test/groovy/gradlebuild/docs/model/SimpleClassMetaDataRepositoryTest.groovy

            repository.put('class1', value1)
            repository.put('class2', value2)
            Closure cl = Mock()
    
            when:
            repository.each(cl)
    
            then:
            1 * cl.call(['class1', value1] as Object[])
            1 * cl.call(['class2', value2] as Object[])
            0 * cl._
        }
    
        def canIterateOverClassesUsingAction() {
            TestDomainObject value1 = new TestDomainObject('a')
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Sat Apr 06 02:21:33 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  4. .teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt

    package util
    
    import common.Arch
    import common.JvmVendor
    import common.KillProcessMode.KILL_ALL_GRADLE_PROCESSES
    import common.Os
    import common.applyPerformanceTestSettings
    import common.buildToolGradleParameters
    import common.checkCleanM2AndAndroidUserHome
    import common.gradleWrapper
    import common.individualPerformanceTestArtifactRules
    import common.killProcessStep
    import common.performanceTestCommandLine
    import common.removeSubstDirOnWindows
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Feb 13 13:53:39 GMT 2024
    - 4.9K bytes
    - Viewed (2)
  5. .cm/summary_table.cm

                </tr>
                {% endfor %}
                </table>
    
    changes:
      # Sum all the lines added/edited in the PR
      additions: {{ branch.diff.files_metadata | map(attr='additions') | sum }}
      # Sum all the line removed in the PR
      deletions: {{ branch.diff.files_metadata | map(attr='deletions') | sum }}
      # Calculate the ratio of new code
    Plain Text
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Thu Feb 08 15:20:44 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/PerformanceTest.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package configurations
    
    import common.KillProcessMode.KILL_ALL_GRADLE_PROCESSES
    import common.KillProcessMode.KILL_PROCESSES_STARTED_BY_GRADLE
    import common.Os
    import common.applyPerformanceTestSettings
    import common.buildToolGradleParameters
    import common.checkCleanM2AndAndroidUserHome
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 5.3K bytes
    - Viewed (0)
  7. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.ktlint.gradle.kts

     * limitations under the License.
     */
    
    plugins {
        id("org.gradle.kotlin-dsl.ktlint-convention")
    }
    
    tasks {
        runKtlintCheckOverKotlinScripts {
            // Only check the build files, not all *.kts files in the project
            includes += listOf("*.gradle.kts")
        }
    
        withType<Test>().configureEach {
            shouldRunAfter(ktlintCheck)
        }
    }
    
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sun Oct 01 11:07:15 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  8. build-logic/documentation/build.gradle.kts

        implementation("com.google.guava:guava")
        implementation("com.uwyn:jhighlight") {
            exclude(module = "servlet-api")
        }
        implementation("com.vladsch.flexmark:flexmark-all")
        implementation("commons-lang:commons-lang")
        implementation("org.asciidoctor:asciidoctor-gradle-jvm")
        implementation("org.asciidoctor:asciidoctorj")
        implementation("org.asciidoctor:asciidoctorj-pdf")
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 1.2K bytes
    - Viewed (0)
  9. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.groovy-dsl-gradle-plugin.gradle.kts

    }
    
    tasks.withType<Test>().configureEach {
        if (JavaVersion.current().isJava9Compatible) {
            //allow ProjectBuilder to inject legacy types into the system classloader
            jvmArgs("--add-opens", "java.base/java.lang=ALL-UNNAMED")
            jvmArgs("--illegal-access=deny")
        }
        useJUnitPlatform()
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Oct 03 15:32:00 GMT 2023
    - 1.8K bytes
    - Viewed (0)
  10. build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.build-logic.kotlin-dsl-gradle-plugin.gradle.kts

        }
    }
    
    ktlint {
        filter {
            exclude("gradle/kotlin/dsl/accessors/_*/**")
        }
    }
    
    tasks.runKtlintCheckOverKotlinScripts {
        // Only check the build files, not all *.kts files in the project
        includes += listOf("*.gradle.kts")
    }
    
    tasks.named("codeQuality") {
        dependsOn("ktlintCheck")
    }
    
    tasks.validatePlugins {
        failOnWarning = true
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Tue Oct 03 15:32:00 GMT 2023
    - 1.7K bytes
    - Viewed (0)
Back to top