Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 173 for copy2 (0.12 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/exploded-war-child-copy-spec-example.png

    exploded-war-child-copy-spec-example.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 21:47:26 UTC 2024
    - 126.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    	Traverse(func(AST) bool)
    
    	// Copy an AST with possible transformations.
    	// If the skip function returns true, no copy is required.
    	// If the copy function returns nil, no copy is required.
    	// The Copy method will do the right thing if copy returns nil
    	// for some components of an AST but not others, so a good
    	// copy function will only return non-nil for AST values that
    	// need to change.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

              }
    
              Node* copy;
              if (node_map.find(n) != node_map.end()) {
                // Already copied this node.
                copy = node_map.at(n);
              } else if (IsKeyPlaceholderNode(*n)) {
                // Change a).
                copy = key_placeholder;
                node_map[n] = copy;
              } else {
                // Copy the node.
                NodeDef copy_def = n->def();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  4. cmd/object-handlers_test.go

    			t.Fatalf("Test %d: Failed to create HTTP request for copy Object: <ERROR> %v", i, err)
    		}
    		// "X-Amz-Copy-Source" header contains the information about the source bucket and the object to copied.
    		if testCase.copySourceHeader != "" {
    			reqV2.Header.Set("X-Amz-Copy-Source", testCase.copySourceHeader)
    		}
    		if testCase.copyModifiedHeader != "" {
    			reqV2.Header.Set("X-Amz-Copy-Source-If-Modified-Since", testCase.copyModifiedHeader)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    		done := make(chan bool)
    		go func() {
    			io.Copy(rw, pr)
    			close(done)
    		}()
    		time.Sleep(25 * time.Millisecond) // give Copy a chance to break things
    		n, err := io.Copy(io.Discard, req.Body)
    		if err != nil {
    			t.Errorf("handler Copy: %v", err)
    			return
    		}
    		if n != size {
    			t.Errorf("handler Copy = %d; want %d", n, size)
    		}
    		pw.Write([]byte("hi"))
    		pw.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. pkg/apis/core/zz_generated.deepcopy.go

    		in, out := &in.Command, &out.Command
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.Args != nil {
    		in, out := &in.Args, &out.Args
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.Ports != nil {
    		in, out := &in.Ports, &out.Ports
    		*out = make([]ContainerPort, len(*in))
    		copy(*out, *in)
    	}
    	if in.EnvFrom != nil {
    		in, out := &in.EnvFrom, &out.EnvFrom
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    		in, out := &in.Command, &out.Command
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.Args != nil {
    		in, out := &in.Args, &out.Args
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.Ports != nil {
    		in, out := &in.Ports, &out.Ports
    		*out = make([]ContainerPort, len(*in))
    		copy(*out, *in)
    	}
    	if in.EnvFrom != nil {
    		in, out := &in.EnvFrom, &out.EnvFrom
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authorization/v1/generated.pb.go

    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	i -= len(m.Name)
    	copy(dAtA[i:], m.Name)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name)))
    	i--
    	dAtA[i] = 0x3a
    	i -= len(m.Subresource)
    	copy(dAtA[i:], m.Subresource)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Subresource)))
    	i--
    	dAtA[i] = 0x32
    	i -= len(m.Resource)
    	copy(dAtA[i:], m.Resource)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Resource)))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 100.9K bytes
    - Viewed (0)
  9. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.jar

    DEFAULT_BUFFER_SIZE = 4096; private void IOUtil(); public static void copy(java.io.InputStream, java.io.OutputStream) throws java.io.IOException; public static void copy(java.io.InputStream, java.io.OutputStream, int) throws java.io.IOException; public static void copy(java.io.Reader, java.io.Writer) throws java.io.IOException; public static void copy(java.io.Reader, java.io.Writer, int) throws java.io.IOException; public static void copy(java.io.InputStream, java.io.Writer) throws java.io.IOException;...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 164.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authorization/v1beta1/generated.pb.go

    	i := len(dAtA)
    	_ = i
    	var l int
    	_ = l
    	i -= len(m.Name)
    	copy(dAtA[i:], m.Name)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name)))
    	i--
    	dAtA[i] = 0x3a
    	i -= len(m.Subresource)
    	copy(dAtA[i:], m.Subresource)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Subresource)))
    	i--
    	dAtA[i] = 0x32
    	i -= len(m.Resource)
    	copy(dAtA[i:], m.Resource)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Resource)))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101K bytes
    - Viewed (0)
Back to top