Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 30 for addrI (0.05 sec)

  1. pilot/pkg/serviceregistry/serviceregistry_test.go

    }
    
    // nolint: unparam
    func createEndpointSlice(t *testing.T, c kubernetes.Interface, name, serviceName, namespace string, ports []v1.EndpointPort, addrs []string) {
    	createEndpointSliceWithType(t, c, name, serviceName, namespace, ports, addrs, discovery.AddressTypeIPv4)
    }
    
    // nolint: unparam
    func createEndpointSliceWithType(t *testing.T, c kubernetes.Interface, name, serviceName, namespace string,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  2. src/reflect/type.go

    	if n > 128 {
    		panic("reflect.FuncOf: too many arguments")
    	}
    
    	o := New(initFuncTypes(n)).Elem()
    	ft := (*funcType)(unsafe.Pointer(o.Field(0).Addr().Pointer()))
    	args := unsafe.Slice((**rtype)(unsafe.Pointer(o.Field(1).Addr().Pointer())), n)[0:0:n]
    	*ft = *prototype
    
    	// Build a hash and minimally populate ft.
    	var hash uint32
    	for _, in := range in {
    		t := in.(*rtype)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  3. src/crypto/tls/conn.go

    // export the struct field too.
    
    // LocalAddr returns the local network address.
    func (c *Conn) LocalAddr() net.Addr {
    	return c.conn.LocalAddr()
    }
    
    // RemoteAddr returns the remote network address.
    func (c *Conn) RemoteAddr() net.Addr {
    	return c.conn.RemoteAddr()
    }
    
    // SetDeadline sets the read and write deadlines associated with the connection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    		{name: "MOVDaddr", argLength: 1, reg: regInfo{inputs: []regMask{buildReg("SP") | buildReg("SB")}, outputs: []regMask{gp}}, aux: "SymOff", asm: "MOVD", rematerializeable: true, symEffect: "Addr"}, // arg0 + auxInt + aux.(*gc.Sym), arg0=SP/SB
    
    		{name: "MOVBload", argLength: 2, reg: gpload, aux: "SymOff", asm: "MOVB", typ: "Int8", faultOnNilArg0: true, symEffect: "Read"},       // load from arg0 + auxInt + aux.  arg1=mem.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_test.go

    				t.Errorf("Expected %d listeners, got %d (%v)", tt.numListenersOnServicePort, len(listenersToCheck), listenersToCheck)
    			}
    
    			if tt.useAutoAllocatedAddress {
    				for _, addr := range listenersToCheck {
    					if !strings.HasPrefix(addr, "240.240") {
    						t.Errorf("Expected %d listeners on service port 79, got %d (%v)", tt.numListenersOnServicePort, len(listenersToCheck), listenersToCheck)
    					}
    				}
    			}
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  6. src/runtime/mheap.go

    	// Read atomically and written with an atomic CAS.
    	zeroedBase uintptr
    }
    
    // arenaHint is a hint for where to grow the heap arenas. See
    // mheap_.arenaHints.
    type arenaHint struct {
    	_    sys.NotInHeap
    	addr uintptr
    	down bool
    	next *arenaHint
    }
    
    // An mspan is a run of pages.
    //
    // When a mspan is in the heap free treap, state == mSpanFree
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/listener.go

    			return nil
    		}
    		res := sets.NewWithLength[string](len(cidrs))
    		for _, s := range cidrs {
    			prefix, err := util.AddrStrToPrefix(s)
    			if err != nil {
    				continue
    			}
    			if prefix.Addr().String() == constants.UnspecifiedIP {
    				continue
    			}
    
    			if s == "*" {
    				continue
    			}
    			res.Insert(prefix.Masked().String())
    		}
    		return res
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  8. src/crypto/tls/handshake_server_test.go

    	l, err := net.ListenTCP("tcp", &net.TCPAddr{
    		IP:   net.IPv4(127, 0, 0, 1),
    		Port: 0,
    	})
    	if err != nil {
    		return nil, nil, err
    	}
    	defer l.Close()
    
    	port := l.Addr().(*net.TCPAddr).Port
    
    	var command []string
    	command = append(command, test.command...)
    	if len(command) == 0 {
    		command = defaultClientCommand
    	}
    	command = append(command, "-connect")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. cmd/test-utils_test.go

    	globalObjLayerMutex.Lock()
    	globalObjectAPI = objLayer
    	globalObjLayerMutex.Unlock()
    
    	// initialize peer rpc
    	host, port := mustSplitHostPort(testServer.Server.Listener.Addr().String())
    	globalMinioHost = host
    	globalMinioPort = port
    	globalMinioAddr = getEndpointsLocalAddr(testServer.Disks)
    
    	initAllSubsystems(ctx)
    
    	globalEtcdClient = nil
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 76.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (ORN x (MOVDconst [-1])) => x
    
    (S(RAD|RD|LD) x (MOVDconst [c])) => (S(RAD|RD|LD)const [c&63 | (c>>6&1*63)] x)
    (S(RAW|RW|LW) x (MOVDconst [c])) => (S(RAW|RW|LW)const [c&31 | (c>>5&1*31)] x)
    
    (Addr {sym} base) => (MOVDaddr {sym} [0] base)
    (LocalAddr <t> {sym} base mem) && t.Elem().HasPointers() => (MOVDaddr {sym} (SPanchored base mem))
    (LocalAddr <t> {sym} base _)  && !t.Elem().HasPointers() => (MOVDaddr {sym} base)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
Back to top