Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 43 of 43 for sub_zone (0.14 sec)

  1. pilot/pkg/autoregistration/controller.go

    	// the workload entry.
    	if proxy.Metadata.Labels != nil {
    		entry.Labels = mergeLabels(entry.Labels, proxy.Metadata.Labels)
    		// the label has been converted to "istio-locality: region/zone/subzone"
    		// in pilot/pkg/xds/ads.go, and `/` is not allowed in k8s label value.
    		// Instead of converting again, we delete it since has set WorkloadEntry.Locality
    		delete(entry.Labels, model.LocalityLabel)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  2. pilot/pkg/model/service.go

    		return "DNSRoundRobin"
    	case Passthrough:
    		return "Passthrough"
    	default:
    		return fmt.Sprintf("%d", int(resolution))
    	}
    }
    
    const (
    	// LocalityLabel indicates the region/zone/subzone of an instance. It is used to override the native
    	// registry's value.
    	//
    	// Note: because k8s labels does not support `/`, so we use `.` instead in k8s.
    	LocalityLabel = pm.LocalityLabel
    )
    
    const (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. src/net/netip/netip.go

    func (ip Addr) Prev() Addr {
    	if ip.Is4() {
    		if uint32(ip.addr.lo) == 0 {
    			return Addr{}
    		}
    	} else if ip.addr.isZero() {
    		return Addr{}
    	}
    	ip.addr = ip.addr.subOne()
    	return ip
    }
    
    // String returns the string form of the IP address ip.
    // It returns one of 5 forms:
    //
    //   - "invalid IP", if ip is the zero [Addr]
    //   - IPv4 dotted decimal ("192.0.2.1")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 43.2K bytes
    - Viewed (0)
Back to top