Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,536 for Enforce (0.12 sec)

  1. plugin/pkg/admission/limitranger/interfaces.go

    type LimitRangerActions interface {
    	// MutateLimit is a pluggable function to set limits on the object.
    	MutateLimit(limitRange *corev1.LimitRange, kind string, obj runtime.Object) error
    	// ValidateLimits is a pluggable function to enforce limits on the object.
    	ValidateLimit(limitRange *corev1.LimitRange, kind string, obj runtime.Object) error
    	// SupportsAttributes is a pluggable function to allow overridding what resources the limitranger
    	// supports.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 18:00:06 UTC 2019
    - 1.5K bytes
    - Viewed (0)
  2. src/main/java/jcifs/SmbTransportPool.java

         *            context to use
         * @param address
         * @param port
         * @param exclusive
         *            whether to acquire an unshared connection
         * @param forceSigning
         *            whether to enforce SMB signing on this connection
         * @return a transport connection to the target
         */
        SmbTransport getSmbTransport ( CIFSContext tc, Address address, int port, boolean exclusive, boolean forceSigning );
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun May 17 09:02:44 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  3. internal/config/dns/operator_dns.go

    // namespace at MinIO level with this DNS entry. The global namespace in
    // enforced by the Kubernetes Operator
    func (c *OperatorDNS) List() (srvRecords map[string][]SrvRecord, err error) {
    	return nil, ErrNotImplemented
    }
    
    // Get - Retrieves DNS records for a bucket.
    // This is a No Op for Operator because, there is no intent to enforce global
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Mar 06 16:56:10 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/basic_v1_no_variable_lifting.py

    # pylint: disable=missing-docstring,line-too-long
    import tensorflow.compat.v1 as tf
    from tensorflow.compiler.mlir.tensorflow.tests.tf_saved_model import common_v1
    
    # Verify that the tf.versions attribute exists. It is difficult to enforce
    # contents, since the version numbers change over time. The conversion logic
    # itself is verified in the common graphdef converter, so here just assert
    # it is being invoked.
    # CHECK: module
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/hash/Funnel.java

     * serialization of funnels. When possible, it is recommended that funnels be implemented as a
     * single-element enum to maintain serialization guarantees. See Effective Java (2nd Edition), Item
     * 3: "Enforce the singleton property with a private constructor or an enum type". For example:
     *
     * <pre>{@code
     * public enum PersonFunnel implements Funnel<Person> {
     *   INSTANCE;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/Funnel.java

     * serialization of funnels. When possible, it is recommended that funnels be implemented as a
     * single-element enum to maintain serialization guarantees. See Effective Java (2nd Edition), Item
     * 3: "Enforce the singleton property with a private constructor or an enum type". For example:
     *
     * <pre>{@code
     * public enum PersonFunnel implements Funnel<Person> {
     *   INSTANCE;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 20 18:43:59 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/no_input_shape_v1.py

    import tensorflow.compat.v1 as tf
    from tensorflow.compiler.mlir.tensorflow.tests.tf_saved_model import common_v1
    from tensorflow.core.protobuf import meta_graph_pb2
    
    # Verify that the tf.versions attribute exists. It is difficult to enforce
    # contents, since the version numbers change over time. The conversion logic
    # itself is verified in the common graphdef converter, so here just assert
    # it is being invoked.
    # CHECK: module
    # CHECK-SAME: tf.versions
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  10. 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)
Back to top