Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 172 for reg2 (0.08 sec)

  1. pkg/config/mesh/mesh_test.go

    networks:
      network1:
        endpoints:
        - fromCidr: "192.168.0.1/24"
        gateways:
        - address: 1.1.1.1
          port: 80
      network2:
        endpoints:
        - fromRegistry: reg1
        gateways:
        - registryServiceName: reg1
          port: 443
    `
    
    	want := mesh.EmptyMeshNetworks()
    	want.Networks = map[string]*meshconfig.Network{
    		"network1": {
    			Endpoints: []*meshconfig.Network_NetworkEndpoints{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/s390x/listz.go

    	"fmt"
    )
    
    func init() {
    	obj.RegisterRegister(obj.RBaseS390X, REG_R0+1024, rconv)
    	obj.RegisterOpcode(obj.ABaseS390X, Anames)
    }
    
    func rconv(r int) string {
    	if r == 0 {
    		return "NONE"
    	}
    	if r == REGG {
    		// Special case.
    		return "g"
    	}
    	if REG_R0 <= r && r <= REG_R15 {
    		return fmt.Sprintf("R%d", r-REG_R0)
    	}
    	if REG_F0 <= r && r <= REG_F15 {
    		return fmt.Sprintf("F%d", r-REG_F0)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 01 10:41:37 UTC 2017
    - 2.4K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/wasm/a.out.go

    	REG_F25
    	REG_F26
    	REG_F27
    	REG_F28
    	REG_F29
    	REG_F30
    	REG_F31
    
    	REG_PC_B // also first parameter, i32
    
    	MAXREG
    
    	MINREG  = REG_SP
    	REGSP   = REG_SP
    	REGCTXT = REG_CTXT
    	REGG    = REG_g
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 05:28:55 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. src/internal/abi/abi.go

    // by the CPU correctly.
    func (r *RegArgs) IntRegArgAddr(reg int, argSize uintptr) unsafe.Pointer {
    	if argSize > goarch.PtrSize || argSize == 0 || argSize&(argSize-1) != 0 {
    		panic("invalid argSize")
    	}
    	offset := uintptr(0)
    	if goarch.BigEndian {
    		offset = goarch.PtrSize - argSize
    	}
    	return unsafe.Pointer(uintptr(unsafe.Pointer(&r.Ints[reg])) + offset)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 23 15:51:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. pkg/kubelet/server/stats/testing/mock_stats_provider.go

    	m.ctrl.T.Helper()
    	ret := m.ctrl.Call(m, "GetCgroupStats", cgroupName, updateStats)
    	ret0, _ := ret[0].(*v1alpha1.ContainerStats)
    	ret1, _ := ret[1].(*v1alpha1.NetworkStats)
    	ret2, _ := ret[2].(error)
    	return ret0, ret1, ret2
    }
    
    // GetCgroupStats indicates an expected call of GetCgroupStats.
    func (mr *MockProviderMockRecorder) GetCgroupStats(cgroupName, updateStats any) *gomock.Call {
    	mr.mock.ctrl.T.Helper()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. src/runtime/cgo/asm_ppc64x.s

    // the caller's frame due to issue #43228.
    TEXT crosscall2(SB),NOSPLIT|NOFRAME,$0
    	// Start with standard C stack frame layout and linkage, allocate
    	// 32 bytes of argument space, save callee-save regs, and set R0 to $0.
    	STACK_AND_SAVE_HOST_TO_GO_ABI(32)
    	// The above will not preserve R2 (TOC). Save it in case Go is
    	// compiled without a TOC pointer (e.g -buildmode=default).
    	MOVD	R2, 24(R1)
    
    	// Load the current g.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 00:43:51 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. tests/integration/ambient/testdata/wasm-filter.yaml

    spec:
      phase: STATS
      targetRef:
        kind: {{ .TargetKind }}
        group: {{ .TargetGroup }}
        name: {{ .TargetName }}
      {{- if .TestWasmModuleURL }}
      url: {{ .TestWasmModuleURL }}
      {{- end }}
      imagePullSecret: reg-cred
      {{- if .ImagePullPolicy }}
      imagePullPolicy: {{ .ImagePullPolicy }}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 513 bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/helpers_test.go

    				uid:      int64(0),
    				username: "",
    				err:      nil,
    			},
    		},
    		{
    			"image with username and no uid should return ((*int64)nil, imageStatus.Username, nil)",
    			image{
    				name:     "test-image-ref2",
    				uid:      (*runtimeapi.Int64Value)(nil),
    				username: "testUser",
    			},
    			imageUserValues{
    				uid:      (*int64)(nil),
    				username: "testUser",
    				err:      nil,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. pkg/kubelet/preemption/preemption.go

    		v1.ResourceMemory,
    		v1.ResourceCPU,
    	}
    	for _, res := range priorityList {
    		req1 := resource.GetResourceRequest(pod1, res)
    		req2 := resource.GetResourceRequest(pod2, res)
    		if req1 < req2 {
    			return true
    		} else if req1 > req2 {
    			return false
    		}
    	}
    	return true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 16:53:19 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  10. src/runtime/syscall_windows.go

    	a.retPop = c.retPop
    
    	// Convert from C to Go ABI.
    	var regs abi.RegArgs
    	var frame [callbackMaxFrame]byte
    	goArgs := unsafe.Pointer(&frame)
    	for _, part := range c.abiMap.parts {
    		switch part.kind {
    		case abiPartStack:
    			memmove(add(goArgs, part.dstStackOffset), add(a.args, part.srcStackOffset), part.len)
    		case abiPartReg:
    			goReg := unsafe.Pointer(&regs.Ints[part.dstRegister])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top