Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 113 for BoolValue (0.11 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/api/resource/v1alpha2/namedresources.go

    type NamedResourcesAttributeValue struct {
    	// QuantityValue is a quantity.
    	QuantityValue *resource.Quantity `json:"quantity,omitempty" protobuf:"bytes,6,opt,name=quantity"`
    	// BoolValue is a true/false value.
    	BoolValue *bool `json:"bool,omitempty" protobuf:"bytes,2,opt,name=bool"`
    	// IntValue is a 64-bit integer.
    	IntValue *int64 `json:"int,omitempty" protobuf:"varint,7,opt,name=int"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 12:18:45 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/features/features.go

    			klog.Warningf("Setting deprecated feature gate %s=%s. It will be removed in a future release.", k, v)
    		}
    
    		boolValue, err := strconv.ParseBool(v)
    		if err != nil {
    			return nil, errors.Errorf("invalid value %v for feature-gate key: %s, use true|false instead", v, k)
    		}
    		featureGate[k] = boolValue
    	}
    
    	return featureGate, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. pilot/pkg/model/telemetry_test.go

    			{
    				DisableSpanReporting: &wrappers.BoolValue{Value: true},
    			},
    		},
    	}
    	overidesA := &tpb.Telemetry{
    		Tracing: []*tpb.Tracing{
    			{
    				RandomSamplingPercentage: &wrappers.DoubleValue{Value: 50.0},
    				CustomTags: map[string]*tpb.Tracing_CustomTag{
    					"foo": {},
    					"bar": {},
    				},
    				UseRequestIdForTraceSampling: &wrappers.BoolValue{Value: false},
    			},
    		},
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  10. src/flag/flag.go

    	}
    	return err
    }
    
    // -- bool Value
    type boolValue bool
    
    func newBoolValue(val bool, p *bool) *boolValue {
    	*p = val
    	return (*boolValue)(p)
    }
    
    func (b *boolValue) Set(s string) error {
    	v, err := strconv.ParseBool(s)
    	if err != nil {
    		err = errParse
    	}
    	*b = boolValue(v)
    	return err
    }
    
    func (b *boolValue) Get() any { return bool(*b) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:38:24 UTC 2024
    - 39.7K bytes
    - Viewed (0)
Back to top