Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for isPush (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/caching/internal/services/DefaultBuildCacheControllerFactory.java

            @Nullable DescribedBuildCacheService<BuildCache, BuildCacheService> remote
        ) {
            boolean localPush = local != null && local.config.isPush();
            boolean remotePush = remote != null && remote.config.isPush();
            return new BuildCacheServicesConfiguration(
                buildPath.getPath(),
                local != null ? local.service : null, localPush,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 17:08:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/caching/internal/services/AbstractBuildCacheControllerFactory.java

                this.push = buildCache.isPush();
                this.type = type;
                this.config = config;
            }
    
            @Override
            public String getClassName() {
                return className;
            }
    
            @Override
            public boolean isPush() {
                return push;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 17:08:26 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/BuildScanIntegrationTest.kt

            withSettings(
                """
                buildCache {
                    local {
                        directory = file("${buildCacheDir.normalisedPath}")
                        isEnabled = true
                        isPush = true
                    }
                }
                """
            )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/CachedKotlinTaskExecutionIntegrationTest.groovy

            file("buildSrc/settings.gradle.kts") << """
                buildCache {
                    local {
                        directory = "${cacheDir.absoluteFile.toURI()}"
                        isPush = true
                    }
                }
            """
        }
    
        @Requires(IntegTestPreconditions.NotParallelExecutor)
        @LeaksFileHandles
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache.adoc

    Gradle stores ("pushes") build outputs in any build cache that is enabled and has link:{javadocPath}/org/gradle/caching/configuration/BuildCache.html#isPush--[BuildCache.isPush()] set to `true`.
    
    By default, the local build cache has push enabled, and the remote build cache has push disabled.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 11:30:10 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.caching.configuration.AbstractBuildCache.isPush()> does not have raw return type assignable to org.gradle.api.provider.Property in (AbstractBuildCache.java:0)
    Method <org.gradle.caching.configuration.BuildCache.isEnabled()> does not have raw return type assignable to org.gradle.api.provider.Property in (BuildCache.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  7. cmd/update.go

    	// is KUBERNETES_SERVICE_HOST
    	// https://github.com/kubernetes/kubernetes/blob/master/pkg/kubelet/kubelet_pods.go#L541
    	return env.Get("KUBERNETES_SERVICE_HOST", "") != ""
    }
    
    // IsBOSH returns true if minio is deployed from a bosh package
    func IsBOSH() bool {
    	// "/var/vcap/bosh" exists in BOSH deployed instance.
    	_, err := os.Stat("/var/vcap/bosh")
    	if osIsNotExist(err) {
    		return false
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion.go

    			DeniedReason:      r.DeniedReason,
    			RouteError:        gwResult.error,
    		}
    		if r.IsMesh() {
    			res.RouteError = meshResult.error
    		}
    		return res
    	}))
    
    	vs := []config.Config{}
    	for _, parent := range filteredReferences(parentRefs) {
    		routes := gwResult.routes
    		vsHosts := []string{"*"}
    		if parent.IsMesh() {
    			routes = meshResult.routes
    			if parent.OriginalReference.Port != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/server/DaemonStateCoordinatorTest.groovy

        }
    
        boolean isForceStopped() {
            return coordinator.state == ForceStopped
        }
    
        boolean isIdle() {
            return coordinator.state == Idle
        }
    
        boolean isBusy() {
            return coordinator.state == Busy
        }
    
        boolean isStopRequested() {
            return coordinator.state == StopRequested
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:24:02 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/inline/inlheur/scoring.go

    	{may: passInlinableFuncToNestedIndCallAdj, must: passInlinableFuncToIndCallAdj},
    }
    
    func isMay(x scoreAdjustTyp) bool {
    	return mayToMust(x) != 0
    }
    
    func isMust(x scoreAdjustTyp) bool {
    	return mustToMay(x) != 0
    }
    
    func mayToMust(x scoreAdjustTyp) scoreAdjustTyp {
    	for _, v := range mayMustAdj {
    		if x == v.may {
    			return v.must
    		}
    	}
    	return 0
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:42:52 UTC 2024
    - 24.2K bytes
    - Viewed (0)
Back to top