Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 51 for addPass (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. api/maven-api-model/src/main/mdo/maven.mdo

            </field>
            <!-- TODO: Remove it after continuum alpha-3 release -->
            <field>
              <name>address</name>
              <version>4.0.0+</version>
              <type>String</type>
              <description>
                @deprecated Where to send the notification to - eg email address.
              </description>
            </field>
            <field>
              <name>configuration</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	}
    	return
    }
    
    func VirtualAlloc(address uintptr, size uintptr, alloctype uint32, protect uint32) (value uintptr, err error) {
    	r0, _, e1 := syscall.Syscall6(procVirtualAlloc.Addr(), 4, uintptr(address), uintptr(size), uintptr(alloctype), uintptr(protect), 0, 0)
    	value = uintptr(r0)
    	if value == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func VirtualFree(address uintptr, size uintptr, freetype uint32) (err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_HOME_PHONE = "{labels.homePhone}";
    
        /** The key of the message: Home Postal Address */
        public static final String LABELS_user_homePostalAddress = "{labels.user_homePostalAddress}";
    
        /** The key of the message: Home Postal Address */
        public static final String LABELS_HOME_POSTAL_ADDRESS = "{labels.homePostalAddress}";
    
        /** The key of the message: labeledURI */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 146.4K bytes
    - Viewed (0)
  10. doc/go1.17_spec.html

    </p>
    
    <pre>
    type Person struct {
    	Name    string
    	Address *struct {
    		Street string
    		City   string
    	}
    }
    
    var data *struct {
    	Name    string `json:"name"`
    	Address *struct {
    		Street string `json:"street"`
    		City   string `json:"city"`
    	} `json:"address"`
    }
    
    var person = (*Person)(data)  // ignoring tags, the underlying types are identical
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
Back to top