Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 182 for setStrings (0.16 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsKotlinSettingsScriptIntegrationTest.groovy

    class UndeclaredBuildInputsKotlinSettingsScriptIntegrationTest extends AbstractUndeclaredBuildInputsIntegrationTest implements KotlinPluginImplementation {
        @Override
        String getLocation() {
            return "Settings file 'settings.gradle.kts'"
        }
    
        @Override
        void buildLogicApplication(BuildInputRead read) {
            settingsKotlinFile << """
                ${read.requiredImports().collect { "import $it" }.join("\n")}
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. internal/config/scanner/scanner.go

    	EnvCycle         = "MINIO_SCANNER_CYCLE"
    	EnvDelayLegacy   = "MINIO_CRAWLER_DELAY"
    	EnvMaxWait       = "MINIO_SCANNER_MAX_WAIT"
    	EnvMaxWaitLegacy = "MINIO_CRAWLER_MAX_WAIT"
    )
    
    // Config represents the heal settings.
    type Config struct {
    	// Delay is the sleep multiplier.
    	Delay float64 `json:"delay"`
    
    	// Sleep always or based on incoming S3 requests.
    	IdleMode int32 // 0 => on, 1 => off
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r18/BuildActionCrossVersionSpec.groovy

            e.message.startsWith('The supplied build action failed with an exception.')
            e.cause.message.contains("A problem occurred evaluating settings 'root'.")
    
            and:
            failure.assertHasDescription("A problem occurred evaluating settings 'root'.")
            assertHasConfigureFailedLogging()
        }
    
        @TargetGradleVersion(">=7.3")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl-plugins/build.gradle.kts

        )
    
        bundledGradlePlugin(
            name = "kotlinDslCompilerSettings",
            shortDescription = "Gradle Kotlin DSL Compiler Settings",
            pluginId = "org.gradle.kotlin.kotlin-dsl.compiler-settings",
            pluginClass = "org.gradle.kotlin.dsl.plugins.dsl.KotlinDslCompilerPlugins"
        )
    
        bundledGradlePlugin(
            name = "kotlinDslPrecompiledScriptPlugins",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/plugin/software/internal/SoftwareTypeRegistry.java

     * limitations under the License.
     */
    
    package org.gradle.plugin.software.internal;
    
    import org.gradle.api.Plugin;
    import org.gradle.api.Project;
    import org.gradle.api.initialization.Settings;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    
    import java.util.Set;
    
    /**
     * Allows registration of software types implemented by plugins.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:28 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. internal/config/batch/batch.go

    	EnvKeyRotationWorkersWait   = "MINIO_BATCH_KEYROTATION_WORKERS_WAIT"
    	EnvKeyExpirationWorkersWait = "MINIO_BATCH_EXPIRATION_WORKERS_WAIT"
    )
    
    var configMu sync.RWMutex
    
    // Config represents the batch job settings.
    type Config struct {
    	ReplicationWorkersWait time.Duration `json:"replicationWorkersWait"`
    	KeyRotationWorkersWait time.Duration `json:"keyRotationWorkersWait"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. pkg/test/framework/components/echo/common/deployment/namespace.go

    	n.ProxylessGRPC = match.ServiceName(echo.NamespacedName{Name: ProxylessGRPCSvc, Namespace: ns}).GetMatches(echos)
    	if !t.Settings().Skip(echo.VM) {
    		n.VM = match.ServiceName(echo.NamespacedName{Name: VMSvc, Namespace: ns}).GetMatches(echos)
    	}
    	if !t.Settings().Skip(echo.Sotw) {
    		n.Sotw = match.ServiceName(echo.NamespacedName{Name: SotwSvc, Namespace: ns}).GetMatches(echos)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 16:01:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsIntegrationTest.groovy

        def "option also enables configuration cache"() {
            settingsFile << """
                println "configuring settings"
            """
            buildFile """
                println "configuring root project"
                task thing { }
            """
    
            when:
            isolatedProjectsRun("thing")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  9. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/TaskTransitiveSubclassingBinaryCompatibilityCrossVersionSpec.groovy

        @Issue("https://github.com/gradle/gradle/issues/16199")
        def "can subclass task subclass in plugin"() {
            setup:
            file('plugin/settings.gradle') << """
                rootProject.name = 'plugin'
            """
            file('plugin/build.gradle') << """
                plugins {
                    id 'java-gradle-plugin'
                    id 'groovy'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 04:11:37 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/server/health/HealthExpirationStrategy.java

                logger.warn(EXPIRE_DAEMON_MESSAGE + when + " " + reason + ".\n"
                    + "The project memory settings are likely not configured or are configured to an insufficient value.\n"
                    + extraInfo + ".\n"
                    + "These settings can be adjusted by setting 'org.gradle.jvmargs' in 'gradle.properties'.\n"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:38 UTC 2024
    - 7.9K bytes
    - Viewed (1)
Back to top