Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for qsub (0.09 sec)

  1. pkg/test/framework/testcontext.go

    type TestContext interface {
    	resource.Context
    	test.Failer
    
    	Context() context.Context
    
    	// NewSubTest creates a new sub-test under the current running Test. The lifecycle of a sub-Test is scoped to the
    	// parent. Calls to Done() will block until all children are also Done(). When Run, sub-Tests will automatically
    	// create their own Golang *testing.T with the name provided.
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  2. pilot/pkg/xds/delta.go

    func (s *DiscoveryServer) processDeltaRequest(req *discovery.DeltaDiscoveryRequest, con *Connection) error {
    	stype := v3.GetShortType(req.TypeUrl)
    	deltaLog.Debugf("ADS:%s: REQ %s resources sub:%d unsub:%d nonce:%s", stype,
    		con.ID(), len(req.ResourceNamesSubscribe), len(req.ResourceNamesUnsubscribe), req.ResponseNonce)
    
    	if req.TypeUrl == v3.HealthInfoType {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  3. pkg/istio-agent/xds_proxy_delta.go

    				// only send healthcheck probe after LDS request has been sent
    				continue
    			}
    			log.WithLabels(
    				"type", model.GetShortType(req.TypeUrl),
    				"sub", len(req.ResourceNamesSubscribe),
    				"unsub", len(req.ResourceNamesUnsubscribe),
    				"nonce", req.ResponseNonce,
    				"initial", len(req.InitialResourceVersions),
    			).Debugf("delta request")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/listener_builder.go

    )
    
    // A stateful listener builder
    // Support the below intentions
    // 1. Use separate inbound capture listener(:15006) and outbound capture listener(:15001)
    // 2. The above listeners use bind_to_port sub listeners or filter chains.
    type ListenerBuilder struct {
    	node              *model.Proxy
    	push              *model.PushContext
    	gatewayListeners  []*listener.Listener
    	inboundListeners  []*listener.Listener
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  5. pilot/pkg/simulation/traffic.go

    func NewSimulation(t *testing.T, s *xds.FakeDiscoveryServer, proxy *model.Proxy) *Simulation {
    	return NewSimulationFromConfigGen(t, s.ConfigGenTest, proxy)
    }
    
    // withT swaps out the testing struct. This allows executing sub tests.
    func (sim *Simulation) withT(t *testing.T) *Simulation {
    	cpy := *sim
    	cpy.t = t
    	return &cpy
    }
    
    func (sim *Simulation) RunExpectations(es []Expect) {
    	for _, e := range es {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top