Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 61 for addPass (0.17 sec)

  1. pkg/kubelet/kubelet_pods_test.go

    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    			},
    			podIPs: []v1.PodIP{
    				{IP: "10.0.0.1"},
    			},
    		},
    		{
    			name: "Multiple single-stack addresses in dual-stack cluster",
    			nodeAddresses: []v1.NodeAddress{
    				{Type: v1.NodeInternalIP, Address: "10.0.0.1"},
    				{Type: v1.NodeInternalIP, Address: "10.0.0.2"},
    				{Type: v1.NodeExternalIP, Address: "192.168.0.1"},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 198.8K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

      local ret=""
    
      if [[ "${enable_ip_alias}" == 'true' ]]; then
        ret="--network-interface"
        ret="${ret} network=${networkURL}"
        if [[ "${address:-}" == "no-address" ]]; then
          ret="${ret},no-address"
        else
          ret="${ret},address=${address:-}"
        fi
        ret="${ret},subnet=${subnetURL}"
        ret="${ret},aliases=pods-default:${alias_size}"
        ret="${ret} --no-can-ip-forward"
      else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	Flags   uint32
    	Next    *IpAdapterAnycastAddress
    	Address SocketAddress
    }
    
    type IpAdapterMulticastAddress struct {
    	Length  uint32
    	Flags   uint32
    	Next    *IpAdapterMulticastAddress
    	Address SocketAddress
    }
    
    type IpAdapterDnsServerAdapter struct {
    	Length   uint32
    	Reserved uint32
    	Next     *IpAdapterDnsServerAdapter
    	Address  SocketAddress
    }
    
    type IpAdapterPrefix struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// JUMPTABLE implements jump tables.
    		// Aux is the symbol (an *obj.LSym) for the jump table.
    		// control[0] is the index into the jump table.
    		// control[1] is the address of the jump table (the address of the symbol stored in Aux).
    		{name: "JUMPTABLE", controls: 2, aux: "Sym"},
    	}
    
    	archs = append(archs, arch{
    		name:               "AMD64",
    		pkg:                "cmd/internal/obj/x86",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  5. okhttp-android/src/main/baseline-prof.txt

    HSPLokhttp3/Address;-><init>(Ljava/lang/String;ILokhttp3/Dns;Ljavax/net/SocketFactory;Ljavax/net/ssl/SSLSocketFactory;Ljavax/net/ssl/HostnameVerifier;Lokhttp3/CertificatePinner;Lokhttp3/Authenticator;Ljava/net/Proxy;Ljava/util/List;Ljava/util/List;Ljava/net/ProxySelector;)V
    HSPLokhttp3/Address;->equalsNonHost$okhttp(Lokhttp3/Address;)Z
    HSPLokhttp3/Address;->hashCode()I
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Mar 21 11:22:00 UTC 2022
    - 127.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/cluster_test.go

    			for _, cluster := range clusters {
    				g.Expect(cluster.UpstreamBindConfig.SourceAddress.Address).To(Equal(c.expectedSrcAddr))
    				if c.expectedExtraSrcAddr != "" {
    					g.Expect(len(cluster.UpstreamBindConfig.ExtraSourceAddresses)).To(Equal(1))
    					g.Expect(cluster.UpstreamBindConfig.ExtraSourceAddresses[0].Address.Address).To(Equal(c.expectedExtraSrcAddr))
    				} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    	for _, address := range node.Status.Addresses {
    		if address.Type == api.NodeExternalIP {
    			return address.Address
    		}
    	}
    
    	return "<none>"
    }
    
    // Returns the internal IP of the node or "<none>" if none is found.
    func getNodeInternalIP(node *api.Node) string {
    	for _, address := range node.Status.Addresses {
    		if address.Type == api.NodeInternalIP {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/s390x/asmz.go

    	op_LASP    uint32 = 0xE500 // FORMAT_SSE        LOAD ADDRESS SPACE PARAMETERS
    	op_LAT     uint32 = 0xE39F // FORMAT_RXY1       LOAD AND TRAP (32L<-32)
    	op_LAX     uint32 = 0xEBF7 // FORMAT_RSY1       LOAD AND EXCLUSIVE OR (32)
    	op_LAXG    uint32 = 0xEBE7 // FORMAT_RSY1       LOAD AND EXCLUSIVE OR (64)
    	op_LAY     uint32 = 0xE371 // FORMAT_RXY1       LOAD ADDRESS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFile.java

                    addresses[0] = UniAddress.getByName( server );
                    return getNextAddress();
                }
                String address = queryLookup(query, "address");
                if (address != null && address.length() > 0) {
                    byte[] ip = java.net.InetAddress.getByName(address).getAddress();
                    addresses = new UniAddress[1];
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  10. pkg/printers/internalversion/printers_test.go

    		{
    			node: api.Node{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo3"},
    				Status: api.NodeStatus{Addresses: []api.NodeAddress{
    					{Type: api.NodeExternalIP, Address: "2.2.2.2"},
    					{Type: api.NodeInternalIP, Address: "3.3.3.3"},
    					{Type: api.NodeExternalIP, Address: "4.4.4.4"},
    				}},
    			},
    			expected: []metav1.TableRow{
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top