Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 342 for overloads (0.13 sec)

  1. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *
     * <h4>Combining</h4>
     *
     * To derive a {@code ClosingFuture} from two or more input steps, pass the input steps to {@link
     * #whenAllComplete(Iterable)} or {@link #whenAllSucceed(Iterable)} or its overloads.
     *
     * <h3>Cancelling</h3>
     *
     * Any step in a pipeline can be {@linkplain #cancel(boolean) cancelled}, even after another step
     * has been derived, with the same semantics as cancelling a {@link Future}. In addition, a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/Verify.java

       * custom message otherwise.
       *
       * <p>See {@link #verify(boolean, String, Object...)} for details.
       *
       * @since 23.1 (varargs overload since 17.0)
       */
      public static void verify(boolean expression, String errorMessageTemplate, char p1) {
        if (!expression) {
          throw new VerifyException(lenientFormat(errorMessageTemplate, p1));
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 18.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/Verify.java

       * custom message otherwise.
       *
       * <p>See {@link #verify(boolean, String, Object...)} for details.
       *
       * @since 23.1 (varargs overload since 17.0)
       */
      public static void verify(boolean expression, String errorMessageTemplate, char p1) {
        if (!expression) {
          throw new VerifyException(lenientFormat(errorMessageTemplate, p1));
        }
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon May 17 14:07:47 UTC 2021
    - 18.5K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KaResolver.kt

        /**
         * Returns all the candidates considered during [overload resolution](https://kotlinlang.org/spec/overload-resolution.html) for the call
         * corresponding to this [KtElement].
         *
         * [resolveCallOld] only returns the final result of overload resolution, i.e., the selected callable after considering candidate
         * applicability and choosing the most specific candidate.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  5. guava/src/com/google/common/util/concurrent/ListeningScheduledExecutorService.java

      /** @since 15.0 (previously returned ScheduledFuture) */
      @Override
      ListenableScheduledFuture<?> schedule(Runnable command, long delay, TimeUnit unit);
    
      /**
       * Duration-based overload of {@link #schedule(Runnable, long, TimeUnit)}.
       *
       * @since 29.0
       */
      default ListenableScheduledFuture<?> schedule(Runnable command, Duration delay) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/python/mlir_wrapper/mlir_wrapper.pyi

        def getAsStr(self) -> str: ...
        def push_back(self, arg0) -> None: ...
    
    class OpBuilder:
        @overload
        def __init__(self, arg0: MLIRContext) -> None: ...
        @overload
        def __init__(self, arg0: Region) -> None: ...
        @overload
        def __init__(self, arg0) -> None: ...
        @overload
        def __init__(self, arg0: Block, arg1: Block_Iterator) -> None: ...
        def create(self, *args, **kwargs) -> Any: ...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 09 17:10:09 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

    // STL-style container class, the first overload of IsContainerTest
    // will be viable (since both C::iterator* and C::const_iterator* are
    // valid types and NULL can be implicitly converted to them).  It will
    // be picked over the second overload as 'int' is a perfect match for
    // the type of argument 0.  If C::iterator or C::const_iterator is not
    // a valid type, the first overload is not viable, and the second
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/internal/metaobject/DynamicObject.java

        /**
         * Don't use this method. Use the overload {@link #tryGetProperty(String)} instead.
         */
        @Nullable
        Object getProperty(String name) throws MissingPropertyException;
    
        /**
         * Don't use this method. Use the overload {@link #trySetProperty(String, Object)} instead.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 11:50:19 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/cel/library/test.go

    	if t.version == 0 {
    		options = append(options, cel.Function("test",
    			cel.Overload("test", []*cel.Type{}, cel.BoolType,
    				cel.FunctionBinding(func(args ...ref.Val) ref.Val {
    					return types.True
    				}))))
    	}
    
    	if t.version >= 1 {
    		options = append(options, cel.Function("test",
    			cel.Overload("test", []*cel.Type{}, cel.BoolType,
    				cel.FunctionBinding(func(args ...ref.Val) ref.Val {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/BuildOperationExecutor.java

         */
        <O extends RunnableBuildOperation> void runAll(Action<BuildOperationQueue<O>> schedulingAction);
    
        /**
         * Overload allowing {@link BuildOperationConstraint} to be specified.
         *
         * @see BuildOperationExecutor#runAllWithAccessToProjectState(Action)
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:18 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top