Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 85 for copy2 (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/reflect/value.go

    						regArgs.Ptrs[st.ireg] = v.ptr
    					}
    					regArgs.Ints[st.ireg] = uintptr(v.ptr)
    				}
    			case abiStepFloatReg:
    				// Copy values to "float registers."
    				if v.flag&flagIndir == 0 {
    					panic("attempted to copy pointer to FP register")
    				}
    				offset := add(v.ptr, st.offset, "precomputed value offset")
    				floatToReg(&regArgs, st.freg, st.size, offset)
    			default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Maps.java

       * mapping in the underlying map and determine which satisfy the filter. When a live view is
       * <i>not</i> needed, it may be faster to copy the filtered map and use the copy.
       *
       * <p><b>Warning:</b> {@code keyPredicate} must be <i>consistent with equals</i>, as documented at
       * {@link Predicate#apply}. Do not provide a predicate such as {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Maps.java

       * mapping in the underlying map and determine which satisfy the filter. When a live view is
       * <i>not</i> needed, it may be faster to copy the filtered map and use the copy.
       *
       * <p><b>Warning:</b> {@code keyPredicate} must be <i>consistent with equals</i>, as documented at
       * {@link Predicate#apply}. Do not provide a predicate such as {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  10. cmd/object-handlers.go

    	}
    
    	if sc != "" {
    		defaultMeta[xhttp.AmzStorageClass] = sc
    	}
    
    	// if x-amz-metadata-directive says COPY then we
    	// return the default metadata.
    	if isDirectiveCopy(r.Header.Get(xhttp.AmzMetadataDirective)) {
    		return defaultMeta, nil
    	}
    
    	// Copy is default behavior if not x-amz-metadata-directive is set.
    	return defaultMeta, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
Back to top