Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 129 for tofalse (0.6 sec)

  1. .teamcity/pluginData/Check/plugin-settings.xml

            <state type="buildFixed" enabled="false" />
            <state type="buildBroken" enabled="false" />
            <state type="responsibilityChanged" enabled="false" />
            <state type="buildPinned" enabled="false" />
            <state type="buildUnpinned" enabled="false" />
          </states>
          <build-types enabled-for-all="false" enabled-for-subprojects="false">
            <build-type id="bt270451" />
          </build-types>
    XML
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue May 18 02:15:16 GMT 2021
    - 2.2K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        quickFeedbackCrossVersion(false, false, true),
    
        // Cross version tests select all versions to cover when run as part of this stage
        allVersionsCrossVersion(false, false, true, 240),
    
        // run integMultiVersionTest with all version to cover
        allVersionsIntegMultiVersion(false, true, false),
        parallel(false, true, false),
    
        noDaemon(false, true, false, 300),
        configCache(false, true, false),
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Feb 23 01:54:48 GMT 2024
    - 20.9K bytes
    - Viewed (0)
  3. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/metadata/HasKotlinFlagsMetadataQuery.kt

            is KotlinClassMetadata.MultiFileClassPart -> hasPackageFlags(this::toKmPackage, memberType, jvmSignature, predicate)
            is KotlinClassMetadata.MultiFileClassFacade -> false
            is KotlinClassMetadata.SyntheticClass -> false
            is KotlinClassMetadata.Unknown -> false
            else -> throw IllegalStateException("Unsupported Kotlin metadata type '${this::class}'")
        }
    
    
    private
    typealias FlagsPredicate = (Flags) -> Boolean
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Jun 07 08:14:15 GMT 2023
    - 4.5K bytes
    - Viewed (0)
  4. .teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt

        }
    
        @ParameterizedTest
        @CsvSource(
            value = [
                "myParam, true,  '--daemon'",
                "''     , true,  '--daemon'",
                "myParam, false, '--no-daemon'",
                "''     , false, '--no-daemon'"
            ]
        )
        fun `can apply defaults to linux test configurations`(extraParameters: String, daemon: Boolean, expectedDaemonParam: String) {
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 6.5K bytes
    - Viewed (0)
  5. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

            }
        }.toMap()
    
    
    /**
     * Creates a [Provider] that returns `true` when this [Provider] has a value
     * and `false` otherwise. The returned [Provider] always has a value.
     * @see Provider.isPresent
     */
    private
    fun <T> Provider<T>.presence(): Provider<Boolean> =
        map { true }.orElse(false)
    
    
    fun Project.gradleProperty(propertyName: String) = providers.gradleProperty(propertyName)
    
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Mon Jan 01 01:23:31 GMT 2024
    - 16.2K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/promotion/StartReleaseCycleTest.kt

    import jetbrains.buildServer.configs.kotlin.triggers.vcs
    import vcsroots.gradlePromotionBranches
    
    object StartReleaseCycleTest : BasePromotionBuildType(vcsRootId = gradlePromotionBranches, cleanCheckout = false) {
        init {
            id("Promotion_AllBranchesStartReleaseCycleTest")
            name = "Start Release Cycle Test"
            description = "Test for Start Release Cycle pipeline"
    
            steps {
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Dec 05 00:08:14 GMT 2023
    - 2K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt

        model: CIBuildModel,
        gradleTasks: String,
        os: Os = Os.LINUX,
        extraParameters: String = "",
        daemon: Boolean = true,
        maxParallelForks: String = "%maxParallelForks%",
        isRetry: Boolean = false,
    ) {
        val stepName: String = if (isRetry) "GRADLE_RETRY_RUNNER" else "GRADLE_RUNNER"
        val stepExecutionMode: ExecutionMode = if (isRetry) ExecutionMode.RUN_ONLY_ON_FAILURE else ExecutionMode.DEFAULT
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Apr 24 08:17:56 GMT 2024
    - 7.9K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                    // ignore this task
                    task.setEnabled(false);
                    return;
                }
    
                task.setExecutionMode(ExecutionMode.OUT_OF_PROCESS);
                task.outputOptions(options -> {
                    options.setSeparateOutputDirs(false);
                    options.setBackends(singletonList("html5"));
                });
    
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Mar 01 05:46:51 GMT 2024
    - 17.7K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/configurations/BuildDistributions.kt

            this,
            "packageBuild",
            extraParameters = buildScanTag("BuildDistributions") +
                " -PtestJavaVersion=${LINUX.buildJavaVersion.major}" +
                " -Porg.gradle.java.installations.auto-download=false"
        )
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        artifactRules = """$artifactRules
            subprojects/distributions-full/build/distributions/*.zip => distributions
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Sep 22 09:52:00 GMT 2023
    - 970 bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/configurations/CompileAll.kt

            model,
            this,
            "compileAllBuild -PignoreIncomingBuildReceipt=true -DdisableLocalCache=true",
            extraParameters = buildScanTag("CompileAll") + " " + "-Porg.gradle.java.installations.auto-download=false"
        )
    
        artifactRules = """$artifactRules
            platforms/core-runtime/base-services/build/generated-resources/build-receipt/org/gradle/build-receipt.properties
        """.trimIndent()
    }) {
        companion object {
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Sep 22 09:52:00 GMT 2023
    - 999 bytes
    - Viewed (0)
Back to top