Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 516 for implying (0.38 sec)

  1. pkg/apis/flowcontrol/types.go

    	// non-negative integer and the limit is calculated as follows.
    	//
    	// BorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )
    	//
    	// The value of this field can be more than 100, implying that this
    	// priority level can borrow a number of seats that is greater than
    	// its own nominal concurrency limit (NominalCL).
    	// When this field is left `nil`, the limit is effectively infinite.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 24.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/flowcontrol/v1beta1/types.go

    	// non-negative integer and the limit is calculated as follows.
    	//
    	// BorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )
    	//
    	// The value of this field can be more than 100, implying that this
    	// priority level can borrow a number of seats that is greater than
    	// its own nominal concurrency limit (NominalCL).
    	// When this field is left `nil`, the limit is effectively infinite.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/FluentIterable.java

     *       as {@code findFirst()} or {@code iterator()} is invoked. (Even though {@code Stream}
     *       contains all the right method <i>signatures</i> to implement {@link Iterable}, it does not
     *       actually do so, to avoid implying repeat-iterability.) {@code FluentIterable}, on the other
     *       hand, is multiple-use, and does implement {@link Iterable}.
     *   <li>Streams offer many features not found here, including {@code min/max}, {@code distinct},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 30 00:14:39 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/FluentIterable.java

     *       as {@code findFirst()} or {@code iterator()} is invoked. (Even though {@code Stream}
     *       contains all the right method <i>signatures</i> to implement {@link Iterable}, it does not
     *       actually do so, to avoid implying repeat-iterability.) {@code FluentIterable}, on the other
     *       hand, is multiple-use, and does implement {@link Iterable}.
     *   <li>Streams offer many features not found here, including {@code min/max}, {@code distinct},
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jan 30 00:14:39 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/flowcontrol/v1/types.go

    	// non-negative integer and the limit is calculated as follows.
    	//
    	// BorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )
    	//
    	// The value of this field can be more than 100, implying that this
    	// priority level can borrow a number of seats that is greater than
    	// its own nominal concurrency limit (NominalCL).
    	// When this field is left `nil`, the limit is effectively infinite.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/flowcontrol/v1beta2/types.go

    	// non-negative integer and the limit is calculated as follows.
    	//
    	// BorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )
    	//
    	// The value of this field can be more than 100, implying that this
    	// priority level can borrow a number of seats that is greater than
    	// its own nominal concurrency limit (NominalCL).
    	// When this field is left `nil`, the limit is effectively infinite.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:27:57 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/flowcontrol/v1beta3/types.go

    	// non-negative integer and the limit is calculated as follows.
    	//
    	// BorrowingCL(i) = round( NominalCL(i) * borrowingLimitPercent(i)/100.0 )
    	//
    	// The value of this field can be more than 100, implying that this
    	// priority level can borrow a number of seats that is greater than
    	// its own nominal concurrency limit (NominalCL).
    	// When this field is left `nil`, the limit is effectively infinite.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 22:22:51 UTC 2023
    - 31.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    Applying the plugin is as simple as inserting a  `plugins {}` block at the beginning of the Gradle build script, i.e. before `ant.importBuild()`.
    Here's how to apply the Java Library Plugin:
    
    .Applying the Java Library Plugin
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener.go

    	// specified listener ports? if so, we should not add any more HTTP
    	// services to the port. The user could have specified a sidecar
    	// resource with one or more explicit ports and then added a catch
    	// all listener, implying add all other ports as usual. When we are
    	// iterating through the services for a catchAll egress listener,
    	// the caller would have set the locked bit for each listener Entry
    	// in the map.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Maps.java

        }
    
        boolean apply(@CheckForNull Object key, @ParametricNullness V value) {
          // This method is called only when the key is in the map (or about to be added to the map),
          // implying that key is a K.
          @SuppressWarnings({"unchecked", "nullness"})
          K k = (K) key;
          return predicate.apply(Maps.immutableEntry(k, value));
        }
    
        @Override
        @CheckForNull
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
Back to top