Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 213 for zone2 (0.06 sec)

  1. src/time/format_test.go

    	// issue 67470
    	{"-07", "-25", "time zone offset hour out of range"},
    	{"-07:00", "+25:00", "time zone offset hour out of range"},
    	{"-07:00", "-23:61", "time zone offset minute out of range"},
    	{"-07:00:00", "+23:59:61", "time zone offset second out of range"},
    	{"Z07", "-25", "time zone offset hour out of range"},
    	{"Z07:00", "+25:00", "time zone offset hour out of range"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  2. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    }
    
    // addPodEvictorForNewZone checks if new zone appeared, and if so add new evictor.
    func (nc *Controller) addPodEvictorForNewZone(logger klog.Logger, node *v1.Node) {
    	nc.evictorLock.Lock()
    	defer nc.evictorLock.Unlock()
    	zone := nodetopology.GetZoneKey(node)
    	if _, found := nc.zoneStates[zone]; !found {
    		nc.zoneStates[zone] = stateInitial
    		nc.zoneNoExecuteTainter[zone] =
    			scheduler.NewRateLimitedTimedQueue(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/run.go

    		// Packets with src port 15053 from istio to zone 2. These are Istio response packets to application clients
    		f.Run("-p", "udp", "--sport", "15053", "-m", "owner", "--uid-owner", uid, "-j", constants.CT, "--zone", "2")
    	}
    	for _, gid := range split(proxyGID) {
    		// Packets with dst port 53 from istio to zone 1. These are Istio calls to upstream resolvers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  4. src/time/time.go

    	return t
    }
    
    // Location returns the time zone information associated with t.
    func (t Time) Location() *Location {
    	l := t.loc
    	if l == nil {
    		l = UTC
    	}
    	return l
    }
    
    // Zone computes the time zone in effect at time t, returning the abbreviated
    // name of the zone (such as "CET") and its offset in seconds east of UTC.
    func (t Time) Zone() (name string, offset int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  5. src/net/mail/message.go

    	// "-0700 (MST)" is not in RFC 5322, but is common.
    	zones := [...]string{"-0700", "MST", "UT"} // zone = (("+" / "-") 4DIGIT) / "UT" / "GMT" / ...
    
    	for _, dow := range dows {
    		for _, day := range days {
    			for _, year := range years {
    				for _, second := range seconds {
    					for _, zone := range zones {
    						s := dow + day + " Jan " + year + " 15:04" + second + " " + zone
    						dateLayouts = append(dateLayouts, s)
    					}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. src/net/netip/netip_test.go

    	}
    
    	// makeIPv6 produces a set of IPv6 subtests with an optional zone identifier.
    	makeIPv6 := func(zone string) []subtest {
    		if zone != "" {
    			zone = "%" + zone
    		}
    
    		return []subtest{
    			{
    				ip:   mustIP(fmt.Sprintf("2001:db8::1%s", zone)),
    				bits: 255,
    			},
    			{
    				ip:   mustIP(fmt.Sprintf("2001:db8::1%s", zone)),
    				bits: 32,
    				p:    mustPrefix("2001:db8::/32"),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/loadbalancer/loadbalancer.go

    	priorityMap := map[int][]int{}
    
    	// 1. calculate the LocalityLbEndpoints.Priority compared with proxy locality
    	for i, localityEndpoint := range loadAssignment.Endpoints {
    		// if region/zone/subZone all match, the priority is 0.
    		// if region/zone match, the priority is 1.
    		// if region matches, the priority is 2.
    		// if locality not match, the priority is 3.
    		priority := util.LbPriority(locality, localityEndpoint.Locality)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  8. pkg/proxy/topology_test.go

    		name:         "multiple hints per endpoint, filtering includes any endpoint with zone included",
    		hintsEnabled: true,
    		nodeLabels:   map[string]string{v1.LabelTopologyZone: "zone-c"},
    		serviceInfo:  &BaseServicePortInfo{hintsAnnotation: "auto"},
    		endpoints: []Endpoint{
    			&BaseEndpointInfo{endpoint: "10.1.2.3:80", zoneHints: sets.New[string]("zone-a", "zone-b", "zone-c"), ready: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  9. pkg/bootstrap/instance_test.go

    			replacement: []byte(`"path": "/tmp/XDS"`),
    		},
    	}
    	if excludeLocality {
    		// zone and region can vary based on the environment, so it shouldn't be considered in the diff.
    		replacements = append(replacements,
    			regexReplacement{
    				pattern:     regexp.MustCompile(`"zone": ".+"`),
    				replacement: []byte("\"zone\": \"\""),
    			},
    			regexReplacement{
    				pattern:     regexp.MustCompile(`"region": ".+"`),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  10. tools/istio-clean-iptables/pkg/cmd/testdata/dns-uid-gid.golden

    ip6tables -t raw -D ISTIO_OUTPUT -p udp --sport 15053 -m owner --gid-owner 1 -j CT --zone 2
    iptables -t raw -D ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 2 -j CT --zone 1
    ip6tables -t raw -D ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 2 -j CT --zone 1
    iptables -t raw -D ISTIO_OUTPUT -p udp --sport 15053 -m owner --gid-owner 2 -j CT --zone 2
    ip6tables -t raw -D ISTIO_OUTPUT -p udp --sport 15053 -m owner --gid-owner 2 -j CT --zone 2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top