Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 25 for reg1 (0.04 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/compile/internal/ssa/value.go

    // It is similar to Reg and Reg0, except that it is usable interchangeably for all Value Ops.
    // If you know v.Op, using Reg or Reg0 (as appropriate) will be more efficient.
    func (v *Value) ResultReg() int16 {
    	reg := v.Block.Func.RegAlloc[v.ID]
    	if reg == nil {
    		v.Fatalf("nil reg for value: %s\n%s\n", v.LongString(), v.Block.Func)
    	}
    	if pair, ok := reg.(LocPair); ok {
    		reg = pair[0]
    	}
    	if reg == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:40:22 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. pilot/pkg/autoregistration/controller_test.go

    		// stop1 should be killed early, as part of test
    		if !stopped1 {
    			close(stop1)
    		}
    	}()
    	defer close(stop2)
    	go c1.Run(stop1)
    	go c2.Run(stop2)
    	go store.Run(stop2)
    
    	n := fakeNode("reg1", "zone1", "subzone1")
    
    	var p1conn1, p1conn2 *fakeConn
    	p := fakeProxy("1.2.3.4", wgA, "nw1", "sa-a")
    	p.Locality = n.Locality
    
    	var p2conn1 *fakeConn
    	p2 := fakeProxy("1.2.3.4", wgA, "nw2", "sa-a")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  4. manifests/charts/istiod-remote/values.yaml

        #     endpoints:
        #     - fromCidr: "192.168.0.1/24"
        #     gateways:
        #     - address: 1.1.1.1
        #       port: 80
        #   network2:
        #     endpoints:
        #     - fromRegistry: reg1
        #     gateways:
        #     - registryServiceName: istio-ingressgateway.istio-system.svc.cluster.local
        #       port: 443
        #
        meshNetworks: {}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. manifests/charts/istio-control/istio-discovery/values.yaml

        #     endpoints:
        #     - fromCidr: "192.168.0.1/24"
        #     gateways:
        #     - address: 1.1.1.1
        #       port: 80
        #   network2:
        #     endpoints:
        #     - fromRegistry: reg1
        #     gateways:
        #     - registryServiceName: istio-ingressgateway.istio-system.svc.cluster.local
        #       port: 443
        #
        meshNetworks: {}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. src/syscall/mksyscall.pl

    		my ($name, $type) = parseparam($p);
    		my $reg = "";
    		if($name eq "err" && !$plan9) {
    			$reg = "e1";
    			$ret[2] = $reg;
    			$do_errno = 1;
    		} elsif($name eq "err" && $plan9) {
    			$ret[0] = "r0";
    			$ret[2] = "e1";
    			next;
    		} else {
    			$reg = sprintf("r%d", $i);
    			$ret[$i] = $reg;
    		}
    		if($type eq "bool") {
    			$reg = "$reg != 0";
    		}
    		if($type eq "int64" && $_32bit ne "") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. src/runtime/mbarrier.go

    	}
    	memmove(dst, src, size)
    
    	// Move pointers returned in registers to a place where the GC can see them.
    	for i := range regs.Ints {
    		if regs.ReturnIsPtr.Get(i) {
    			regs.Ptrs[i] = unsafe.Pointer(regs.Ints[i])
    		}
    	}
    }
    
    // typedslicecopy should be an internal detail,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. src/reflect/abi.go

    }
    
    // intFromReg loads an argSize sized integer from reg and places it at to.
    //
    // argSize must be non-zero, fit in a register, and a power-of-two.
    func intFromReg(r *abi.RegArgs, reg int, argSize uintptr, to unsafe.Pointer) {
    	memmove(to, r.IntRegArgAddr(reg, argSize), argSize)
    }
    
    // intToReg loads an argSize sized integer and stores it into reg.
    //
    // argSize must be non-zero, fit in a register, and a power-of-two.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/op.go

    			a.reg.inputs = append(a.reg.inputs, inputInfo{idx: k, regs: (1 << m)})
    			k++
    		}
    	}
    	a.reg.inputs = append(a.reg.inputs, i.inputs...) // These are less constrained, thus should come last
    	k = len(i.outputs)
    	for _, p := range a.abiInfo.OutParams() {
    		for _, r := range p.Registers {
    			m := archRegForAbiReg(r, c)
    			a.reg.outputs = append(a.reg.outputs, outputInfo{idx: k, regs: (1 << m)})
    			k++
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 15:29:10 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/helpers_test.go

    		originalImage           image
    		expectedImageUserValues imageUserValues
    	}{
    		{
    			"image without username and uid should return (new(int64), \"\", nil)",
    			image{
    				name:     "test-image-ref1",
    				uid:      (*runtimeapi.Int64Value)(nil),
    				username: "",
    			},
    			imageUserValues{
    				uid:      int64(0),
    				username: "",
    				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)
Back to top