Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 127 for REG (0.02 sec)

  1. 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)
  2. 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)
  3. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    		return fmt.Sprintf("%#x", addr)
    	case Label:
    		return fmt.Sprintf("%#x", uint32(arg))
    	case Offset:
    		reg := inst.Args[argIndex+1].(Reg)
    		removeArg(inst, argIndex+1)
    		if reg == R0 {
    			return fmt.Sprintf("%d(0)", int(arg))
    		}
    		return fmt.Sprintf("%d(r%d)", int(arg), reg-R0)
    	}
    	return fmt.Sprintf("???(%v)", arg)
    }
    
    // removeArg removes the arg in inst.Args[index].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  4. tests/integration/telemetry/api/testdata/attributegen.yaml

    apiVersion: extensions.istio.io/v1alpha1
    kind: WasmPlugin
    metadata:
      name: istio.attributegen
    spec:
      phase: STATS
      selector:
        matchLabels:
          app: b
      url: {{ .AttributeGenURL }}
      imagePullSecret: reg-cred
      pluginConfig:
        attributes:
        - output_attribute: istio_responseClass
          match:
          - value: 2xx
            condition: response.code >= 200 && response.code <= 299
        - output_attribute: istio_operationId
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 00:53:57 UTC 2024
    - 639 bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/lifecycle/internal/stub/DefaultLifecyclesStub.java

            PlexusContainer mockedContainer = mock(PlexusContainer.class);
            when(mockedContainer.lookupMap(Lifecycle.class)).thenReturn(lifeCycles);
    
            DefaultLifecycleRegistry reg = new DefaultLifecycleRegistry();
            return new DefaultLifecycles(reg, new DefaultLookup(mockedContainer));
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. pkg/scheduler/testing/framework/framework_helpers.go

    func RegisterPluginAsExtensionsWithWeight(pluginName string, weight int32, pluginNewFunc runtime.PluginFactory, extensions ...string) RegisterPluginFunc {
    	return func(reg *runtime.Registry, profile *schedulerapi.KubeSchedulerProfile) {
    		reg.Register(pluginName, pluginNewFunc)
    		for _, extension := range extensions {
    			ps := getPluginSetByExtension(profile.Plugins, extension)
    			if ps == nil {
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 03:30:06 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/loong64/cnames.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package loong64
    
    // This order should be strictly consistent to that in a.out.go.
    var cnames0 = []string{
    	"NONE",
    	"REG",
    	"FREG",
    	"FCSRREG",
    	"FCCREG",
    	"ZCON",
    	"SCON",
    	"UCON",
    	"ADD0CON",
    	"AND0CON",
    	"ADDCON",
    	"ANDCON",
    	"LCON",
    	"DCON",
    	"SACON",
    	"SECON",
    	"LACON",
    	"LECON",
    	"DACON",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:21 UTC 2023
    - 629 bytes
    - Viewed (0)
  8. platforms/core-runtime/files/src/main/java/org/gradle/api/internal/file/pattern/PatternStepFactory.java

            }
    
            // Here, we try to avoid using the reg exp backed pattern step, as it is expensive in terms of performance and heap usage.
            // There are several special cases we handle here:
            // 1. '*'
            // 2. '*' <literal>
            // 3. <literal> '*'
            // 4. <literal> '*' <literal>
            // 5. <literal>
            // Everything else uses a reg exp.
    
            // Not empty: may match any case above
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:55:52 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/anames9.go

    // Copyright 2015 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 ppc64
    
    var cnames9 = []string{
    	"NONE",
    	"REGP",
    	"REG",
    	"FREGP",
    	"FREG",
    	"VREG",
    	"VSREGP",
    	"VSREG",
    	"CREG",
    	"CRBIT",
    	"SPR",
    	"MREG",
    	"ZCON",
    	"U1CON",
    	"U2CON",
    	"U3CON",
    	"U4CON",
    	"U5CON",
    	"U8CON",
    	"U15CON",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 22:14:57 UTC 2024
    - 673 bytes
    - Viewed (0)
  10. pkg/monitoring/monitoring.go

    func RegisterPrometheusExporter(reg prometheus.Registerer, gatherer prometheus.Gatherer) (http.Handler, error) {
    	if reg == nil {
    		reg = prometheus.DefaultRegisterer
    	}
    	if gatherer == nil {
    		gatherer = prometheus.DefaultGatherer
    	}
    	promOpts := []otelprom.Option{
    		otelprom.WithoutScopeInfo(),
    		otelprom.WithoutTargetInfo(),
    		otelprom.WithoutUnits(),
    		otelprom.WithRegisterer(reg),
    		otelprom.WithoutCounterSuffixes(),
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 9.5K bytes
    - Viewed (0)
Back to top