Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 66 for unwrapping (0.21 sec)

  1. src/crypto/tls/tls.go

    		switch key := key.(type) {
    		case *rsa.PrivateKey, *ecdsa.PrivateKey, ed25519.PrivateKey:
    			return key, nil
    		default:
    			return nil, errors.New("tls: found unknown private key type in PKCS#8 wrapping")
    		}
    	}
    	if key, err := x509.ParseECPrivateKey(der); err == nil {
    		return key, nil
    	}
    
    	return nil, errors.New("tls: failed to parse private key")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/aot/tfcompile.bzl

          freeze_saver: If provided, run freeze_graph with this saver, in SaverDef
            binary form, to convert variables into constants.
          cpp_class: The name of the generated C++ class, wrapping the generated
            function.  The syntax of this flag is
            [[<optional_namespace>::],...]<class_name>.  This mirrors the C++ syntax
            for referring to a class, where multiple namespaces may precede the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 19:18:08 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tf2xla/internal/passes/clustering_passes.td

        the attributes of `cluster_func`. This is done by parsing the
        `XlaSharding` / `TPUPartitionedOutput` / `TPUPartitionedInput` ops inside
        `cluster_func`.
    
        For example, given the following `cluster_func` wrapping `func`:
    
        ```mlir
          func @test(%arg0: tensor<*xi32>) {
            "tf_device.cluster_func"(%arg0) {
                func = @func,
                step_marker_location = ""} : (tensor<*xi32>) -> tensor<*xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  4. src/mime/multipart/formdata_test.go

    	f, err := mr.ReadForm(maxMemory)
    	if err != nil {
    		t.Fatal(err)
    	}
    	t.Logf("Got: %#v", f)
    }
    
    // failOnReadAfterErrorReader is an io.Reader wrapping r.
    // It fails t if any Read is called after a failing Read.
    type failOnReadAfterErrorReader struct {
    	t      *testing.T
    	r      io.Reader
    	sawErr error
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 05 18:31:56 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. src/crypto/tls/quic.go

    	if err == nil {
    		return nil
    	}
    	var ae AlertError
    	if errors.As(err, &ae) {
    		return err
    	}
    	var a alert
    	if !errors.As(err, &a) {
    		a = alertInternalError
    	}
    	// Return an error wrapping the original error and an AlertError.
    	// Truncate the text of the alert to 0 characters.
    	return fmt.Errorf("%w%.0w", err, AlertError(a))
    }
    
    func (c *Conn) quicReadHandshakeBytes(n int) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. pkg/volume/csi/csi_block.go

    limitations under the License.
    */
    
    /*
    This file defines block volume related methods for CSI driver.
    CSI driver is responsible for staging/publishing volumes to their staging/publish paths.
    Mapping and unmapping of a device in a publish path to its global map path and its
    pod device map path are done by operation_executor through MapBlockVolume/UnmapBlockVolume
    (MapBlockVolume and UnmapBlockVolume take care for lock, symlink, and bind mount).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

       * invokeAll}, and {@code invokeAny} methods, so any special handling of tasks must be implemented
       * in the delegate's {@code execute} method or by wrapping the returned {@code
       * ListeningExecutorService}.
       *
       * <p>If the delegate executor was already an instance of {@code ListeningExecutorService}, it is
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 15 10:40:05 UTC 2024
    - 39K bytes
    - Viewed (0)
  8. src/strconv/atoi_test.go

    	{"`", "strconv.ParseFloat: parsing \"`\": failed"},
    	{"1\x00.2", `strconv.ParseFloat: parsing "1\x00.2": failed`},
    }
    
    func init() {
    	// The parse routines return NumErrors wrapping
    	// the error and the string. Convert the tables above.
    	for i := range parseUint64Tests {
    		test := &parseUint64Tests[i]
    		if test.err != nil {
    			test.err = &NumError{"ParseUint", test.in, test.err}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 05:09:21 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/search/search.go

    func NewMatch(pattern string) *Match {
    	return &Match{pattern: pattern}
    }
    
    // Pattern returns the pattern to be matched.
    func (m *Match) Pattern() string { return m.pattern }
    
    // AddError appends a MatchError wrapping err to m.Errs.
    func (m *Match) AddError(err error) {
    	m.Errs = append(m.Errs, &MatchError{Match: m, Err: err})
    }
    
    // IsLiteral reports whether the pattern is free of wildcards and meta-patterns.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 31 20:33:05 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  10. misc/go_android_exec/main.go

    	// However, if the os.Stderr (or os.Stdout) file descriptors are
    	// passed on, the hanging adb subprocess will hold them open and
    	// go test will hang forever.
    	//
    	// Avoid that by wrapping stderr, breaking the short circuit and
    	// forcing cmd.Run to use another pipe and goroutine to pass
    	// along stderr from adb.
    	cmd.Stderr = struct{ io.Writer }{os.Stderr}
    	err := cmd.Run()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 17:46:57 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top