Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/configuration/DaemonBuildOptions.java

            }
    
            @Override
            public void applyTo(boolean value, DaemonParameters settings, Origin origin) {
                settings.setEnabled(value);
            }
        }
    
        public static class ForegroundOption extends EnabledOnlyBooleanBuildOption<DaemonParameters> {
            public ForegroundOption() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 19:00:19 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Managed.java

     * In addition to the traditional getter method, properties of type {@code boolean} (but not {@code Boolean})
     * also support a getter method which name starts with {@code is}, for example:
     *
     * <pre>
     * void setEnabled(boolean enabled);
     * boolean isEnabled();
     * </pre>
     *
     * <h4>Supported property types</h4>
     * <p>
     * The following JDK types are allowed:
     * <ul>
     * <li>{@link String}</li>
     * <li>{@link Boolean}</li>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top