Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for BoolValue (0.11 sec)

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

    				OutboundClusterStatName: "%SERVICE%_%SUBSET_NAME%_%SERVICE_PORT_NAME%_%SERVICE_PORT%",
    				InboundTrafficPolicy:    &meshconfig.MeshConfig_InboundTrafficPolicy{},
    				EnableAutoMtls: &wrappers.BoolValue{
    					Value: false,
    				},
    			},
    			expectedSubsetClusters: []*cluster.Cluster{
    				{
    					Name:                 "outbound|8080|foobar|foo.default.svc.cluster.local",
    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. pkg/config/validation/validation_test.go

    		}, valid: false},
    		{name: "invalid, retryRemoteLocalities configured but attempts set to zero", in: &networking.HTTPRetry{
    			Attempts:              0,
    			RetryRemoteLocalities: &wrapperspb.BoolValue{Value: false},
    		}, valid: false},
    	}
    
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			if got := validateHTTPRetry(tc.in); (got == nil) != tc.valid {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  3. pkg/apis/resource/v1alpha2/zz_generated.conversion.go

    	out.QuantityValue = (*apiresource.Quantity)(unsafe.Pointer(in.QuantityValue))
    	out.BoolValue = (*bool)(unsafe.Pointer(in.BoolValue))
    	out.IntValue = (*int64)(unsafe.Pointer(in.IntValue))
    	out.IntSliceValue = (*resource.NamedResourcesIntSlice)(unsafe.Pointer(in.IntSliceValue))
    	out.StringValue = (*string)(unsafe.Pointer(in.StringValue))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_test.go

    )
    
    func testMesh() *meshconfig.MeshConfig {
    	return &meshconfig.MeshConfig{
    		ConnectTimeout: &durationpb.Duration{
    			Seconds: 10,
    			Nanos:   1,
    		},
    		EnableAutoMtls: &wrappers.BoolValue{
    			Value: false,
    		},
    		InboundTrafficPolicy: &meshconfig.MeshConfig_InboundTrafficPolicy{},
    	}
    }
    
    func TestConnectionPoolSettings(t *testing.T) {
    	basicSettings := &networking.ConnectionPoolSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 108.8K bytes
    - Viewed (0)
Back to top