Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for localisty (0.21 sec)

  1. pkg/workloadapi/workload.pb.go

    	ClusterId string `protobuf:"bytes,18,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"`
    	// The Locality defines information about where a workload is geographically deployed
    	Locality *Locality `protobuf:"bytes,24,opt,name=locality,proto3" json:"locality,omitempty"`
    }
    
    func (x *Workload) Reset() {
    	*x = Workload{}
    	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)
  2. pilot/pkg/serviceregistry/serviceregistry_test.go

    		},
    	}
    	cases := []struct {
    		name     string
    		pod      *v1.Pod
    		node     *v1.Node
    		obj      config.Config
    		expected *core.Locality
    	}{
    		{
    			name:     "no locality",
    			pod:      basePod,
    			node:     baseNode,
    			expected: &core.Locality{},
    		},
    		{
    			name: "pod specific label",
    			pod: func() *v1.Pod {
    				p := basePod.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)
  3. tests/integration/ambient/baseline_test.go

    						localDst := dst
    						localSrc := src
    						opt := echo.CallOptions{
    							Port:    echo.Port{Name: "http"},
    							Scheme:  scheme.HTTP,
    							Count:   5,
    							Timeout: time.Second,
    							Check:   check.OK(),
    							To:      localDst,
    						}
    						// allow for delay between prometheus pulls from target pod
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    	}
    
    	// Test that we can look up instances just by Proxy metadata
    	metaServices := controller.GetProxyServiceTargets(&model.Proxy{
    		Type:            "sidecar",
    		IPAddresses:     []string{"1.1.1.1"},
    		Locality:        &core.Locality{Region: "r", Zone: "z"},
    		ConfigNamespace: "nsa",
    		Labels: map[string]string{
    			"app":                      "prod-app",
    			label.SecurityTlsMode.Name: "mutual",
    		},
    		Metadata: &model.NodeMetadata{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  5. src/runtime/mgcmark.go

    	drainCheckThreshold = 100000
    
    	// pagesPerSpanRoot indicates how many pages to scan from a span root
    	// at a time. Used by special root marking.
    	//
    	// Higher values improve throughput by increasing locality, but
    	// increase the minimum latency of a marking operation.
    	//
    	// Must be a multiple of the pageInUse bitmap element size and
    	// must also evenly divide pagesPerArena.
    	pagesPerSpanRoot = 512
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  6. src/runtime/malloc.go

    // they are allocated. There are various benefits to delaying zeroing
    // this way:
    //
    //	1. Stack frame allocation can avoid zeroing altogether.
    //
    //	2. It exhibits better temporal locality, since the program is
    //	   probably about to write to the memory.
    //
    //	3. We don't zero pages that never get reused.
    
    // Virtual memory layout
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top