Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 71 for unwrapping (0.15 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/rest/update.go

    		newObj, err = transformer(ctx, newObj, oldObj)
    		if err != nil {
    			return nil, err
    		}
    	}
    
    	return newObj, nil
    }
    
    // wrappedUpdatedObjectInfo allows wrapping an existing objInfo and
    // chaining additional transformations/checks on the result of UpdatedObject()
    type wrappedUpdatedObjectInfo struct {
    	// obj is the updated object
    	objInfo UpdatedObjectInfo
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 27 11:48:28 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/UniAddress.java

            }
    
            throw uhe != null ? uhe : new UnknownHostException("invalid name");
        }
         */
    
    
        Object addr;
        String calledName;
    
        /**
         * Create a <tt>UniAddress</tt> by wrapping an <tt>InetAddress</tt> or
         * <tt>NbtAddress</tt>.
         */
    
        public UniAddress( Object addr ) {
            if( addr == null ) {
                throw new IllegalArgumentException();
            }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 16.2K bytes
    - Viewed (0)
  3. pkg/controller/replication/conversion.go

    	appsconversion "k8s.io/kubernetes/pkg/apis/apps/v1"
    	apiv1 "k8s.io/kubernetes/pkg/apis/core/v1"
    	"k8s.io/kubernetes/pkg/controller"
    )
    
    // informerAdapter implements ReplicaSetInformer by wrapping ReplicationControllerInformer
    // and converting objects.
    type informerAdapter struct {
    	rcInformer coreinformers.ReplicationControllerInformer
    }
    
    func (i informerAdapter) Informer() cache.SharedIndexInformer {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 14 18:43:33 UTC 2022
    - 12.7K bytes
    - Viewed (0)
  4. src/io/io.go

    var ErrShortBuffer = errors.New("short buffer")
    
    // EOF is the error returned by Read when no more input is available.
    // (Read must return EOF itself, not an error wrapping EOF,
    // because callers will test for EOF using ==.)
    // Functions should return EOF only to signal a graceful end of input.
    // If the EOF occurs unexpectedly in a structured data stream,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:34:10 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. staging/src/k8s.io/apimachinery/pkg/util/net/interface.go

    	Addrs(intf *net.Interface) ([]net.Addr, error)
    	Interfaces() ([]net.Interface, error)
    }
    
    // networkInterface implements the networkInterfacer interface for production code, just
    // wrapping the underlying net library function calls.
    type networkInterface struct{}
    
    func (_ networkInterface) InterfaceByName(intfName string) (*net.Interface, error) {
    	return net.InterfaceByName(intfName)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 07:07:03 UTC 2022
    - 14.7K bytes
    - Viewed (0)
Back to top