Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 101 for key3 (0.09 sec)

  1. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingEnvMapTest.groovy

            @Override
            String get(@Nullable Object key) {
                return super.get(Objects.requireNonNull(key))
            }
    
            @Override
            String getOrDefault(@Nullable Object key, String defaultValue) {
                return super.getOrDefault(Objects.requireNonNull(key), defaultValue)
            }
    
            @Override
            protected Map<String, String> delegate() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildFeatureIntegrationTest.groovy

            configurationCache.assertStateLoaded()
            outputContains("configurationCache.requested=true")
            outputContains("configurationCache.active=true")
        }
    
        def "not active even if requested due to --export-keys flag"() {
            def configurationCache = newConfigurationCacheFixture()
    
            buildFile """
                import org.gradle.api.configuration.BuildFeatures
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/IntermediateModelController.kt

    ) : ProjectStateStore<ModelKey, IntermediateModel>(store, StateType.IntermediateModels, "intermediate model", calculatedValueContainerFactory) {
        override fun projectPathForKey(key: ModelKey) = key.identityPath
    
        override fun write(encoder: Encoder, value: IntermediateModel) {
            val (context, codecs) = cacheIO.writerContextFor(encoder)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/ExtraAttributeDoc.groovy

        ExtraAttributeDoc(Element titleCell, Element valueCell) {
            this.titleCell = titleCell
            this.valueCell = valueCell
        }
    
        @Override
        String toString() {
            return "attribute[key: $key, value: $valueCell.textContent]"
        }
    
        String getKey() {
            return titleCell.textContent
        }
    
        List<Node> getTitle() {
            return titleCell.childNodes.collect { it }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/UndeclaredBuildInputListener.kt

    @EventScope(Scope.BuildTree::class)
    interface UndeclaredBuildInputListener {
        /**
         * Called when an undeclared system property read happens.
         */
        fun systemPropertyRead(key: String, value: Any?, consumer: String?)
    
        fun envVariableRead(key: String, value: String?, consumer: String?)
    
        fun fileOpened(file: File, consumer: String?)
    
        fun fileObserved(file: File, consumer: String?)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/DomBuilder.groovy

            }
            return element
        }
    
        protected Element createNode(Object name, Map attributes) {
            Element element = createNode(name)
            attributes.each {key, value ->
                element.setAttribute(key as String, value as String)
            }
            return element
        }
    
        protected Element createNode(Object name, Map attributes, Object value) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/ConfigurePrecompiledScriptDependenciesResolver.kt

                it.name to it.readLines()
            }
        }
    
    
    private
    fun resolverEnvironmentStringFor(properties: Iterable<Pair<String, List<String>>>): String =
        properties.joinToString(separator = ",") { (key, values) ->
            "$key=\"${values.joinToString(":")}\""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/util/UtilPerformanceProject.kt

        buildType(AdHocPerformanceScenarioWindows)
        buildType(AdHocPerformanceScenarioMacOS)
        buildType(AdHocPerformanceScenarioMacAppleSilicon)
    
        params {
            param("env.DEVELOCITY_ACCESS_KEY", "%ge.gradle.org.access.key%")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 03:34:53 UTC 2024
    - 450 bytes
    - Viewed (0)
  9. build-logic/binary-compatibility/src/test/groovy/gradlebuild/binarycompatibility/PublicAPIRulesTest.groovy

                    ]
                }
    
                @Override
                <T> T getUserData(String key) {
                    getUserData()[key]
                }
    
                @Override
                <T> void putUserData(String key, T value) {
                    getUserData().put(key, value)
                }
            }
            rule
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:12:19 UTC 2023
    - 16K bytes
    - Viewed (0)
  10. .github/workflows/codeql-analysis.yml

          # Checkout must run before the caching key is computed using the `hashFiles` method
    
        - name: Cache Gradle Modules
          uses: actions/cache@v4
          with:
            path: |
              ~/.gradle/caches/modules-2/
              ~/.gradle/caches/build-cache-1/
              ~/.gradle/caches/signatures/
              ~/.gradle/caches/keyrings/
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top