Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for localisty (0.3 sec)

  1. istioctl/pkg/writer/envoy/configdump/testdata/endpoint/configdump.json

                            "cluster_name": "sds-grpc",
                            "endpoints": [
                                {
                                    "locality": {},
                                    "lb_endpoints": [
                                        {
                                            "endpoint": {
                                                "address": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 12 02:25:59 UTC 2022
    - 66K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. istioctl/pkg/proxyconfig/testdata/config_dump.json

                "@type": "type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment",
                "cluster_name": "prometheus_stats",
                "endpoints": [
                  {
                    "locality": {},
                    "lb_endpoints": [
                      {
                        "endpoint": {
                          "address": {
                            "socket_address": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  7. src/index/suffixarray/sais2.go

    		k = -k
    	}
    
    	// Cache recently used bucket index:
    	// we're processing suffixes in sorted order
    	// and accessing buckets indexed by the
    	// byte before the sorted order, which still
    	// has very good locality.
    	// Invariant: b is cached, possibly dirty copy of bucket[cB].
    	cB := c1
    	b := bucket[cB]
    	sa[b] = int64(k)
    	b++
    
    	for i := 0; i < len(sa); i++ {
    		j := int(sa[i])
    		if j == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  8. 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)
  9. 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