Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for xdstype (0.1 sec)

  1. pilot/pkg/networking/core/route/route_internal_test.go

    					Percentage: &xdstype.FractionalPercent{
    						Numerator:   uint32(50 * 10000),
    						Denominator: xdstype.FractionalPercent_MILLION,
    					},
    					FaultDelaySecifier: &xdsfault.FaultDelay_FixedDelay{
    						FixedDelay: &durationpb.Duration{
    							Seconds: int64(3),
    						},
    					},
    				},
    				Abort: &xdshttpfault.FaultAbort{
    					Percentage: &xdstype.FractionalPercent{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 11 02:47:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. pkg/bootstrap/config.go

    	discHost := strings.Split(cfg.Metadata.ProxyConfig.DiscoveryAddress, ":")[0]
    
    	xdsType := "GRPC"
    	if features.DeltaXds {
    		xdsType = "DELTA_GRPC"
    	}
    
    	// Waypoint overrides
    	metadataDiscovery := cfg.Metadata.MetadataDiscovery
    	if strings.HasPrefix(cfg.ID, "waypoint~") {
    		xdsType = "DELTA_GRPC"
    		metadataDiscovery = true
    	}
    
    	opts = append(opts,
    		option.NodeID(cfg.ID),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/tracing.go

    	}
    }
    
    func configureSampling(hcmTracing *hcm.HttpConnectionManager_Tracing, providerPercentage float64) {
    	hcmTracing.ClientSampling = &xdstype.Percent{
    		Value: 100.0,
    	}
    	hcmTracing.OverallSampling = &xdstype.Percent{
    		Value: 100.0,
    	}
    	hcmTracing.RandomSampling = &xdstype.Percent{
    		Value: providerPercentage,
    	}
    }
    
    func proxyConfigSamplingValue(config *meshconfig.ProxyConfig) float64 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_traffic_policy.go

    	proxyprotocol "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/proxy_protocol/v3"
    	http "github.com/envoyproxy/go-control-plane/envoy/extensions/upstreams/http/v3"
    	xdstype "github.com/envoyproxy/go-control-plane/envoy/type/v3"
    	"google.golang.org/protobuf/proto"
    	"google.golang.org/protobuf/types/known/durationpb"
    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 23 05:38:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/tracing_test.go

    	t := &hcm.HttpConnectionManager_Tracing{
    		ClientSampling: &xdstype.Percent{
    			Value: 100.0,
    		},
    		OverallSampling: &xdstype.Percent{
    			Value: 100.0,
    		},
    		RandomSampling: &xdstype.Percent{
    			Value: randomSampling,
    		},
    		CustomTags: tags,
    	}
    	if maxLen != 0 {
    		t.MaxPathTagLength = wrapperspb.UInt32(maxLen)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 20:47:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  6. pilot/pkg/status/distribution/reporter.go

    func (r *Reporter) RegisterDisconnect(conID string, types sets.Set[xds.EventType]) {
    	r.mu.Lock()
    	defer r.mu.Unlock()
    	for xdsType := range types {
    		key := GenStatusReporterMapKey(conID, xdsType)
    		r.deleteKeyFromReverseMap(key)
    		delete(r.status, key)
    	}
    }
    
    func (r *Reporter) SetController(controller *Controller) {
    	r.controller = controller
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 30 17:25:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/ValueSupplier.java

            static <T> Value<T> ofNullable(@Nullable T value) {
                if (value == null) {
                    return MISSING.asType();
                }
                return new Present<>(value);
            }
    
            static <T> Value<T> missing() {
                return MISSING.asType();
            }
    
            static <T> Value<T> of(T value) {
                if (value == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 20:31:29 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/ResolveArtifactsProgressCrossVersionSpec.groovy

            mavenHttpRepo.module("test", "provider", "1.0")
                .hasPackaging("pom")
                .hasType("pom")
                .dependsOn("test", "other", "1.0")
                .publish()
                .allowAll()
            mavenHttpRepo.module("test", "other", "1.0")
                .hasPackaging("pom")
                .hasType("pom")
                .publish()
                .allowAll()
        }
    
        def expectDownloadOtherTypes() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

                  np.random.uniform(size=bias_shape), dtype=dtypes.float32
              )
    
            self._kernel = np.random.uniform(size=y_shape).astype('f4')
            self._min = (-0.8, -0.8, -0.9)
            self._max = (0.9, 0.9, 1.0)
    
          @def_function.function(
              input_signature=[
                  tensor_spec.TensorSpec(
                      name='x', shape=x_signature, dtype=dtypes.float32
                  )
              ]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  10. src/go/types/operand.go

    		buf.WriteString(" (")
    	}
    
    	// <untyped kind>
    	hasType := false
    	switch x.mode {
    	case invalid, novalue, builtin, typexpr:
    		// no type
    	default:
    		// should have a type, but be cautious (don't crash during printing)
    		if x.typ != nil {
    			if isUntyped(x.typ) {
    				buf.WriteString(x.typ.(*Basic).name)
    				buf.WriteByte(' ')
    				break
    			}
    			hasType = true
    		}
    	}
    
    	// <mode>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
Back to top