Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for zone2 (0.19 sec)

  1. pkg/volume/csi/csi_attacher_test.go

    	}{
    		// PV agnostic path positive test cases
    		{
    			testName:        "success, json file exists",
    			volID:           "project/zone/test-vol1",
    			deviceMountPath: "plugins/csi/" + generateSha("project/zone/test-vol1") + "/globalmount",
    			jsonFile:        `{"driverName": "csi", "volumeHandle":"project/zone/test-vol1"}`,
    			stageUnstageSet: true,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    	node2         = makeNode("node2").withLabel(nodeLabelKey, "node2").Node
    	node1NoLabels = makeNode("node1").Node
    	node1Zone1    = makeNode("node1").withLabel("topology.gke.io/zone", "us-east-1").Node
    	node1Zone2    = makeNode("node1").withLabel("topology.gke.io/zone", "us-east-2").Node
    
    	// csiNode objects
    	csiNode1Migrated    = makeCSINode("node1", "kubernetes.io/gce-pd")
    	csiNode1NotMigrated = makeCSINode("node1", "")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  3. pkg/workloadapi/workload.pb.go

    	sizeCache     protoimpl.SizeCache
    	unknownFields protoimpl.UnknownFields
    
    	Region  string `protobuf:"bytes,1,opt,name=region,proto3" json:"region,omitempty"`
    	Zone    string `protobuf:"bytes,2,opt,name=zone,proto3" json:"zone,omitempty"`
    	Subzone string `protobuf:"bytes,3,opt,name=subzone,proto3" json:"subzone,omitempty"`
    }
    
    func (x *Locality) Reset() {
    	*x = Locality{}
    	if protoimpl.UnsafeEnabled {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/serviceregistry_test.go

    			pod: func() *v1.Pod {
    				p := basePod.DeepCopy()
    				p.Labels[model.LocalityLabel] = "r.z.s"
    				return p
    			}(),
    			node: baseNode,
    			expected: &core.Locality{
    				Region:  "r",
    				Zone:    "z",
    				SubZone: "s",
    			},
    		},
    		{
    			name: "node specific label",
    			pod:  basePod,
    			node: func() *v1.Node {
    				p := baseNode.DeepCopy()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  5. pkg/controller/cronjob/cronjob_controllerv2_test.go

    			expectedRequeueDuration:    1*time.Hour - 1*time.Minute + nextScheduleDelta,
    			expectUpdateStatus:         true,
    			jobPresentInCJActiveStatus: true,
    		},
    		"never ran, is time in zone, but time zone disabled": {
    			concurrencyPolicy:          "Allow",
    			schedule:                   onTheHour,
    			timeZone:                   &newYork,
    			deadline:                   noDead,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 70.8K bytes
    - Viewed (0)
  6. plugin/pkg/admission/noderestriction/admission_test.go

    	node.Labels["example.com/foo"] = value
    
    	// kubelet labels
    	node.Labels["kubernetes.io/hostname"] = value
    	node.Labels["failure-domain.beta.kubernetes.io/zone"] = value
    	node.Labels["failure-domain.beta.kubernetes.io/region"] = value
    	node.Labels["topology.kubernetes.io/zone"] = value
    	node.Labels["topology.kubernetes.io/region"] = value
    	node.Labels["beta.kubernetes.io/instance-type"] = value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
  7. src/net/http/request.go

    		if !usingProxy {
    			host = ""
    		} else {
    			return errors.New("http: invalid Host header")
    		}
    	}
    
    	// According to RFC 6874, an HTTP client, proxy, or other
    	// intermediary must remove any IPv6 zone identifier attached
    	// to an outgoing URI.
    	host = removeZone(host)
    
    	ruri := r.URL.RequestURI()
    	if usingProxy && r.URL.Scheme != "" && r.URL.Opaque == "" {
    		ruri = r.URL.Scheme + "://" + host + ruri
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  8. cmd/kube-controller-manager/app/options/options_test.go

    	"--route-reconciliation-period=30s",
    	"--secondary-node-eviction-rate=0.05",
    	"--service-account-private-key-file=/service-account-private-key",
    	"--terminated-pod-gc-threshold=12000",
    	"--unhealthy-zone-threshold=0.6",
    	"--use-service-account-credentials=true",
    	"--cert-dir=/a/b/c",
    	"--bind-address=192.168.4.21",
    	"--secure-port=10001",
    	"--concurrent-ttl-after-finished-syncs=8",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  9. pkg/proxy/winkernel/proxier.go

    	return info.serving
    }
    
    // IsTerminating returns true if an endpoint is terminating.
    func (info *endpointInfo) IsTerminating() bool {
    	return info.terminating
    }
    
    // ZoneHints returns the zone hints for the endpoint.
    func (info *endpointInfo) ZoneHints() sets.Set[string] {
    	return sets.Set[string]{}
    }
    
    // IP returns just the IP part of the endpoint, it's a part of proxy.Endpoint interface.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/buildlist.go

    			// go.mod files for these transitive-test-only dependencies. (See the test
    			// in mod_lazy_test_horizon.txt for a concrete example).
    			//
    			// The “goldilocks zone” seems to be to spot-check exactly the same
    			// modules that we promote to explicit roots: namely, those that provide
    			// packages transitively imported by the main module, and those that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
Back to top