Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 407 for unwrapped (0.63 sec)

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

       * delegates to {@link #wrapTask(Callable)}.
       */
      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);
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/WrappingExecutorService.java

       * delegates to {@link #wrapTask(Callable)}.
       */
      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);
          }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. pkg/volume/projected/projected.go

    func (c *projectedVolumeUnmounter) TearDownAt(dir string) error {
    	klog.V(3).Infof("Tearing down volume %v for pod %v at %v", c.volName, c.podUID, dir)
    
    	wrapped, err := c.plugin.host.NewWrapperUnmounter(c.volName, wrappedVolumeSpec(), c.podUID)
    	if err != nil {
    		return err
    	}
    	if err = wrapped.TearDownAt(dir); err != nil {
    		return err
    	}
    
    	c.plugin.deleteServiceAccountToken(c.podUID)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/FallbackTestClientSocketFactory.kt

    import javax.net.ssl.SSLSocket
    import javax.net.ssl.SSLSocketFactory
    import okhttp3.FallbackTestClientSocketFactory.Companion.TLS_FALLBACK_SCSV
    
    /**
     * An SSLSocketFactory that delegates calls. Sockets created by the delegate are wrapped with ones
     * that will not accept the [TLS_FALLBACK_SCSV] cipher, thus bypassing server-side fallback
     * checks on platforms that support it. Unfortunately this wrapping will disable any
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tpu_colocate_composite_resource_ops.mlir

    // RUN: tf-opt %s -tf-tpu-colocate-composite-resource-ops | FileCheck %s
    
    // Tests ReadVariable op using composite device resource is wrapped inside
    // tf_device.Cluster.
    
    // CHECK-LABEL: func @testReadVariableOpColocated
    // CHECK-SAME: (%[[ARG0:.*]]: tensor<*x!tf_type.resource<tensor<4xf32>>>)
    func.func @testReadVariableOpColocated(%arg0: tensor<*x!tf_type.resource<tensor<4xf32>>>) {
      // CHECK:      tf_device.replicate
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. src/os/file_posix.go

    // A uid or gid of -1 means to not change that value.
    // If there is an error, it will be of type [*PathError].
    //
    // On Windows or Plan 9, Chown always returns the [syscall.EWINDOWS] or
    // EPLAN9 error, wrapped in *PathError.
    func Chown(name string, uid, gid int) error {
    	e := ignoringEINTR(func() error {
    		return syscall.Chown(name, uid, gid)
    	})
    	if e != nil {
    		return &PathError{Op: "chown", Path: name, Err: e}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/process/instrument/RuntimeExec1InstrumentationInDynamicGroovyWithIndyIntegrationTest.groovy

                [fromStringArray(), "Runtime.getRuntime().exec(command)", "", ""],
                // Spread calls
                [fromString(), "Runtime.getRuntime().exec(*[command])", "", ""],
                // type-wrapped arguments
                [fromGroovyString(), "Runtime.getRuntime().exec(command as String)", "", ""],
                [fromObjectList(), "Runtime.getRuntime().exec(command as String[])", "", ""],
                // Null-safe calls
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. src/cmd/go/internal/vcweb/insecure.go

    	if req.Host == "" && req.URL.Host == "" {
    		http.Error(w, "no Host provided in request", http.StatusBadRequest)
    		return
    	}
    
    	// Note that if the handler is wrapped with http.StripPrefix, the prefix
    	// will remain stripped in the redirected URL, preventing redirect loops
    	// if the scheme is already "http".
    
    	u := *req.URL
    	u.Scheme = "http"
    	u.User = nil
    	u.Host = req.Host
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 13:22:22 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/toolchain/ToolchainPrivate.java

         * @return {@code true} if the requirements match, otherwise {@code false}
         */
        boolean matchesRequirements(Map<String, String> requirements);
    
        /**
         *
         * @return the original model wrapped by this interface
         */
        ToolchainModel getModel();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/openapi/resolver/resolver.go

    	// attempted but the corresponding schema cannot be found.
    	ResolveSchema(gvk schema.GroupVersionKind) (*spec.Schema, error)
    }
    
    // ErrSchemaNotFound is wrapped and returned if the schema cannot be located
    // by the resolver.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 17:18:54 UTC 2022
    - 1.4K bytes
    - Viewed (0)
Back to top