Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 367 for zone2 (0.1 sec)

  1. pkg/controller/nodelifecycle/metrics.go

    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"zone"},
    	)
    	zoneSize = metrics.NewGaugeVec(
    		&metrics.GaugeOpts{
    			Subsystem:      nodeControllerSubsystem,
    			Name:           zoneSizeKey,
    			Help:           "Gauge measuring number of registered Nodes per zones.",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"zone"},
    	)
    	unhealthyNodes = metrics.NewGaugeVec(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 21:55:34 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. src/time/zoneinfo_windows.go

    // time zone information.
    // The implementation assumes that this year's rules for daylight savings
    // time apply to all previous and future years as well.
    
    // matchZoneKey checks if stdname and dstname match the corresponding key
    // values "MUI_Std" and MUI_Dlt" or "Std" and "Dlt" in the kname key stored
    // under the open registry key zones.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 07:20:34 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  3. pkg/scheduler/testing/workload_prep.go

    	var labelPairs []keyVal
    	for k, v := range labels {
    		labelPairs = append(labelPairs, keyVal{k: k, v: v})
    	}
    	zones := 10
    	// build nodes
    	for i := 0; i < allNodesNum; i++ {
    		node := MakeNode().Name(fmt.Sprintf("node%d", i)).
    			Label(v1.LabelTopologyZone, fmt.Sprintf("zone%d", i%zones)).
    			Label(v1.LabelHostname, fmt.Sprintf("node%d", i)).Obj()
    		allNodes = append(allNodes, node)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 13:43:36 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. lib/time/README

    The zoneinfo.zip archive contains time zone files compiled using
    the code and data maintained as part of the IANA Time Zone Database.
    The IANA asserts that the database is in the public domain.
    
    For more information, see
    https://www.iana.org/time-zones
    ftp://ftp.iana.org/tz/code/tz-link.html
    https://datatracker.ietf.org/doc/html/rfc6557
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Aug 15 02:18:46 UTC 2021
    - 390 bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__apps__v1_openapi.json

    zero if the number of eligible domains is less than MinDomains. For example, in a 3-zone cluster, MaxSkew is set to 1, and pods with the same labelSelector spread as 2/2/1: In this case, the global minimum is 1. | zone1 | zone2 | zone3 | |  P P  |  P P  |   P   | - if MaxSkew is 1, incoming pod can only be scheduled to zone3 to become 2/2/2; scheduling it onto zone1(zone2) would make the ActualSkew(3-1) on zone1(zone2) violate MaxSkew(1). - if MaxSkew is 2, incoming pod can be scheduled onto any zone....
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 810.7K bytes
    - Viewed (0)
  6. cmd/kube-controller-manager/app/options/nodelifecyclecontroller.go

    	fs.Float32Var(&o.UnhealthyZoneThreshold, "unhealthy-zone-threshold", 0.55, "Fraction of Nodes in a zone which needs to be not Ready (minimum 3) for zone to be treated as unhealthy. ")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 09:25:51 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  7. lib/time/update.bash

    rm -rf work
    mkdir work
    go build -o work/mkzip mkzip.go # build now for correct paths in build errors
    cd work
    mkdir zoneinfo
    curl -sS -L -O https://www.iana.org/time-zones/repository/releases/tzcode$CODE.tar.gz
    curl -sS -L -O https://www.iana.org/time-zones/repository/releases/tzdata$DATA.tar.gz
    tar xzf tzcode$CODE.tar.gz
    tar xzf tzdata$DATA.tar.gz
    
    if ! make CFLAGS=-DSTD_INSPIRED AWK=awk TZDIR=zoneinfo posix_only >make.out 2>&1; then
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 02 18:20:41 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/batch/v1beta1/types_swagger_doc_generated.go

    	"timeZone":                   "The time zone name for the given schedule, see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones. If not specified, this will default to the time zone of the kube-controller-manager process. The set of valid time zone names and the time zone offset is loaded from the system-wide time zone database by the API server during CronJob validation and the controller manager during execution. If no system-wide...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 07 11:58:59 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/batch/v1beta1/generated.proto

      optional string schedule = 1;
    
      // The time zone name for the given schedule, see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones.
      // If not specified, this will default to the time zone of the kube-controller-manager process.
      // The set of valid time zone names and the time zone offset is loaded from the system-wide time zone
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. src/net/netip/netip.go

    // WithZone returns an IP that's the same as ip but with the provided
    // zone. If zone is empty, the zone is removed. If ip is an IPv4
    // address, WithZone is a no-op and returns ip unchanged.
    func (ip Addr) WithZone(zone string) Addr {
    	if !ip.Is6() {
    		return ip
    	}
    	if zone == "" {
    		ip.z = z6noz
    		return ip
    	}
    	ip.z = unique.Make(addrDetail{IsV6: true, ZoneV6: zone})
    	return ip
    }
    
    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