Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 136 for zone2 (0.19 sec)

  1. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-uid-gid.golden

    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 3 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 4 -j CT --zone 1
    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 4 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1 -j CT --zone 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/capture/testdata/loopback-outbound-iprange.golden

    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 3 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 4 -j CT --zone 1
    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 4 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1 -j CT --zone 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/testdata/ip-range.golden

    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 3 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 4 -j CT --zone 1
    iptables -t raw -A ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 4 -j CT --zone 2
    iptables -t raw -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1 -j CT --zone 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. tools/istio-clean-iptables/pkg/cmd/testdata/dns.golden

    ip6tables -t raw -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j CT --zone 1
    iptables -t raw -D ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 1337 -j CT --zone 2
    ip6tables -t raw -D ISTIO_OUTPUT -p udp --sport 15053 -m owner --uid-owner 1337 -j CT --zone 2
    iptables -t raw -D ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1337 -j CT --zone 1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/util/label/label.go

    	// Copy the original labels to a new map.
    	out := make(labels.Instance, len(in)+6)
    	for k, v := range in {
    		out[k] = v
    	}
    
    	region, zone, subzone := SplitLocalityLabel(locality)
    	if len(region) > 0 {
    		out[LabelTopologyRegion] = region
    	}
    	if len(zone) > 0 {
    		out[LabelTopologyZone] = zone
    	}
    	if len(subzone) > 0 {
    		out[label.TopologySubzone.Name] = subzone
    	}
    	if len(clusterID) > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 03:56:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/time/format_rfc3339.go

    	}
    
    	if offset == 0 {
    		return append(b, 'Z')
    	}
    
    	// Format zone.
    	zone := offset / 60 // convert to minutes
    	if zone < 0 {
    		b = append(b, '-')
    		zone = -zone
    	} else {
    		b = append(b, '+')
    	}
    	b = appendInt(b, zone/60, 2)
    	b = append(b, ':')
    	b = appendInt(b, zone%60, 2)
    	return b
    }
    
    func (t Time) appendStrictRFC3339(b []byte) ([]byte, error) {
    	n0 := len(b)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 19:59:26 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. pkg/controller/nodelifecycle/config/types.go

    	// nodeEvictionRate is the number of nodes per second on which pods are deleted in case of node failure when a zone is healthy
    	NodeEvictionRate float32
    	// secondaryNodeEvictionRate is the number of nodes per second on which pods are deleted in case of node failure when a zone is unhealthy
    	SecondaryNodeEvictionRate float32
    	// nodeStartupGracePeriod is the amount of time which we allow starting a node to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 18:14:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. cluster/gce/gci/master-helper.sh

    function run-gcloud-command() {
      local master_name="${1}"
      local zone="${2}"
      local command="${3}"
    
      local retries=5
      local sleep_sec=10
    
      local result=""
    
      for ((i=0; i<retries; i++)); do
        if result=$(gcloud compute ssh "${master_name}" --project "${PROJECT}" --zone "${zone}" --command "${command}" -- -oConnectTimeout=60 2>&1); then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 17 19:00:22 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  9. src/net/netip/slow_test.go

    func parseIPSlow(s string) (Addr, error) {
    	// Identify and strip out the zone, if any. There should be 0 or 1
    	// '%' in the string.
    	var zone string
    	fs := strings.Split(s, "%")
    	switch len(fs) {
    	case 1:
    		// No zone, that's fine.
    	case 2:
    		s, zone = fs[0], fs[1]
    		if zone == "" {
    			return Addr{}, fmt.Errorf("netaddr.ParseIP(%q): no zone after zone specifier", s)
    		}
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. pkg/proxy/topology.go

    			return false
    		}
    
    		if endpoint.ZoneHints().Has(zone) {
    			hasEndpointForZone = true
    		}
    	}
    
    	if !hasEndpointForZone {
    		klog.V(2).InfoS("Skipping topology aware endpoint filtering since no hints were provided for zone", "zone", zone)
    		return false
    	}
    
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 06:46:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top