Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 131 for Eads (0.04 sec)

  1. src/cmd/internal/archive/archive.go

    		Mtime: mtime,
    		Uid:   uid,
    		Gid:   gid,
    		Mode:  mode,
    		Data:  Data{off + entryLen, size},
    	})
    }
    
    // exactly16Bytes truncates the string if necessary so it is at most 16 bytes long,
    // then pads the result with spaces to be exactly 16 bytes.
    // Fmt uses runes for its width calculation, but we need bytes in the entry header.
    func exactly16Bytes(s string) string {
    	for len(s) > 16 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 15:39:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. pkg/adsc/adsc_test.go

    			go func() {
    				err = xds.Serve(l)
    				if err != nil {
    					log.Println(err)
    				}
    			}()
    			defer xds.GracefulStop()
    			if err != nil {
    				t.Errorf("Could not start serving ads server %v", err)
    				return
    			}
    
    			if err := tt.inAdsc.Dial(); err != nil {
    				t.Errorf("Dial error: %v", err)
    				return
    			}
    			if err := tt.inAdsc.Run(); err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top