Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for SELECT (1.76 sec)

  1. platforms/core-configuration/dependency-management-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/dm/LocalFileDependencyBackedArtifactSetCodec.kt

                    val recordingSet = RecordingVariantSet(value.dependencyMetadata.files, sourceAttributes)
                    val selected = value.variantSelector.select(recordingSet, value.requestAttributes, true, recordingSet)
                    if (selected == ResolvedArtifactSet.EMPTY) {
                        // Don't need to record the mapping
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/EncryptionService.kt

        private val cacheBuilderFactory: GlobalScopedCacheBuilderFactory,
    ) : EncryptionService {
    
        private
        val secretKey: SecretKey? by lazy {
            produceSecretKey(EncryptionKind.select(startParameter.encryptionRequested))
        }
    
        private
        fun produceSecretKey(encryptionKind: EncryptionKind) =
            secretKeySource(encryptionKind).let { keySource ->
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        platform(true, true, true),
    
        // Cross version tests select a small set of versions to cover when run as part of this stage
        quickFeedbackCrossVersion(false, false, true),
    
        // Cross version tests select all versions to cover when run as part of this stage
        allVersionsCrossVersion(false, false, true, 240),
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  4. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/WorkerDaemonClientsManager.java

            try {
                return memoryInfo.getOsSnapshot().getPhysicalMemory().getTotal();
            } catch (UnsupportedOperationException e) {
                return -1;
            }
        }
    
        /**
         * Select idle daemon clients to stop.
         *
         * @param selectionFunction Gets all idle daemon clients, daemons of returned clients are stopped
         */
        @VisibleForTesting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 19:54:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/SamplesGenerator.kt

            val testFrameworkChoice = if (descriptor.testFrameworks.size > 1) """
    Select test framework:
      1: JUnit 4
      2: TestNG
      3: Spock
      4: JUnit Jupiter
    Enter selection (default: JUnit 4) [1..4]
    """ else ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 17:51:21 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. CONTRIBUTING.md

    To import Gradle into IntelliJ:
    - Open the `build.gradle.kts` file with IntelliJ and choose "Open as Project"
    - Make sure "Create separate module per source set" is selected
    - Make sure  "Use default gradle wrapper" is selected
    - Select a Java 11 VM as "Gradle JVM"
    - In the "File already exists" dialogue, choose "Yes" to overwrite
    - In the "Open Project" dialogue, choose "Delete Existing Project and Import"
    - Revert the Git changes to files in the `.idea` folder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

            config.description("points to '${config.location}' which is managed by Gradle")
                .reason("Trying to write an output to a read-only location which is for Gradle internal use only")
                .solution("Select a different output location")
                .render()
        }
    
        String unsupportedNotation(@DelegatesTo(value = UnsupportedNotation, strategy = Closure.DELEGATE_FIRST) Closure<?> spec = {}) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 42.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

    Type 'SomeTransform' property 'mixed' points to '${reserved}' which is managed by Gradle.
    
    Reason: Trying to write an output to a read-only location which is for Gradle internal use only.
    
    Possible solution: Select a different output location.
    
    ${validationMessage("cannot_write_to_reserved_location")}
    """
        }
    
        def "tests output of cannotCreateRootOfFileTree"() {
            def location = dummyLocation('/tmp/foo/bar')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
Back to top