Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 192 for BoolValue (0.26 sec)

  1. pilot/pkg/xds/testdata/none_lds_http.json

                                "dns": {
                                  "Kind": {
                                    "BoolValue": true
                                  }
                                },
                                "subject": {
                                  "Kind": {
                                    "BoolValue": true
                                  }
                                },
                                "uri": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 02:10:15 UTC 2021
    - 32.9K bytes
    - Viewed (0)
  2. operator/pkg/apis/istio/v1alpha1/values_types.proto

      google.protobuf.BoolValue mountMtlsCerts = 60;
    
      // The address of the CA for CSR.
      string caAddress = 61;
    
      // Controls whether one external istiod is enabled.
      google.protobuf.BoolValue externalIstiod = 62;
    
      // Controls whether a remote cluster is the config cluster for an external istiod
      google.protobuf.BoolValue configCluster = 64;
    
      // The name of the CA for workloads.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  3. pkg/proto/types.go

    package proto
    
    import (
    	wrappers "google.golang.org/protobuf/types/known/wrapperspb"
    )
    
    var (
    	// BoolTrue is a bool true pointer of types.BoolValue.
    	BoolTrue = &wrappers.BoolValue{
    		Value: true,
    	}
    
    	// BoolFalse is a bool false pointer of types.BoolValue.
    	BoolFalse = &wrappers.BoolValue{
    		Value: false,
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 19 21:53:59 UTC 2021
    - 902 bytes
    - Viewed (0)
  4. pilot/pkg/model/telemetry_metric_test.go

    			{
    				Match: &tpb.MetricSelector{
    					MetricMatch: &tpb.MetricSelector_Metric{
    						Metric: tpb.MetricSelector_ALL_METRICS,
    					},
    					Mode: tpb.WorkloadMode_CLIENT_AND_SERVER,
    				},
    				Disabled: &wrappers.BoolValue{Value: true},
    			},
    		},
    	}
    	disableAllWithoutMode := &tpb.Metrics{
    		Providers: []*tpb.ProviderRef{
    			{Name: "prometheus"},
    		},
    		Overrides: []*tpb.MetricsOverrides{
    			{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Aug 16 03:24:36 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  5. pilot/pkg/xds/requestidextension/uuid_extension.go

    		UseRequestIdForTraceSampling: &wrapperspb.BoolValue{
    			Value: true,
    		},
    	}),
    }
    
    func BuildUUIDRequestIDExtension(ctx *UUIDRequestIDExtensionContext) *hcm.RequestIDExtension {
    	if ctx == nil {
    		return UUIDRequestIDExtension
    	}
    	return &hcm.RequestIDExtension{
    		TypedConfig: protoconv.MessageToAny(&uuid_extension.UuidRequestIdConfig{
    			UseRequestIdForTraceSampling: &wrapperspb.BoolValue{
    				Value: ctx.UseRequestIDForTraceSampling,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 22 16:43:43 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  6. src/log/slog/value_test.go

    	}
    }
    
    func TestValueEqual(t *testing.T) {
    	var x, y int
    	vals := []Value{
    		{},
    		Int64Value(1),
    		Int64Value(2),
    		Float64Value(3.5),
    		Float64Value(3.7),
    		BoolValue(true),
    		BoolValue(false),
    		TimeValue(testTime),
    		TimeValue(time.Time{}),
    		TimeValue(time.Date(2001, 1, 2, 3, 4, 5, 0, time.UTC)),
    		TimeValue(time.Date(2300, 1, 1, 0, 0, 0, 0, time.UTC)),            // overflows nanoseconds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 16:12:08 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  7. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	56,  // 13: v1alpha1.CNIUsageConfig.chained:type_name -> google.protobuf.BoolValue
    	56,  // 14: v1alpha1.CNIAmbientConfig.enabled:type_name -> google.protobuf.BoolValue
    	56,  // 15: v1alpha1.CNIAmbientConfig.dnsCapture:type_name -> google.protobuf.BoolValue
    	56,  // 16: v1alpha1.CNIAmbientConfig.ipv6:type_name -> google.protobuf.BoolValue
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/loadbalancer/loadbalancer_test.go

    		},
    		{
    			"mesh disabled",
    			&networking.LocalityLoadBalancerSetting{Enabled: &wrappers.BoolValue{Value: false}},
    			nil,
    			nil,
    		},
    		{
    			"dr disabled",
    			&networking.LocalityLoadBalancerSetting{Enabled: &wrappers.BoolValue{Value: true}},
    			&networking.LocalityLoadBalancerSetting{Enabled: &wrappers.BoolValue{Value: false}},
    			nil,
    		},
    		{
    			"dr enabled override mesh disabled",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  9. pkg/apis/resource/namedresources.go

    }
    
    // NamedResourcesAttributeValue must have one and only one field set.
    type NamedResourcesAttributeValue struct {
    	// QuantityValue is a quantity.
    	QuantityValue *resource.Quantity
    	// BoolValue is a true/false value.
    	BoolValue *bool
    	// IntValue is a 64-bit integer.
    	IntValue *int64
    	// IntSliceValue is an array of 64-bit integers.
    	IntSliceValue *NamedResourcesIntSlice
    	// StringValue is a string.
    	StringValue *string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. pilot/pkg/xds/endpoints/endpoint_builder_test.go

    							LocalityLbSetting: &networking.LocalityLoadBalancerSetting{
    								FailoverPriority: []string{
    									"a",
    									"b",
    								},
    								Enabled: &wrapperspb.BoolValue{Value: false},
    							},
    						},
    					},
    				},
    			},
    			expectedLabels: nil,
    		},
    		{
    			name: "mesh LocalityLoadBalancerSetting",
    			dr: &config.Config{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top