Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 189 for REG (0.02 sec)

  1. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (MOVHZreg y:(MOVHBRload _ _)) => y
    
    (MOVHreg y:(MOV(H|B)reg _)) => y // repeat
    
    (MOV(H|HZ)reg y:(MOV(HZ|H)reg x)) => (MOV(H|HZ)reg x)
    
    // W - there are more combinations than these
    
    (MOV(WZ|WZ|WZ|W|W|W)reg y:(MOV(WZ|HZ|BZ|W|H|B)reg _)) => y // repeat
    (MOVWZreg y:(MOV(H|W)BRload _ _)) => y
    
    (MOV(W|WZ)reg y:(MOV(WZ|W)reg x)) => (MOV(W|WZ)reg x)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  2. pkg/config/schema/kubetypes/common.go

    		return gvk
    	}
    	panic("unknown kind: " + obj.GetObjectKind().GroupVersionKind().String())
    }
    
    var registeredTypes = typemap.NewTypeMap()
    
    func Register[T runtime.Object](reg RegisterType[T]) {
    	typemap.Set[RegisterType[T]](registeredTypes, reg)
    }
    
    type RegisterType[T runtime.Object] interface {
    	GetGVK() config.GroupVersionKind
    	GetGVR() schema.GroupVersionResource
    	Object() T
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 16:38:40 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. tests/integration/ambient/testdata/registry-secret.yaml

    apiVersion: v1
    data:
      .dockerconfigjson: {{ .DockerConfigJson }}
    kind: Secret
    metadata:
      name: reg-cred
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 143 bytes
    - Viewed (0)
  4. src/reflect/stubs_ppc64x.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build ppc64le || ppc64
    
    package reflect
    
    func archFloat32FromReg(reg uint64) float32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 292 bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/testdata/gateway-wasm-filter.yaml

      phase: STATS
      targetRef:
        kind: Gateway
        group: gateway.networking.k8s.io
        name: {{ .TargetGatewayName}}
      {{- if .TestWasmModuleURL }}
      url: {{ .TestWasmModuleURL }}
      {{- end }}
      imagePullSecret: reg-cred
      {{- if .ImagePullPolicy }}
      imagePullPolicy: {{ .ImagePullPolicy }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 05 19:48:31 UTC 2023
    - 516 bytes
    - Viewed (0)
  6. tests/integration/telemetry/api/testdata/registry-secret.yaml

    apiVersion: v1
    data:
      .dockerconfigjson: {{ .DockerConfigJson }}
    kind: Secret
    metadata:
      name: reg-cred
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 143 bytes
    - Viewed (0)
  7. src/reflect/stubs_riscv64.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package reflect
    
    func archFloat32FromReg(reg uint64) float32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 04 13:38:32 UTC 2022
    - 263 bytes
    - Viewed (0)
  8. src/cmd/internal/obj/go.go

    // license that can be found in the LICENSE file.
    
    package obj
    
    // go-specific code shared across loaders (5l, 6l, 8l).
    
    func Nopout(p *Prog) {
    	p.As = ANOP
    	p.Scond = 0
    	p.From = Addr{}
    	p.RestArgs = nil
    	p.Reg = 0
    	p.To = Addr{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 15 21:05:03 UTC 2017
    - 342 bytes
    - Viewed (0)
  9. build/build-image/rsyncd.sh

    # The directory that gets sync'd
    VOLUME=${HOME}
    
    # Assume that this is running in Docker on a bridge.  Allow connections from
    # anything on the local subnet.
    ALLOW=$(ip route | awk  '/^default via/ { reg = "^[0-9./]+ dev "$5 } ; $0 ~ reg { print $1 }')
    
    CONFDIR="/tmp/rsync.k8s"
    PIDFILE="${CONFDIR}/rsyncd.pid"
    CONFFILE="${CONFDIR}/rsyncd.conf"
    SECRETS="${CONFDIR}/rsyncd.secrets"
    
    mkdir -p "${CONFDIR}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 04 15:58:52 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/seh.go

    	movbp := pushbp.Link
    	if movbp == nil {
    		ctxt.Diag("missing frame pointer instruction: MOVQ SP, BP")
    		return
    	}
    	if !(movbp.As == AMOVQ && movbp.From.Type == obj.TYPE_REG && movbp.From.Reg == REG_SP &&
    		movbp.To.Type == obj.TYPE_REG && movbp.To.Reg == REG_BP && movbp.From.Offset == 0) {
    		ctxt.Diag("unexpected frame pointer instruction\n%v", movbp)
    		return
    	}
    	if movbp.Link.Pc > math.MaxUint8 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 14:41:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top