Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 52 for LDS (0.12 sec)

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

    	}),
    }
    
    const (
    	RBACHTTPFilterName     = "envoy.filters.http.rbac"
    	RBACHTTPFilterNameDeny = "envoy.filters.http.rbac.DENY"
    )
    
    // BuildListeners handles a LDS request, returning listeners of ApiListener type.
    // The request may include a list of resource names, using the full_hostname[:port] format to select only
    // specific services.
    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/xds/lds.go

    			// Waypoint proxies have a matcher against pod IPs in them. Historically, any LDS change would do a full
    			// push, recomputing push context. Doing that on every IP change doesn't scale, so we need these to remain
    			// incremental pushes.
    			// This allows waypoints only to push LDS on incremental pushes to Address type which would otherwise be skipped.
    			return true
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. tensorflow/c/exported_symbols.lds

    Anthony Platanios <******@****.***> 1503349849 -0400
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 21 21:10:49 UTC 2017
    - 13 bytes
    - Viewed (0)
  4. tensorflow/c/version_script.lds

    Fritz Obermeyer <******@****.***> 1504736818 -0700
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 22:26:58 UTC 2017
    - 121 bytes
    - Viewed (0)
  5. pilot/cmd/pilot-agent/status/ready/probe_test.go

    		stats  string
    		result string
    	}{
    		{
    			"only lds",
    			"listener_manager.lds.update_success: 1",
    			"config not fully received from XDS server: cds updates: 0 successful, 0 rejected; lds updates: 1 successful, 0 rejected",
    		},
    		{
    			"only cds",
    			"cluster_manager.cds.update_success: 1",
    			"config not fully received from XDS server: cds updates: 1 successful, 0 rejected; lds updates: 0 successful, 0 rejected",
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loadxcoff/ldxcoff.go

    		if sect.Type < xcoff.STYP_TEXT || sect.Type > xcoff.STYP_BSS {
    			continue
    		}
    		lds := new(ldSection)
    		lds.Section = *sect
    		name := fmt.Sprintf("%s(%s)", pkg, lds.Name)
    		symbol := l.LookupOrCreateSym(name, localSymVersion)
    		s := l.MakeSymbolUpdater(symbol)
    
    		switch lds.Type {
    		default:
    			return errorf("unrecognized section type 0x%x", lds.Type)
    		case xcoff.STYP_TEXT:
    			s.SetType(sym.STEXT)
    		case xcoff.STYP_DATA:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  7. pilot/cmd/pilot-agent/status/util/stats.go

    	statLdsRejected    = "listener_manager.lds.update_rejected"
    	statLdsSuccess     = "listener_manager.lds.update_success"
    	statServerState    = "server.state"
    	statWorkersStarted = "listener_manager.workers_started"
    	readyStatsRegex    = "^(server\\.state|listener_manager\\.workers_started)"
    	updateStatsRegex   = "^(cluster_manager\\.cds|listener_manager\\.lds)\\.(update_success|update_rejected)$"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 21 15:50:49 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  8. pkg/adsc/delta_test.go

    							Name:     "test-listener",
    							Resource: protoconv.MessageToAny(testListenerNoSecret),
    						},
    					},
    				},
    			},
    			expectedTree: `CDS/:
    LDS/:
      LDS/test-listener:
        RDS/test-rds-config:
    `,
    		},
    		{
    			desc: "initial request listener with secret",
    			serverResponses: []*discovery.DeltaDiscoveryResponse{
    				{
    					TypeUrl: v3.ListenerType,
    					Resources: []*discovery.Resource{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. istioctl/pkg/writer/pilot/status.go

    		return s.GetConfigStatus().String()
    	}
    }
    
    func getSyncStatus(clientConfig *xdsstatus.ClientConfig) (cds, lds, eds, rds, ecds string) {
    	configs := handleAndGetXdsConfigs(clientConfig)
    	for _, config := range configs {
    		cfgType := config.GetTypeUrl()
    		switch cfgType {
    		case xdsresource.ListenerType:
    			lds = formatStatus(config)
    		case xdsresource.ClusterType:
    			cds = formatStatus(config)
    		case xdsresource.RouteType:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 04:16:55 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. pilot/pkg/networking/grpcgen/grpcgen.go

    // default prefix, and is expects just the route for one host.
    // handleAck will detect if the message is an ACK or NACK, and update/log/count
    // using the generic structures. "Classical" CDS/LDS/RDS/EDS use separate logic -
    // this is used for the API-based LDS and generic messages.
    
    var log = istiolog.RegisterScope("grpcgen", "xDS Generator for Proxyless gRPC")
    
    type GrpcConfigGenerator struct{}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top