Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,073 for wrappy (0.1 sec)

  1. src/syscall/mksyscall_windows.go

    		modArgs = []string{"-mod=readonly"}
    	} else {
    		// Nobody outside the standard library should be using this wrapper: other
    		// modules can vendor in the mkwinsyscall tool directly (as described in
    		// https://golang.org/issue/25922), so they don't need this wrapper to
    		// set module mode and -mod=readonly explicitly.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2K bytes
    - Viewed (0)
  2. src/errors/wrap.go

    }
    
    // Is reports whether any error in err's tree matches target.
    //
    // The tree consists of err itself, followed by the errors obtained by repeatedly
    // calling its Unwrap() error or Unwrap() []error method. When err wraps multiple
    // errors, Is examines err followed by a depth-first traversal of its children.
    //
    // An error is considered to match a target if it is equal to that target or if
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:04 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/resources/META-INF/gradle-plugins/org.gradle.wrapper.properties

    Tom Tresansky <******@****.***> 1694705555 -0400
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 665 bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/UncheckedThrowingFuture.java

        WrapperException(Throwable t) {
          super(t);
        }
      }
    
      private static void rethrow(ExecutionException e) throws ExecutionException {
        Throwable wrapper = e.getCause();
        if (wrapper instanceof WrapperException) {
          Throwable cause = wrapper.getCause();
          if (cause instanceof RuntimeException) {
            throw (RuntimeException) cause;
          } else if (cause instanceof Error) {
            throw (Error) cause;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 12 20:02:10 UTC 2018
    - 3.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/WrappingExecutorService.java

      protected Runnable wrapTask(Runnable command) {
        Callable<Object> wrapped = wrapTask(Executors.callable(command, null));
        return () -> {
          try {
            wrapped.call();
          } catch (Exception e) {
            restoreInterruptIfIsInterruptedException(e);
            throwIfUnchecked(e);
            throw new RuntimeException(e);
          }
        };
      }
    
      /**
       * Wraps a collection of tasks.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/WrappingExecutorService.java

      protected Runnable wrapTask(Runnable command) {
        Callable<Object> wrapped = wrapTask(Executors.callable(command, null));
        return () -> {
          try {
            wrapped.call();
          } catch (Exception e) {
            restoreInterruptIfIsInterruptedException(e);
            throwIfUnchecked(e);
            throw new RuntimeException(e);
          }
        };
      }
    
      /**
       * Wraps a collection of tasks.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/interpolation/PrefixedObjectValueSource.java

    /**
     * Wraps an arbitrary object with an {@link ObjectBasedValueSource} instance, then
     * wraps that source with a {@link PrefixedValueSourceWrapper} instance, to which
     * this class delegates all of its calls.
     */
    public class PrefixedObjectValueSource extends AbstractDelegatingValueSource implements QueryEnabledValueSource {
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 17 17:55:08 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  8. tensorflow/c/eager/graph_function.h

    using tensorflow::AbstractFunction;
    // Thin wrapper around a FunctionDef.
    class GraphFunction : public AbstractFunction {
     public:
      explicit GraphFunction(FunctionDef fdef);
      ~GraphFunction() override;
    
      // GraphFunction maybe stay alive for the duration of the returned
      // FunctionDef.
      Status GetFunctionDef(const FunctionDef** fdef) override;
    
      // Returns a shared reference to the wrapped function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/base/public/runtime.h

      friend class SavedModelAPI;
      friend class TensorHandle;
    
      // Wraps a TFE_Context. Takes ownership of ctx.
      explicit Runtime(TFE_Context* ctx) : ctx_(ctx) {}
    
      // Deletes the currently wrapped TFE_Context, swaps it with ctx,
      // and takes ownership of ctx.
      void Reset(TFE_Context* ctx) { ctx_.reset(ctx); }
    
      // Returns the TFE_Context that this object wraps. This object
      // retains ownership of the pointer.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 12 19:37:48 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  10. platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/UncheckedException.java

        /**
         * Note: always throws the failure in some form. The return value is to keep the compiler happy.
         */
        public static RuntimeException throwAsUncheckedException(Throwable t) {
            return throwAsUncheckedException(t, false);
        }
    
        /**
         * Note: always throws the failure in some form. The return value is to keep the compiler happy.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top