Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 109 for Eads (0.03 sec)

  1. pilot/pkg/networking/grpcgen/lds.go

    								// TODO: for TCP listeners don't generate RDS, but some indication of cluster name.
    								Rds: &hcm.Rds{
    									ConfigSource: &core.ConfigSource{
    										ConfigSourceSpecifier: &core.ConfigSource_Ads{
    											Ads: &core.AggregatedConfigSource{},
    										},
    									},
    									RouteConfigName: clusterKey(serviceHost, p.Port),
    								},
    							},
    						}),
    					},
    				}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. pilot/pkg/model/context.go

    // See for example EDS incremental updates.
    type XdsUpdates = sets.Set[ConfigKey]
    
    // XdsLogDetails contains additional metadata that is captured by Generators and used by xds processors
    // like Ads and Delta to uniformly log.
    type XdsLogDetails struct {
    	Incremental    bool
    	AdditionalInfo string
    }
    
    var DefaultXdsLogDetails = XdsLogDetails{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  3. istioctl/pkg/writer/compare/testdata/configdump.json

                "name": "inbound-vip|9080|http|ratings.default.svc.cluster.local",
                "type": "EDS",
                "eds_cluster_config": {
                  "eds_config": {
                    "ads": {},
                    "initial_fetch_timeout": "0s",
                    "resource_api_version": "V3"
                  },
                  "service_name": "inbound-vip|9080|http|ratings.default.svc.cluster.local"
                },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 10:02:09 UTC 2024
    - 52K bytes
    - Viewed (0)
  4. istioctl/pkg/proxyconfig/testdata/config_dump.json

                "name": "inbound-vip|8000|http|httpbin.default.svc.cluster.local",
                "type": "EDS",
                "eds_cluster_config": {
                  "eds_config": {
                    "ads": {},
                    "initial_fetch_timeout": "0s",
                    "resource_api_version": "V3"
                  },
                  "service_name": "inbound-vip|8000|http|httpbin.default.svc.cluster.local"
                },
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_builder.go

    	if httpOpts.rds != "" {
    		rds := &hcm.HttpConnectionManager_Rds{
    			Rds: &hcm.Rds{
    				ConfigSource: &core.ConfigSource{
    					ConfigSourceSpecifier: &core.ConfigSource_Ads{
    						Ads: &core.AggregatedConfigSource{},
    					},
    					InitialFetchTimeout: durationpb.New(0),
    					ResourceApiVersion:  core.ApiVersion_V3,
    				},
    				RouteConfigName: httpOpts.rds,
    			},
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    		p.Comments = append(p.Comments, c)
    	}
    
    	p.commentX = nil
    	p.DefaultSampleType, err = getString(p.stringTable, &p.defaultSampleTypeX, err)
    	p.stringTable = nil
    	return err
    }
    
    // padStringArray pads arr with enough empty strings to make arr
    // length l when arr's length is less than l.
    func padStringArray(arr []string, l int) []string {
    	if l <= len(arr) {
    		return arr
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    			if pod == nil && expectedPod {
    				continue
    			}
    			builder := esc.c.NewEndpointBuilder(pod)
    			// EDS and ServiceEntry use name for service port - ADS will need to map to numbers.
    			for _, port := range slice.Ports {
    				var portNum int32
    				if port.Port != nil {
    					portNum = *port.Port
    				}
    				var portName string
    				if port.Name != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  8. pkg/model/proxy.go

    	//
    	// This field is intended for use in those scenarios where a user needs to
    	// onboard a workload from a VM without relying on auto-registration.
    	//
    	// At runtime, when a proxy establishes an ADS connection to the istiod,
    	// istiod will treat a non-empty value of this field as an indicator
    	// that proxy corresponds to a VM and must be represented by a WorkloadEntry
    	// with a given name.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. src/encoding/base32/base32.go

    	}
    	enc.padChar = padding
    	return &enc
    }
    
    /*
     * Encoder
     */
    
    // Encode encodes src using the encoding enc,
    // writing [Encoding.EncodedLen](len(src)) bytes to dst.
    //
    // The encoding pads the output to a multiple of 8 bytes,
    // so Encode is not appropriate for use on individual blocks
    // of a large data stream. Use [NewEncoder] instead.
    func (enc *Encoding) Encode(dst, src []byte) {
    	if len(src) == 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 16:25:54 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. pilot/pkg/xds/debug.go

    	s.addDebugHandler(mux, internalMux, "/debug/ndsz", "Status and debug interface for NDS", s.ndsz)
    	s.addDebugHandler(mux, internalMux, "/debug/adsz", "Status and debug interface for ADS", s.adsz)
    	s.addDebugHandler(mux, internalMux, "/debug/adsz?push=true", "Initiates push of the current state to all connected endpoints", s.adsz)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
Back to top