Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 157 for Cacheable (0.27 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/building_swift_projects.adoc

    There are several options for customization, as you’ll see next.
    
    NOTE: All link:{groovyDslPath}/org.gradle.language.swift.tasks.SwiftCompile.html[SwiftCompile] tasks are incremental and cacheable.
    
    [[sec:swift_supported_tool_chain]]
    === Supported tool chain
    
    Gradle support the https://swift.org/download/[official Swift tool chain for macOS and Linux].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOptionsIntegrationTest.groovy

            outputContains 'sys prop value at execution time = 37'
            configurationCache.assertStateStored()
        }
    
        @Issue("gradle/gradle#14465")
        def "configuration is cacheable when providers are used in settings"() {
    
            given:
            def configurationCache = newConfigurationCacheFixture()
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 28K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    === Example: Testing cacheable tasks
    
    [source,groovy,indent=0]
    .BuildLogicFunctionalTest.groovy
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/reflect/validation/ValidationMessageCheckerTest.groovy

                includeLink()
            }
    
            then:
            outputEquals """
    Type 'Hello' property 'world' is declared to be sensitive to absolute paths.
    
    Reason: This is not allowed for cacheable transforms.
    
    Possible solution: Use a different normalization strategy via @PathSensitive, @Classpath or @CompileClasspath.
    
    ${validationMessage("cacheable_transform_cant_use_absolute_sensitivity")}
    """
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 25.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/native/building_cpp_projects.adoc

    There are several options for customization, as you’ll see next.
    
    NOTE: All link:{groovyDslPath}/org.gradle.language.cpp.tasks.CppCompile.html[CppCompile] tasks are incremental and cacheable.
    
    [[sec:cpp_supported_tool_chain]]
    === Supported tool chain
    
    Gradle offers the ability to execute the same build using different tool chains.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

     * {@link #setShowSinglePathToDependency(boolean)}, and {@link #getShowingAllVariants()}.
     */
    @DisableCachingByDefault(because = "Produces only non-cacheable console output")
    public abstract class DependencyInsightReportTask extends DefaultTask {
    
        private Spec<DependencyResult> dependencySpec;
        private boolean showSinglePathToDependency;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/Cache.kt

     * is still valid. Such responses increment both the network count and hit count.
     *
     * The best way to improve the cache hit rate is by configuring the web server to return cacheable
     * responses. Although this client honors all [HTTP/1.1 (RFC 7234)][rfc_7234] cache headers, it
     * doesn't cache partial responses.
     *
     * ## Force a Network Response
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modload/query.go

    		// (and is often associated with an error result).
    
    	case query == module.CanonicalVersion(query):
    		// This query refers to a specific version, and Go module versions
    		// are supposed to be cacheable and immutable (confirmed with checksums).
    		// If the version exists at all, we shouldn't need any extra information
    		// to identify which commit it resolves to.
    		//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  9. pilot/pkg/xds/endpoints/endpoint_builder.go

    		h.WriteString(b.service.Attributes.Namespace)
    	}
    	h.Write(Separator)
    
    	if b.proxyView != nil {
    		h.WriteString(b.proxyView.String())
    	}
    	h.Write(Separator)
    }
    
    func (b *EndpointBuilder) Cacheable() bool {
    	// If service is not defined, we cannot do any caching as we will not have a way to
    	// invalidate the results.
    	// Service being nil means the EDS will be empty anyways, so not much lost here.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 28 02:18:19 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/internal/reflect/validation/ValidationMessageChecker.groovy

            def config = display(SimpleMessage, 'cacheable_transform_cant_use_absolute_sensitivity', spec)
            config.description("is declared to be sensitive to absolute paths")
                .reason("This is not allowed for cacheable transforms")
                .solution("Use a different normalization strategy via @PathSensitive, @Classpath or @CompileClasspath")
                .render()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 11:49:03 UTC 2024
    - 42.1K bytes
    - Viewed (0)
Back to top