Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 343 for Enforce (1.71 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/groovy/settings.gradle

    // tag::prefer-settings[]
    dependencyResolutionManagement {
        rulesMode = RulesMode.PREFER_SETTINGS
    }
    // end::prefer-settings[]
    
    // tag::enforce-settings[]
    dependencyResolutionManagement {
        rulesMode = RulesMode.FAIL_ON_PROJECT_RULES
    }
    // end::enforce-settings[]
    
    // tag::prefer-projects[]
    dependencyResolutionManagement {
        rulesMode = RulesMode.PREFER_PROJECT
    }
    // end::prefer-projects[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-metadataRule/kotlin/settings.gradle.kts

    // tag::prefer-settings[]
    dependencyResolutionManagement {
        rulesMode = RulesMode.PREFER_SETTINGS
    }
    // end::prefer-settings[]
    
    // tag::enforce-settings[]
    dependencyResolutionManagement {
        rulesMode = RulesMode.FAIL_ON_PROJECT_RULES
    }
    // end::enforce-settings[]
    
    // tag::prefer-projects[]
    dependencyResolutionManagement {
        rulesMode = RulesMode.PREFER_PROJECT
    }
    // end::prefer-projects[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. pilot/pkg/security/authn/factory.go

    	// JwtFilter returns the JWT HTTP filter to enforce the underlying authentication policy.
    	// It may return nil, if no JWT validation is needed.
    	JwtFilter(useExtendedJwt, clearRouteCache bool) *hcm.HttpFilter
    
    	// AuthNFilter returns the (authn) HTTP filter to enforce the underlying authentication policy.
    	// It may return nil, if no authentication is needed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/resources/org/gradle/buildinit/plugins/MavenConversionIntegrationTest/enforcerplugin/some-thing/pom.xml

        </dependencies>
        <build>
            <plugins>
                <plugin>
                    <artifactId>maven-enforcer-plugin</artifactId>
                    <version>1.1.1</version>
                    <executions>
                        <execution>
                            <goals>
                                <goal>enforce</goal>
                            </goals>
                            <inherited>true</inherited>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/runtime/security_unix.go

    import (
    	"internal/stringslite"
    )
    
    func secure() {
    	initSecureMode()
    
    	if !isSecureMode() {
    		return
    	}
    
    	// When secure mode is enabled, we do one thing: enforce specific
    	// environment variable values (currently we only force GOTRACEBACK=none)
    	//
    	// Other packages may also disable specific functionality when secure mode
    	// is enabled (determined by using linkname to call isSecureMode).
    
    	secureEnv()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 866 bytes
    - Viewed (0)
  6. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/BuildOperationType.java

     * The type token should be a non-instantiable and non extensible class.
     *
     * The producer side APIs in Gradle do not currently enforce (at compile-time or run-time) details or result types.
     * Over time, they will be evolved to enforce usage of correct types.
     *
     * Currently, the only reason to use structured details/results objects is to expose
     * information to the build scan plugin.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. testing/precondition-tester/README.md

    Preconditions can define and enforce conditions like:
    - The test is running on Windows (`@Requires(UnitTestPreconditions.Windows)`)
    - The test is running on JDK 8 compatible JDKs (`@Requires(UnitTestPreconditions.Jdk8OrLater)`)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/IvyArtifactNameSerializer.java

        public static final IvyArtifactNameSerializer INSTANCE = new IvyArtifactNameSerializer();
        private IvyArtifactNameSerializer() {
            // Private to enforce singleton.
        }
    
        @Override
        public IvyArtifactName read(Decoder decoder) throws IOException {
            String artifactName = decoder.readString();
            String type = decoder.readString();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/policy.go

    		// If the version that we're about to upgrade to is a released version, we should fully enforce this policy
    		// If the version is a CI/dev/experimental version, it's okay to jump two minor version steps, but then require the -f flag
    		if len(newK8sVersion.PreRelease()) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/utils/string_utils.h

      // inception, sizes were represented using 32bit which forced an implicit cap
      // on the size of the buffer. When this was refactored to use size_t (which
      // could be 64bit) we enforce that the buffer remains at most 32bit length to
      // avoid a change in behavior.
      const size_t max_length_;
    };
    }  // namespace mlir::TFL
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top