Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for cg (0.11 sec)

  1. pilot/pkg/networking/core/cluster_builder_test.go

    					},
    					Spec: tc.destRule,
    				}
    			}
    
    			cg := NewConfigGenTest(t, TestOptions{
    				ConfigPointers: []*config.Config{cfg},
    				Services:       []*model.Service{tc.service},
    			})
    
    			cg.MemRegistry.WantGetProxyServiceTargets = targets
    			proxy := cg.SetupProxy(nil)
    			cb := NewClusterBuilder(proxy, &model.PushRequest{Push: cg.PushContext()}, nil)
    			ec := newClusterWrapper(tc.cluster)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/cluster_test.go

    		}
    	default:
    		panic(fmt.Sprintf("unsupported node type: %v", c.nodeType))
    	}
    	clusters := cg.Clusters(cg.SetupProxy(proxy))
    	xdstest.ValidateClusters(c.t, clusters)
    	if len(cg.PushContext().ProxyStatus[model.DuplicatedClusters.Name()]) > 0 {
    		c.t.Fatalf("duplicate clusters detected %#v", cg.PushContext().ProxyStatus[model.DuplicatedClusters.Name()])
    	}
    	return clusters
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/gateway_test.go

    			cfgs := tt.gateways
    			cfgs = append(cfgs, tt.virtualServices...)
    			cg := NewConfigGenTest(t, TestOptions{
    				Configs: cfgs,
    				Services: []*pilot_model.Service{
    					exampleService,
    				},
    			})
    			r := cg.ConfigGen.buildGatewayHTTPRouteConfig(cg.SetupProxy(&proxyGateway), cg.PushContext(), tt.routeName)
    			if r == nil {
    				t.Fatal("got an empty route configuration")
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    		ds, err = dc.prepareLocked(ctx, cg, query)
    	})
    	if err != nil {
    		return nil, err
    	}
    	stmt := &Stmt{
    		db:    db,
    		query: query,
    		cg:    cg,
    		cgds:  ds,
    	}
    
    	// When cg == nil this statement will need to keep track of various
    	// connections they are prepared on and record the stmt dependency on
    	// the DB.
    	if cg == nil {
    		stmt.css = []connStmt{{dc, ds}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    cc
    
    // cd : https://en.wikipedia.org/wiki/.cd
    // see also: https://www.nic.cd/domain/insertDomain_2.jsp?act=1
    cd
    gov.cd
    
    // cf : https://en.wikipedia.org/wiki/.cf
    cf
    
    // cg : https://en.wikipedia.org/wiki/.cg
    cg
    
    // ch : https://en.wikipedia.org/wiki/.ch
    ch
    
    // ci : https://en.wikipedia.org/wiki/.ci
    // http://www.nic.ci/index.php?page=charte
    ci
    org.ci
    or.ci
    com.ci
    co.ci
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  6. go.sum

    go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.50.0/go.mod h1:DKdbWcT4GH1D0Y3Sqt/PFXt2naRKDWtU+eE6oLdFNA8=
    go.opentelemetry.io/otel v1.27.0 h1:9BZoF3yMK/O1AafMiQTVu0YDj5Ea4hPhxCs7sGva+cg=
    go.opentelemetry.io/otel v1.27.0/go.mod h1:DMpAK8fzYRzs+bi3rS5REupisuqTheUlSZJ1WnZaPAQ=
    go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.27.0 h1:R9DE4kQ4k+YtfLI2ULwX82VtNQ2J8yZmA7ZIF/D+7Mc=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  7. src/database/sql/sql_test.go

    func TestStatementClose(t *testing.T) {
    	want := errors.New("STMT ERROR")
    
    	tests := []struct {
    		stmt *Stmt
    		msg  string
    	}{
    		{&Stmt{stickyErr: want}, "stickyErr not propagated"},
    		{&Stmt{cg: &Tx{}, cgds: &driverStmt{Locker: &sync.Mutex{}, si: stubDriverStmt{want}}}, "driverStmt.Close() error not propagated"},
    	}
    	for _, test := range tests {
    		if err := test.stmt.Close(); err != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
Back to top