Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 56 for SetEnabled (0.17 sec)

  1. subprojects/core-api/src/main/java/org/gradle/caching/configuration/BuildCache.java

     */
    public interface BuildCache {
    
        /**
         * Returns whether the build cache is enabled.
         */
        boolean isEnabled();
    
        /**
         * Sets whether the build cache is enabled.
         */
        void setEnabled(boolean enabled);
    
        /**
         * Returns whether a given build can store outputs in the build cache.
         */
        boolean isPush();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 08 17:15:17 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ExecutionTimeTaskConfigurationIntegrationTest.groovy

            "onlyIf = ({ } as Spec)"                                    | "Task.setOnlyIf(Spec)"
            "enabled = false"                                           | "Task.setEnabled(boolean)"
            "dependsOn 'a', 'b'"                                        | "Task.dependsOn(Object...)"
            "dependsOn = ['a', 'b']"                                    | "Task.setDependsOn(Iterable)"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/rules/JacocoViolationRuleImpl.java

        private final List<JacocoLimit> limits = new ArrayList<JacocoLimit>();
    
        @Override
        public boolean isEnabled() {
            return enabled;
        }
    
        @Override
        public void setEnabled(boolean enabled) {
            this.enabled = enabled;
        }
    
        @Override
        public void setElement(String element) {
            this.scope = element;
        }
    
        @Override
        public String getElement() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/RobotsTxtHelper.java

                return line.substring(0, commentIndex);
            }
            return line;
        }
    
        public boolean isEnabled() {
            return enabled;
        }
    
        public void setEnabled(final boolean enabled) {
            this.enabled = enabled;
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedImplementationIntegrationTest.groovy

                            @Override
                            public void execute(BuildCacheConfiguration config) {
                                config.getLocal().setEnabled(false);
                                config.remote(InMemoryBuildCache.class, new Action<InMemoryBuildCache>() {
                                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 20 12:09:58 UTC 2022
    - 6.6K bytes
    - Viewed (0)
  6. maven-compat/src/main/java/org/apache/maven/profiles/ProfilesConversionUtils.java

            org.apache.maven.model.RepositoryPolicy policy = new org.apache.maven.model.RepositoryPolicy();
            policy.setEnabled(profileXmlRepo.isEnabled());
            policy.setUpdatePolicy(profileXmlRepo.getUpdatePolicy());
            policy.setChecksumPolicy(profileXmlRepo.getChecksumPolicy());
            return policy;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  7. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinMultiplatformPluginSmokeTest.groovy

            where:
            kotlinVersion << TestedVersions.kotlin.versions.findAll {
                def version = VersionNumber.parse(it)
                // versions prior to 1.7.0 use the removed 'void org.gradle.api.reporting.DirectoryReport.setEnabled(boolean)' method
                // 1.7.22 does not define implementation of the 'abstract void failure(java.lang.Object, org.gradle.api.tasks.testing.TestFailure)' of interface org.gradle.api.internal.tasks.testing.TestResultProcessor.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 07:33:24 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/http/HcHttpClientTest.java

            } finally {
                server.stop();
            }
        }
    
        public void test_processRobotsTxt_disabled() {
            final String url = "http://localhost:7070/hoge.html";
            httpClient.robotsTxtHelper.setEnabled(false);
            httpClient.processRobotsTxt(url);
            assertTrue(true);
        }
    
        public void test_convertRobotsTxtPathPattern() {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu May 09 09:28:25 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/plugin.go

    func (c *Plugin[H]) SetAuthorizer(authorizer authorizer.Authorizer) {
    	c.authorizer = authorizer
    }
    
    func (c *Plugin[H]) SetMatcher(matcher *matching.Matcher) {
    	c.matcher = matcher
    }
    
    func (c *Plugin[H]) SetEnabled(enabled bool) {
    	c.enabled = enabled
    }
    
    func (c *Plugin[H]) SetExcludedAdmissionResources(excludedResources []schema.GroupResource) {
    	c.excludedResources.Insert(excludedResources...)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 19:11:10 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/plugin.go

    	return a.Plugin.Dispatch(ctx, attr, o)
    }
    
    func (a *Plugin) InspectFeatureGates(featureGates featuregate.FeatureGate) {
    	a.Plugin.SetEnabled(featureGates.Enabled(features.ValidatingAdmissionPolicy))
    }
    
    func compilePolicy(policy *Policy) Validator {
    	hasParam := false
    	if policy.Spec.ParamKind != nil {
    		hasParam = true
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top