Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 593 for greater (0.46 sec)

  1. guava/src/com/google/common/collect/Ordering.java

     *
     * <ol>
     *   <li>First, if only one {@code Foo} is null, that null value is treated as <i>greater</i>
     *   <li>Next, non-null {@code Foo} values are passed to {@code getBarFunction} (we will be
     *       comparing {@code Bar} values from now on)
     *   <li>Next, if only one {@code Bar} is null, that null value is treated as <i>lesser</i>
     *   <li>Finally, natural ordering is used (i.e. the result of {@code Bar.compareTo(Bar)} is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Ordering.java

     *
     * <ol>
     *   <li>First, if only one {@code Foo} is null, that null value is treated as <i>greater</i>
     *   <li>Next, non-null {@code Foo} values are passed to {@code getBarFunction} (we will be
     *       comparing {@code Bar} values from now on)
     *   <li>Next, if only one {@code Bar} is null, that null value is treated as <i>lesser</i>
     *   <li>Finally, natural ordering is used (i.e. the result of {@code Bar.compareTo(Bar)} is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  3. src/crypto/rsa/pss.go

    // used. If opts.Hash is set, it overrides hash.
    //
    // The signature is randomized depending on the message, key, and salt size,
    // using bytes from rand. Most applications should use [crypto/rand.Reader] as
    // rand.
    func SignPSS(rand io.Reader, priv *PrivateKey, hash crypto.Hash, digest []byte, opts *PSSOptions) ([]byte, error) {
    	// Note that while we don't commit to deterministic execution with respect
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    3. *Downloaded resources:* Shared caches downloaded from a remote repository (e.g., cached dependencies).
    +
    Default retention for unused resources is 30 days.
    4. *Created resources:* Shared caches that Gradle creates during a build (e.g., artifact transforms).
    +
    Default retention for unused resources is 7 days.
    5. *Build cache:* The local build cache (e.g., build-cache-1).
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go

    		{"dual IPv6 only, but mask difference greater than 16. Default node-mask", "2001:db8::1/12", nil, false},
    		{"dual IPv6 only, but mask difference greater than 16. Configured node-mask", "2001:db8::1/64", []kubeadmapi.Arg{{Name: "node-cidr-mask-size-ipv6", Value: "120"}}, false},
    		{"dual IPv4 only CIDR", "10.0.0.16/12", nil, true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  6. src/crypto/aes/gcm_s390x.go

    // between each block as required by the GCM spec. The initial counter value
    // is given by cnt, which is updated with the value of the next counter value
    // to use.
    //
    // The lengths of both dst and buf must be greater than or equal to the length
    // of src. buf may be partially or completely overwritten during the execution
    // of the function.
    //
    //go:noescape
    func cryptBlocksGCM(fn code, key, dst, src, buf []byte, cnt *gcmCount)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  7. pkg/test/framework/suite_test.go

    			actual:     1,
    			expectSkip: false,
    		},
    		{
    			name:       "greater than min",
    			min:        1,
    			max:        100,
    			actual:     2,
    			expectSkip: false,
    		},
    		{
    			name:       "max less than zero",
    			min:        1,
    			max:        0,
    			actual:     1,
    			expectSkip: false,
    		},
    		{
    			name:       "greater than max",
    			min:        1,
    			max:        1,
    			actual:     2,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. pkg/controlplane/instance.go

    	KubeletClientConfig      kubeletclient.KubeletClientConfig
    
    	// Values to build the IP addresses used by discovery
    	// The range of IPs to be assigned to services with type=ClusterIP or greater
    	ServiceIPRange net.IPNet
    	// The IP address for the GenericAPIServer service (must be inside ServiceIPRange)
    	APIServerServiceIP net.IP
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:50:04 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/autoscaling/v2/types.go

    	// value contains the amount of change which is permitted by the policy.
    	// It must be greater than zero
    	Value int32 `json:"value" protobuf:"varint,2,opt,name=value"`
    
    	// periodSeconds specifies the window of time for which the policy should hold true.
    	// PeriodSeconds must be greater than zero and less than or equal to 1800 (30 min).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Writer.kt

       * `promisedStreamId` to which response frames will be delivered. Push promise frames are sent as
       * a part of the response to `streamId`. The `promisedStreamId` has a priority of one greater than
       * `streamId`.
       *
       * @param streamId client-initiated stream ID.  Must be an odd number.
       * @param promisedStreamId server-initiated stream ID.  Must be an even number.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top