Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 87 for multiplexed (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/secure_serving.go

    	// This should be big enough to accommodate most API POST requests in a single frame,
    	// and small enough to allow a per connection buffer of this size multiplied by `MaxConcurrentStreams`.
    	const resourceBody99Percentile = 256 * 1024
    
    	http2Options := &http2.Server{
    		IdleTimeout: 90 * time.Second, // matches http.DefaultTransport keep-alive timeout
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 20:54:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

        <glob pattern="*.qps"/>
      </mime-type>
      <mime-type type="application/vnd.pvi.ptid1">
        <glob pattern="*.ptid"/>
      </mime-type>
      <mime-type type="application/vnd.pwg-multiplexed"/>
      <mime-type type="application/vnd.pwg-xhtml-print+xml"/>
      <mime-type type="application/vnd.qualcomm.brew-app-res"/>
      <mime-type type="application/vnd.quark.quarkxpress">
        <glob pattern="*.qxd"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  3. maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java

            options.addOption(Option.builder(THREADS)
                    .longOpt("threads")
                    .hasArg()
                    .desc("Thread count, for instance 4 (int) or 2C/2.5C (int/float) where C is core multiplied")
                    .build());
            options.addOption(Option.builder(BUILDER)
                    .longOpt("builder")
                    .hasArg()
                    .desc("The id of the build strategy to use")
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/cel_validation.go

    // accessor optionally provides a way to access CELTypeInfo of the child from the current schema context's CELTypeInfo.
    // childContext returns a CELSchemaContext where the MaxCardinality is multiplied by the
    // factor that the schema increases the cardinality of its children. If the CELSchemaContext's
    // MaxCardinality is unbounded (nil) or the factor that the schema increase the cardinality
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 10 22:05:55 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/util/wait/backoff.go

    	"k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/utils/clock"
    )
    
    // Backoff holds parameters applied to a Backoff function.
    type Backoff struct {
    	// The initial duration.
    	Duration time.Duration
    	// Duration is multiplied by factor each iteration, if factor is not zero
    	// and the limits imposed by Steps and Cap have not been reached.
    	// Should not be negative.
    	// The jitter does not contribute to the updates to the duration parameter.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 19:14:11 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  6. test/chan/powser1.go

    			if end(get(VV[0])) != 0 {
    				put(finis, Z)
    			} else {
    				copy(Mul(VV[0], Subst(U, VV[1])), Z)
    			}
    		}
    	}()
    	return Z
    }
    
    // Monomial Substitution: U(c x^n)
    // Each Ui is multiplied by c^i and followed by n-1 zeros
    
    func MonSubst(U PS, c0 rat, n int) PS {
    	Z := mkPS()
    	go func() {
    		c := one
    		for {
    			<-Z.req
    			u := get(U)
    			Z.dat <- mul(u, c)
    			c = mul(c, c0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 12.7K bytes
    - Viewed (0)
  7. test/chan/powser2.go

    			if end(get(VV[0])) != 0 {
    				put(finis, Z)
    			} else {
    				copy(Mul(VV[0], Subst(U, VV[1])), Z)
    			}
    		}
    	}(U, V, Z)
    	return Z
    }
    
    // Monomial Substitution: U(c x^n)
    // Each Ui is multiplied by c^i and followed by n-1 zeros
    
    func MonSubst(U PS, c0 *rat, n int) PS {
    	Z := mkPS()
    	go func(U, Z PS, c0 *rat, n int) {
    		c := one
    		for {
    			<-Z.req
    			u := get(U)
    			Z.dat <- mul(u, c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 25 22:22:20 UTC 2020
    - 13.3K bytes
    - Viewed (0)
  8. src/runtime/metrics/description.go

    			"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.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  9. 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)
  10. src/image/draw/draw.go

    	for ; y != yMax; y, sy = y+1, sy+1 {
    		dpix := dst.Pix[y*dst.Stride:]
    		spix := src.Pix[sy*src.Stride:]
    
    		for i, si := i0, si0; i < i1; i, si = i+4, si+4 {
    			// Convert from non-premultiplied color to pre-multiplied color.
    			s := spix[si : si+4 : si+4] // Small cap improves performance, see https://golang.org/issue/27857
    			sa := uint32(s[3]) * 0x101
    			sr := uint32(s[0]) * sa / 0xff
    			sg := uint32(s[1]) * sa / 0xff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top