Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnectionPool.kt

          // In the first synchronized block, acquire the connection if it can satisfy this call.
          val acquired =
            connection.withLock {
              when {
                requireMultiplexed && !connection.isMultiplexed -> false
                !connection.isEligible(address, routes) -> false
                else -> {
                  connectionUser.acquireConnectionNoEvents(connection)
                  true
                }
              }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 16.2K 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. android/guava/src/com/google/common/math/Stats.java

       * following constraints. This is the callers responsibility and is not enforced here.
       *
       * <ul>
       *   <li>If {@code count} is 0, {@code mean} may have any finite value (its only usage will be to
       *       get multiplied by 0 to calculate the sum), and the other parameters may have any values
       *       (they will not be used).
       *   <li>If {@code count} is 1, {@code sumOfSquaresOfDeltas} must be exactly 0.0 or {@link
       *       Double#NaN}.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 22K bytes
    - Viewed (0)
Back to top