Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for isPush (2.98 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

         * <p>
         * You can access the generated "Use" page by first going to the class or package,
         * then clicking on the "Use" link in the navigation bar.
         */
        @Input
        public boolean isUse() {
            return use.getValue();
        }
    
        public void setUse(boolean use) {
            this.use.setValue(use);
        }
    
        public StandardJavadocDocletOptions use(boolean use) {
            setUse(use);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
Back to top