Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 340 for greater (3.28 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/lower_tf.td

      [(NonScalarType $features), (NonScalarType $labels)]>;
    
    // Returns size of the specified dimension as scalar elements attribute of type
    // $1.
    // Requires $0 to be of RankedTensorType with rank greater than `dim` and the
    // dimension should be known.
    class GetDimSizeOfType<int dim> : NativeCodeCall<
      "GetScalarOfType(getElementTypeOrSelf($1), "
      "$0.getType().cast<RankedTensorType>().getDimSize(" # dim # "))">;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. cmd/erasure-metadata-utils.go

    // occurs maximum number of times, the error value returned depends on how
    // golang's map orders keys. This doesn't affect correctness as long as quorum
    // value is greater than or equal to simple majority, since none of the equally
    // maximal values would occur quorum or more number of times.
    func reduceErrs(errs []error, ignoredErrs []error) (maxCount int, maxErr error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableSortedSet.java

      }
    
      /**
       * Returns a builder that creates immutable sorted sets whose elements are ordered by the reverse
       * of their natural ordering.
       */
      public static <E extends Comparable<?>> Builder<E> reverseOrder() {
        return new Builder<>(Collections.reverseOrder());
      }
    
      /**
       * Returns a builder that creates immutable sorted sets whose elements are ordered by their
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// May only be set when `deprecated` is true.
    	// The default warning indicates this version is deprecated and recommends use
    	// of the newest served version of equal or greater stability, if one exists.
    	// +optional
    	DeprecationWarning *string `json:"deprecationWarning,omitempty" protobuf:"bytes,8,opt,name=deprecationWarning"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/watch_cache.go

    	var oldest uint64
    	switch {
    	case w.listResourceVersion > 0 && !w.removedEventSinceRelist:
    		// If no event was removed from the buffer since last relist, the oldest watch
    		// event we can deliver is one greater than the resource version of the list.
    		oldest = w.listResourceVersion + 1
    	case size > 0:
    		// If the previous condition is not satisfied: either some event was already
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 10:20:57 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// - it is set to 'false' if generation of the object is greater than 1.
    	//
    	// The goal is to enable the kube-apiserver to apply update on suggested
    	// configuration objects installed by previous releases but not overwrite
    	// changes made by the cluster operators.
    	// Note that this distinction is imperfectly detected: in the case where an
    	// operator deletes a suggested configuration object and later creates it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultConfigurationResolver.java

                // When resolving build dependencies, we ignore the dependencySpec, potentially capturing a greater
                // set of build dependencies than actually required. This is because it takes a lot of extra information
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  8. src/crypto/rsa/pkcs1v15.go

    // ciphertext. Most applications should use [crypto/rand.Reader]
    // as random. Note that the returned ciphertext does not depend
    // deterministically on the bytes read from random, and may change
    // between calls and/or between versions.
    //
    // WARNING: use of this function to encrypt plaintexts other than
    // session keys is dangerous. Use RSA OAEP in new protocols.
    func EncryptPKCS1v15(random io.Reader, pub *PublicKey, msg []byte) ([]byte, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:21 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. pkg/kubelet/userns/userns_manager.go

    	"k8s.io/kubernetes/pkg/registry/core/service/allocator"
    	utilfs "k8s.io/kubernetes/pkg/util/filesystem"
    )
    
    // length for the user namespace to create (65536).
    const userNsLength = (1 << 16)
    
    // Create a new map when we removed enough pods to avoid memory leaks
    // since Go maps never free memory.
    const mapReInitializeThreshold = 1000
    
    type userNsPodsManager interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/mutating/dispatcher.go

    	// Audit handler decides whether annotation with this prefix should be logged based on audit level.
    	// Since mutating webhook patches the request body, audit level must be greater or equal to Request
    	// for the annotation to be logged
    	PatchAuditAnnotationPrefix = "patch.webhook.admission.k8s.io/"
    	// MutationAuditAnnotationPrefix is a prefix for presisting webhook mutation existence in audit annotation.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 19.6K bytes
    - Viewed (0)
Back to top