Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 255 for wrapperspb (0.18 sec)

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

    		MaxRetries:         &wrapperspb.UInt32Value{Value: math.MaxUint32},
    		MaxRequests:        &wrapperspb.UInt32Value{Value: math.MaxUint32},
    		MaxConnections:     &wrapperspb.UInt32Value{Value: math.MaxUint32},
    		MaxPendingRequests: &wrapperspb.UInt32Value{Value: math.MaxUint32},
    		TrackRemaining:     true,
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  2. pilot/pkg/xds/requestidextension/uuid_extension.go

    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	"istio.io/istio/pilot/pkg/util/protoconv"
    )
    
    var UUIDRequestIDExtension = &hcm.RequestIDExtension{
    	TypedConfig: protoconv.MessageToAny(&uuid_extension.UuidRequestIdConfig{
    		UseRequestIdForTraceSampling: &wrapperspb.BoolValue{
    			Value: true,
    		},
    	}),
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 22 16:43:43 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/extension/wasmplugin_test.go

    		WasmPlugin: &extensions.WasmPlugin{
    			Priority: &wrapperspb.Int32Value{Value: 1},
    		},
    	}
    	someAuthZFilter = &model.WasmPluginWrapper{
    		Name:         "someAuthZFilter",
    		Namespace:    "istio-system",
    		ResourceName: "istio-system.someAuthZFilter",
    		WasmPlugin: &extensions.WasmPlugin{
    			Priority: &wrapperspb.Int32Value{Value: 1000},
    		},
    	}
    	someNetworkFilter = &model.WasmPluginWrapper{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. operator/pkg/apis/istio/v1alpha1/value_types_json.go

    		var s string
    		err := json.Unmarshal(value, &s)
    		if err != nil {
    			return err
    		}
    		this.StrVal = &wrapperspb.StringValue{Value: s}
    		return nil
    	}
    	this.Type = int64(intstr.Int)
    	var s int32
    	err := json.Unmarshal(value, &s)
    	if err != nil {
    		return err
    	}
    	this.IntVal = &wrapperspb.Int32Value{Value: s}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. pilot/pkg/xds/endpoints/endpoint_builder_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package endpoints
    
    import (
    	"reflect"
    	"testing"
    
    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config"
    )
    
    func TestPopulateFailoverPriorityLabels(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/config/config.go

    			proxyConfig.Concurrency = wrapperspb.Int32(int32(CPULimit))
    		}
    	}
    	// Respect the old flag, if they set it. This should never be set in typical installation.
    	if concurrency != 0 {
    		log.Warnf("legacy --concurrency=%d flag detected; prefer to use ProxyConfig", concurrency)
    		proxyConfig.Concurrency = wrapperspb.Int32(int32(concurrency))
    	}
    
    	if proxyConfig.Concurrency.GetValue() == 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. pkg/proto/types.go

    // limitations under the License.
    
    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)
  8. pilot/pkg/networking/core/route/route_internal_test.go

    	matcher "github.com/envoyproxy/go-control-plane/envoy/type/matcher/v3"
    	xdstype "github.com/envoyproxy/go-control-plane/envoy/type/v3"
    	"google.golang.org/protobuf/types/known/durationpb"
    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	networking "istio.io/api/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/model"
    	authzmatcher "istio.io/istio/pilot/pkg/security/authz/matcher"
    	authz "istio.io/istio/pilot/pkg/security/authz/model"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 02:47:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	_ "google.golang.org/protobuf/types/known/anypb"
    	durationpb "google.golang.org/protobuf/types/known/durationpb"
    	structpb "google.golang.org/protobuf/types/known/structpb"
    	wrapperspb "google.golang.org/protobuf/types/known/wrapperspb"
    	v1 "k8s.io/api/core/v1"
    	v11 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	reflect "reflect"
    	sync "sync"
    )
    
    const (
    	// Verify that this generated code is sufficiently up-to-date.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  10. pkg/envoy/proxy_test.go

    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/model"
    )
    
    func TestEnvoyArgs(t *testing.T) {
    	proxyConfig := (*model.NodeMetaProxyConfig)(mesh.DefaultProxyConfig())
    	proxyConfig.ClusterName = &meshconfig.ProxyConfig_ServiceCluster{ServiceCluster: "my-cluster"}
    	proxyConfig.Concurrency = &wrapperspb.Int32Value{Value: 8}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 11:45:51 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top