Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for qsub (0.03 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. pkg/config/validation/envoyfilter/envoyfilter.go

    							// sub filter match is supported only for applyTo HTTP_FILTER
    							if cp.ApplyTo != networking.EnvoyFilter_HTTP_FILTER {
    								errs = validation.AppendValidation(errs, fmt.Errorf("Envoy filter: subfilter match can be used with applyTo HTTP_FILTER only")) // nolint: stylecheck
    								continue
    							}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 00:31:03 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  3. 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)
  4. tests/integration/security/sds_ingress/util/test_certs.go

    BQADggEPADCCAQoCggEBAKiuLJdO/Tq1oq/TTL1uI1vZAsUYh8jjIvVlcBXGPzXJ
    bVTlBz937bZOOOOuXcLrzlM6l0d97Hbhkq67V7ziSCKffMt3ZptiS5ERy+a94jqT
    kCianHpQSdvo4AFGZHLxDkL2QkEvuOvDmUfGmfu9cqoHYFcL9MJKlGvcW6Ae/QSb
    BFLxdRfVGfsHC8w4rhmU2LbaABbB+HVJ8zPKMjEofoZebTUVpatQk//2XnM7VV4r
    YrbrIyqbA2VWQIU0Ne4kQhKGc6Wh49mjV5gALjnWSBST+H4eBcoKhFHyqJF0WyhX
    Ikstryd0m4Co/VEsJ2GXS7YJ5Fsc1z/5R0/h+ufqIxECAwEAAaNTMFEwCQYDVR0T
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 22:01:21 UTC 2023
    - 25.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pkg/bootstrap/option/instances_test.go

    			option:   option.Region("fake"),
    			expected: "fake",
    		},
    		{
    			testName: "zone",
    			key:      "zone",
    			option:   option.Zone("fake"),
    			expected: "fake",
    		},
    		{
    			testName: "sub zone",
    			key:      "sub_zone",
    			option:   option.SubZone("fake"),
    			expected: "fake",
    		},
    		{
    			testName: "node metadata nil",
    			key:      "meta_json_str",
    			option:   option.NodeMetadata(nil, nil),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  8. 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