Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/cmd/compile/internal/ssa/rewriteARM.go

    	for {
    		x := v_0
    		if x != v_1 {
    			break
    		}
    		v.copyOf(x)
    		return true
    	}
    	return false
    }
    func rewriteValueARM_OpARMORconst(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (ORconst [0] x)
    	// result: x
    	for {
    		if auxIntToInt32(v.AuxInt) != 0 {
    			break
    		}
    		x := v_0
    		v.copyOf(x)
    		return true
    	}
    	// match: (ORconst [c] _)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 17:19:36 UTC 2023
    - 486.8K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.14.md

    Kubeadm: Automate certificate copy between control planes in HA setups
    
    - Joining control plane nodes to a HA cluster can now be simplified by enabling the optional automatic copy of certificates from an existing control plane node.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 14 22:06:39 UTC 2021
    - 271.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.pb.go

    	i -= len(m.Format)
    	copy(dAtA[i:], m.Format)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Format)))
    	i--
    	dAtA[i] = 0x1a
    	i -= len(m.Type)
    	copy(dAtA[i:], m.Type)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Type)))
    	i--
    	dAtA[i] = 0x12
    	i -= len(m.Name)
    	copy(dAtA[i:], m.Name)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Name)))
    	i--
    	dAtA[i] = 0xa
    	return len(dAtA) - i, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 248K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.16.md

      - `kubectl convert`, deprecated since v1.14, will be removed in v1.17.
      - The `--export` flag for the `kubectl get` command, deprecated since v1.14, will be removed in v1.18.
      - `kubectl cp` no longer supports copying symbolic links from containers; to support this use case, see `kubectl exec --help` for examples using `tar` directly ([#82143](https://github.com/kubernetes/kubernetes/pull/82143), [@soltysh](https://github.com/soltysh))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.20.md

    Troubleshoot workloads that crash on startup by creating a copy of the pod that uses a different container image or command.
    Troubleshoot distroless containers by adding a new container with debugging tools, either in a new copy of the pod or using an ephemeral container. (Ephemeral containers are an alpha feature that are not enabled by default.)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.15.md

    - Report cp errors consistently, providing full message whether copying to or from a pod.  ([#77010](https://github.com/kubernetes/kubernetes/pull/77010), [@soltysh](https://github.com/soltysh))
    - Preserved existing namespace information in manifests when running `
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 278.9K bytes
    - Viewed (0)
  7. src/net/http/h2_bundle.go

    	for len(p) > 0 && b.size > 0 {
    		readFrom := b.bytesFromFirstChunk()
    		n := copy(p, readFrom)
    		p = p[n:]
    		ntotal += n
    		b.r += n
    		b.size -= n
    		// If the first chunk has been consumed, advance to the next chunk.
    		if b.r == len(b.chunks[0]) {
    			http2putDataBufferChunk(b.chunks[0])
    			end := len(b.chunks) - 1
    			copy(b.chunks[:end], b.chunks[1:])
    			b.chunks[end] = nil
    			b.chunks = b.chunks[:end]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssagen/ssa.go

    // This always returns a freshly copied ABI.
    func AbiForBodylessFuncStackMap(fn *ir.Func) *abi.ABIConfig {
    	return ssaConfig.ABI0.Copy() // No idea what races will result, be safe
    }
    
    // abiForFunc implements ABI policy for a function, but does not return a copy of the ABI.
    // Passing a nil function returns the default ABI based on experiment configuration.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  9. ChangeLog.md

    - [`KT-64884`](https://youtrack.jetbrains.com/issue/KT-64884) K2 IDE. FP [NAMED_PARAMETER_NOT_FOUND] for copy method of library data class when class has not parameter-properties
    - [`KT-65763`](https://youtrack.jetbrains.com/issue/KT-65763) K2: value parameter from library data class copy have RAW_FIR phase
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  10. doc/go_spec.html

    As a special case, if the destination's core type is <code>[]byte</code>,
    <code>copy</code> also accepts a source argument with core type
    <a href="#Core_types"><code>bytestring</code></a>.
    This form copies the bytes from the byte slice or string into the byte slice.
    </p>
    
    <pre class="grammar">
    copy(dst, src []T) int
    copy(dst []byte, src string) int
    </pre>
    
    <p>
    Examples:
    </p>
    
    <pre>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
Back to top