Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,266 for Enforce (0.13 sec)

  1. src/main/java/jcifs/Configuration.java

         * 
         * @return whether to enforce SMB signing for IPC connections
         */
        boolean isIpcSigningEnforced ();
    
    
        /**
         * 
         * Property <tt>jcifs.smb.client.signingEnforced</tt> (boolean, default false)
         * 
         * @return whether to enforce SMB signing (for everything)
         */
        boolean isSigningEnforced ();
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
  2. pkg/kubelet/apis/config/validation/validation_test.go

    			return conf
    		},
    		errMsg: "invalid configuration: enforceNodeAllocatable (--enforce-node-allocatable) may not contain additional enforcements when \"none\" is specified",
    	}, {
    		name: "invalid EnforceNodeAllocatable",
    		configure: func(conf *kubeletconfig.KubeletConfiguration) *kubeletconfig.KubeletConfiguration {
    			conf.EnforceNodeAllocatable = []string{"invalid-enforce-node-allocatable"}
    			return conf
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  3. pkg/kubelet/apis/config/validation/validation.go

    			}
    		case kubetypes.KubeReservedEnforcementKey:
    			if kc.KubeReservedCgroup == "" {
    				allErrors = append(allErrors, fmt.Errorf("invalid configuration: kubeReservedCgroup (--kube-reserved-cgroup) must be specified when %q contained in enforceNodeAllocatable (--enforce-node-allocatable)", kubetypes.KubeReservedEnforcementKey))
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 17:13:59 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/basic.py

    import tensorflow.compat.v2 as tf
    from tensorflow.compiler.mlir.tensorflow.tests.tf_saved_model import common
    
    
    # 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 Oct 31 08:49:35 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  10. architecture/standards/0002-avoid-using-java-serialization.md

    - **Cross-Language Compatibility:**
    Java serialization is inherently Java-centric and does not support cross-language scenarios well.
    
    - **Type Safety:**
    Java serialization does not enforce type safety as strictly as some alternatives, potentially leading to runtime errors.
    
    ## Decision
    
    We do not use Java serialization.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 29 22:32:18 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top