Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 182 for setStrings (1.21 sec)

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

        def "reports task problems in tasks from included build that run in main build"() {
            given:
            settingsFile << """
                includeBuild 'inc'
            """
            file("inc/settings.gradle") << """
                include 'sub'
            """
            file("inc/sub/build.gradle") << """
                gradle.buildFinished { }
                tasks.register('broken') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/ToolingApiIdeaModelCrossVersionSpec.groovy

    subprojects {
        apply plugin: 'java'
    }
    
    project(':impl') {
        apply plugin: 'idea'
    
        dependencies {
            ${implementationConfiguration} project(':api')
        }
    }
    """
            file('settings.gradle').text = "include 'api', 'impl'"
    
            when:
            IdeaProject project = withConnection { connection -> connection.getModel(IdeaProject.class) }
            def module = project.children.find { it.name == 'impl' }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/concurrent/BuildServices.kt

        }
    
        private
        fun String.toPositiveLongOrNull() =
            toLongOrNull()?.takeIf { it > 0 }
    }
    
    
    internal
    class DefaultAsyncIOScopeFactory(
        private
        val settings: AsyncIOScopeSettings = JavaSystemPropertiesAsyncIOScopeSettings(),
        executorServiceProvider: () -> ExecutorService
    ) : Closeable, AsyncIOScopeFactory {
    
        private
        val executorService = lazy(executorServiceProvider)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m5/ToolingApiIdeaModelCrossVersionSpec.groovy

            project.jdkName == '1.6'
        }
    
        def "provides all modules"() {
    
            file('build.gradle').text = '''
    subprojects {
        apply plugin: 'java'
    }
    '''
            file('settings.gradle').text = "include 'api', 'impl'"
    
            when:
            IdeaProject project = loadToolingModel(IdeaProject)
    
            then:
            project.children.size() == 3
            project.children.any { it.name == 'api' }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. maven-bom/pom.xml

          </dependency>
          <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-settings</artifactId>
            <version>${project.version}</version>
          </dependency>
          <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-settings-builder</artifactId>
            <version>${project.version}</version>
          </dependency>
          <dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. internal/config/callhome/callhome.go

    	"github.com/minio/minio/internal/config"
    	"github.com/minio/pkg/v3/env"
    )
    
    // Callhome related keys
    const (
    	Enable    = "enable"
    	Frequency = "frequency"
    )
    
    // DefaultKVS - default KV config for subnet settings
    var DefaultKVS = config.KVS{
    	config.KV{
    		Key:   Enable,
    		Value: "off",
    	},
    	config.KV{
    		Key:   Frequency,
    		Value: "24h",
    	},
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. src/cmd/go/internal/telemetrycmd/telemetry.go

    	"os"
    
    	"cmd/go/internal/base"
    	"cmd/internal/telemetry"
    )
    
    var CmdTelemetry = &base.Command{
    	UsageLine: "go telemetry [off|local|on]",
    	Short:     "manage telemetry data and settings",
    	Long: `Telemetry is used to manage Go telemetry data and settings.
    
    Telemetry can be in one of three modes: off, local, or on.
    
    When telemetry is in local mode, counter data is written to the local file
    system, but will not be uploaded to remote servers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 20:16:39 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/flow-services/src/integTest/groovy/org/gradle/internal/flow/services/FlowScopeIntegrationTest.groovy

                failureDescriptionStartsWith "Configuration cache problems found in this build"
            }
        }
    
        enum ScriptTarget {
            SETTINGS,
            PROJECT;
    
            String getFileName() {
                this == SETTINGS ? 'settings.gradle' : 'build.gradle'
            }
    
            String getTargetType() {
                toString().capitalize()
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:01:34 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/BuildProfile.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.profile;
    
    import org.gradle.StartParameter;
    import org.gradle.api.initialization.Settings;
    import org.gradle.internal.buildevents.BuildStartedTime;
    import org.gradle.internal.service.scopes.Scope;
    import org.gradle.internal.service.scopes.ServiceScope;
    import org.gradle.util.internal.CollectionUtils;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  10. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/AbstractInitIntegrationSpec.groovy

        TestFile containerDir
        TestFile targetDir
        TestFile subprojectDir
    
        abstract String subprojectName()
    
        def setup() {
            file("settings.gradle") << """
                // This is here to prevent Gradle searching up to find the build's settings.gradle
            """
            initializeIntoTestDir()
        }
    
        void initializeIntoTestDir() {
            containerDir = testDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 07:17:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top