Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 86 for Cacheable (0.1 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/KnownProblemIds.groovy

            'validation:type-validation:invalid-use-of-type-annotation' : 'Incorrect use of type annotation',
            'validation:type-validation:not-cacheable-without-reason' : 'Not cacheable without reason',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/GenerateIdeaProject.java

     * Generates an IDEA project file for root project *only*. If you want to fine tune the idea configuration <p> At this moment nearly all configuration is done via {@link IdeaProject}.
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class GenerateIdeaProject extends XmlGeneratorTask<Project> {
    
        private IdeaProject ideaProject;
    
        public GenerateIdeaProject() {}
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/GenerateEclipseJdt.java

     * <p>
     * At this moment nearly all configuration is done via {@link EclipseJdt}.
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class GenerateEclipseJdt extends PropertiesGeneratorTask<Jdt> {
    
        private EclipseJdt jdt;
    
        public GenerateEclipseJdt() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/MutableTransformExecution.java

            visitInputArtifact(visitor);
        }
    
        private String normalizeAbsolutePath(String path) {
            // We try to normalize the absolute path, so the workspace id is stable between machines for cacheable transforms.
            if (path.startsWith(rootProjectLocation)) {
                return path.substring(rootProjectLocation.length());
            }
            return path;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:14:33 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/route/route_cache.go

    	return model.RDSType
    }
    
    func (r *Cache) Cacheable() bool {
    	if r == nil {
    		return false
    	}
    	if r.ListenerPort == 0 {
    		return false
    	}
    
    	for _, config := range r.VirtualServices {
    		vs := config.Spec.(*networking.VirtualService)
    		for _, httpRoute := range vs.Http {
    			for _, match := range httpRoute.Match {
    				// if vs has source match, not cacheable
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  6. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/GenerateIdeaModule.java

     * <p>
     * Please refer to interesting examples on idea configuration in {@link IdeaModule}.
     * <p>
     * At this moment nearly all configuration is done via {@link IdeaModule}.
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class GenerateIdeaModule extends XmlGeneratorTask<Module> {
    
        private IdeaModule module;
    
        public GenerateIdeaModule() {}
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 3K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-application/src/main/java/org/gradle/internal/deployment/RunApplication.java

    import org.gradle.process.internal.JavaExecHandleFactory;
    import org.gradle.work.DisableCachingByDefault;
    
    import javax.inject.Inject;
    import java.util.Collection;
    
    @DisableCachingByDefault(because = "Produces no cacheable output")
    public abstract class RunApplication extends DefaultTask {
        private String mainClassName;
        private Collection<String> arguments;
        private FileCollection classpath;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/GenerateEclipseWtpComponent.java

     * If you want to fine tune the eclipse configuration
     * <p>
     * At this moment nearly all configuration is done via {@link EclipseWtpComponent}.
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class GenerateEclipseWtpComponent extends XmlGeneratorTask<WtpComponent> {
    
        private EclipseWtpComponent component;
    
        public GenerateEclipseWtpComponent() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/GenerateEclipseWtpFacet.java

     * If you want to fine tune the eclipse configuration
     * <p>
     * At this moment nearly all configuration is done via {@link EclipseWtpFacet}.
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class GenerateEclipseWtpFacet extends XmlGeneratorTask<WtpFacet> {
    
        private EclipseWtpFacet facet;
    
        public GenerateEclipseWtpFacet() {
            getXmlTransformer().setIndentation("\t");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/ConfigurePrecompiledScriptDependenciesResolver.kt

    import org.gradle.kotlin.dsl.support.listFilesOrdered
    import org.gradle.work.DisableCachingByDefault
    
    import java.io.File
    import javax.inject.Inject
    
    
    @DisableCachingByDefault(because = "Produces no cacheable output")
    abstract class ConfigurePrecompiledScriptDependenciesResolver @Inject constructor(
    
        private
        val implicitImports: ImplicitImports
    
    ) : DefaultTask(), SharedAccessorsPackageAware {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top