Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for copyFn (0.17 sec)

  1. pkg/apis/core/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *ExecAction) DeepCopyInto(out *ExecAction) {
    	*out = *in
    	if in.Command != nil {
    		in, out := &in.Command, &out.Command
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecAction.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *ExecAction) DeepCopyInto(out *ExecAction) {
    	*out = *in
    	if in.Command != nil {
    		in, out := &in.Command, &out.Command
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new ExecAction.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVBUreg x:(FNES _ _))
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpRISCV64FNES {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVBUreg x:(FLED _ _))
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpRISCV64FLED {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpLOONG64SGT {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVBUreg x:(SGTU _ _))
    	// result: x
    	for {
    		x := v_0
    		if x.Op != OpLOONG64SGTU {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	// match: (MOVBUreg x:(MOVBUload _ _))
    	// result: (MOVVreg x)
    	for {
    		x := v_0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/testdata/copy_test.go

    // Code generated by gen/copyGen.go. DO NOT EDIT.
    
    package main
    
    import "testing"
    
    type T1 struct {
    	pre  [8]byte
    	mid  [1]byte
    	post [8]byte
    }
    
    //go:noinline
    func t1copy_ssa(y, x *[1]byte) {
    	*y = *x
    }
    func testCopy1(t *testing.T) {
    	a := T1{[8]byte{201, 202, 203, 204, 205, 206, 207, 208}, [1]byte{0}, [8]byte{211, 212, 213, 214, 215, 216, 217, 218}}
    	x := [1]byte{100}
    	t1copy_ssa(&a.mid, &x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 150.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    	for {
    		x := v_0
    		if x != v_1 {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	return false
    }
    func rewriteValueMIPS64_OpMIPS64ORconst(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (ORconst [0] x)
    	// result: x
    	for {
    		if auxIntToInt64(v.AuxInt) != 0 {
    			break
    		}
    		x := v_0
    		v.copyOf(x)
    		return true
    	}
    	// match: (ORconst [-1] _)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    		sconn.Lock()
    		sconn.c = conn
    		sconn.Unlock()
    		conn.Write([]byte("HTTP/1.1 200 OK\r\nContent-Length: 3\r\n\r\nfoo")) // keep-alive
    
    		copying.Add(1)
    		go func() {
    			io.Copy(io.Discard, conn)
    			copying.Done()
    		}()
    	})).ts
    	c := ts.Client()
    
    	const bodySize = 256 << 10
    	finalBit := make(byteFromChanReader, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. cmd/object-handlers.go

    func getCpObjMetadataFromHeader(ctx context.Context, r *http.Request, userMeta map[string]string) (map[string]string, error) {
    	// Make a copy of the supplied metadata to avoid
    	// to change the original one.
    	defaultMeta := make(map[string]string, len(userMeta))
    	for k, v := range userMeta {
    		// skip tier metadata when copying metadata from source object
    		switch k {
    		case metaTierName, metaTierStatus, metaTierObjName, metaTierVersionID:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  10. src/html/entity.go

    		"conint;":                          '\U0000222E',
    		"copf;":                            '\U0001D554',
    		"coprod;":                          '\U00002210',
    		"copy;":                            '\U000000A9',
    		"copysr;":                          '\U00002117',
    		"crarr;":                           '\U000021B5',
    		"cross;":                           '\U00002717',
    		"cscr;":                            '\U0001D4B8',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
Back to top