Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for multiplexed (0.3 sec)

  1. staging/src/k8s.io/api/networking/v1/types.go

    	// tls represents the TLS configuration. Currently the Ingress only supports a
    	// single TLS port, 443. If multiple members of this list specify different hosts,
    	// they will be multiplexed on the same port according to the hostname specified
    	// through the SNI TLS extension, if the ingress controller fulfilling the
    	// ingress supports SNI.
    	// +listType=atomic
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. pilot/pkg/bootstrap/server.go

    		s.httpServer.Handler = multiplexHandler
    	}
    
    	if args.ServerOptions.MonitoringAddr == "" {
    		s.monitoringMux = s.httpMux
    		log.Infof("initializing Istiod admin server multiplexed on httpAddr %v", s.httpServer.Addr)
    	} else {
    		log.Info("initializing Istiod admin server")
    	}
    }
    
    // initIstiodAdminServer initializes monitoring, debug and readiness end points.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authentication/v1/types.go

    	ImpersonateUserHeader = "Impersonate-User"
    
    	// ImpersonateGroupHeader is used to impersonate a particular group during an API server request.
    	// It can be repeated multiplied times for multiple groups.
    	ImpersonateGroupHeader = "Impersonate-Group"
    
    	// ImpersonateUIDHeader is used to impersonate a particular UID during an API server request
    	ImpersonateUIDHeader = "Impersonate-Uid"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  4. security/pkg/nodeagent/sds/sdsservice.go

    			// However, here it makes sense, because we are generally streaming a single resource,
    			// so sending an error will not cause a single failure to prevent the entire multiplex stream
    			// of resources, and failures here are generally due to temporary networking issues to the CA
    			// rather than a result of configuration issues, which trigger updates in Istiod when resolved.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 25 00:20:04 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/utils/xla_sharding_util.cc

        const auto& output_sharding =
            output_sharding_config[tpu_cluster_output_index];
        const auto output_sharding_type = output_sharding.type();
    
        // If output is demultiplexed using the `tf.TPUPartitionedOutputV2` op, only
        // replicated sharding is supported where i-th output of
        // `tf.TPUPartitionedOutputV2` op maps to the output of i-th logical device.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 21:28:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  6. src/runtime/metrics/doc.go

    		this is computed as GOMAXPROCS times the pause latency because
    		nothing else can be executing. This is the exact sum of samples
    		in /sched/pauses/total/gc:seconds if each sample is multiplied
    		by GOMAXPROCS at the time it is taken. This metric is an
    		overestimate, and not directly comparable to system CPU time
    		measurements. Compare only with other /cpu/classes metrics.
    
    	/cpu/classes/gc/total:cpu-seconds
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  7. pkg/generated/openapi/zz_generated.openapi.go

    						},
    						SchemaProps: spec.SchemaProps{
    							Description: "TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.",
    							Type:        []string{"array"},
    							Items: &spec.SchemaOrArray{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  8. cmd/data-scanner.go

    func (d *dynamicSleeper) Timer(ctx context.Context) func() {
    	t := time.Now()
    	return func() {
    		doneAt := time.Now()
    		d.Sleep(ctx, doneAt.Sub(t))
    	}
    }
    
    // Sleep sleeps the specified time multiplied by the sleep factor.
    // If the factor is updated the sleep will be done again with the new factor.
    func (d *dynamicSleeper) Sleep(ctx context.Context, base time.Duration) {
    	for {
    		// Grab current values
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  9. src/math/big/nat.go

    // Like karatsubaAdd, but does subtract.
    func karatsubaSub(z, x nat, n int) {
    	if c := subVV(z[0:n], z, x); c != 0 {
    		subVW(z[n:n+n>>1], z[n:], c)
    	}
    }
    
    // Operands that are shorter than karatsubaThreshold are multiplied using
    // "grade school" multiplication; for longer operands the Karatsuba algorithm
    // is used.
    var karatsubaThreshold = 40 // computed by calibrate_test.go
    
    // karatsuba multiplies x and y and leaves the result in z.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    	// pointer bitmap for objects of a size smaller than this doesn't cross
    	// more than one pointer-word boundary. This sets an upper-bound on this
    	// value at the number of bits in a uintptr, multiplied by the pointer
    	// size in bytes.
    	//
    	// We choose a value here that has a natural cutover point in terms of memory
    	// overheads. This value just happens to be the maximum possible value this
    	// can be.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top