Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 51 - 60 of 295 for paralela (0.06 seconds)

  1. docs/ja/docs/async.md

    <img src="/img/async/parallel-burgers/parallel-burgers-04.png" class="illustration">
    
    長い時間 🕙 カウンター前で待った後、ようやくレジ係/料理人 👨‍🍳 がハンバーガーを持って戻ってきます。
    
    <img src="/img/async/parallel-burgers/parallel-burgers-05.png" class="illustration">
    
    ハンバーガーを受け取り、好きな人とテーブルに行きます。
    
    食べて、おしまいです。⏹
    
    <img src="/img/async/parallel-burgers/parallel-burgers-06.png" class="illustration">
    
    ほとんどの時間をカウンター前で待つ 🕙 のに費やしたため、あまり話したり、いちゃついたりできませんでした。😞
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 27.9K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/math/StatsTesting.java

      /**
       * Returns a stream of a million primitive doubles. The stream is parallel, which should cause
       * {@code collect} calls to run in multithreaded mode, so testing the combiner as well as the
       * supplier and accumulator.
       */
      static DoubleStream megaPrimitiveDoubleStream() {
        return DoubleStream.iterate(0.0, x -> x + 1.0).limit(MEGA_STREAM_COUNT).parallel();
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 03 05:21:26 GMT 2026
    - 24K bytes
    - Click Count (0)
  3. .ci/scripts/packaging-test.sh

      RUNTIME_JAVA_HOME=`readlink -f -n $RUNTIME_JAVA_HOME` \
      --unset=ES_JAVA_HOME \
      --unset=JAVA_HOME \
      SYSTEM_JAVA_HOME=`readlink -f -n $RUNTIME_JAVA_HOME` \
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 2.3K bytes
    - Click Count (0)
  4. internal/dsync/drwmutex_test.go

    	runtime.GOMAXPROCS(gomaxprocs)
    	m := NewDRWMutex(ds, "test-parallel")
    
    	clocked := make(chan bool)
    	cunlock := make(chan bool)
    	cdone := make(chan bool)
    	for range numReaders {
    		go parallelReader(context.Background(), m, clocked, cunlock, cdone)
    	}
    	// Wait for all parallel RLock()s to succeed.
    	for range numReaders {
    		<-clocked
    	}
    	for range numReaders {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 9.4K bytes
    - Click Count (0)
  5. architecture/standards/0010-gradle-properties-naming.md

    * `org.gradle.internal.operations.trace` – internal property
    * `org.gradle.configuration-cache` – public property of a stable feature
    * `org.gradle.configuration-cache.parallel` – public property of an unstable feature
    * `org.gradle.configuration-cache.internal.parallel-store` – internal property
    * `org.gradle.unsafe.isolated-projects` — public property of an unstable feature
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 06 09:25:54 GMT 2026
    - 8K bytes
    - Click Count (0)
  6. cmd/erasure-decode.go

    package cmd
    
    import (
    	"context"
    	"errors"
    	"fmt"
    	"io"
    	"sync"
    	"sync/atomic"
    
    	xioutil "github.com/minio/minio/internal/ioutil"
    )
    
    // Reads in parallel from readers.
    type parallelReader struct {
    	readers       []io.ReaderAt
    	orgReaders    []io.ReaderAt
    	dataBlocks    int
    	offset        int64
    	shardSize     int64
    	shardFileSize int64
    	buf           [][]byte
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Thu Aug 29 01:40:52 GMT 2024
    - 9.5K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/GradleDistroTestTask.java

            line.append(" --project-cache-dir ");
            line.append(isWindows ? convertWindowsPath(getProject(), cacheDir) : convertLinuxPath(getProject(), cacheDir));
            line.append(" -S");
            line.append(" --parallel");
            line.append(" -D'org.gradle.logging.level'=" + getProject().getGradle().getStartParameter().getLogLevel());
            if (testClass != null) {
                line.append(" --tests=");
                line.append(testClass);
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 2.6K bytes
    - Click Count (0)
  8. docs/bigdata/README.md

    fs.s3a.connection.maximum=8192 # Maximum number of concurrent conns
    fs.s3a.fast.upload.active.blocks=2048 # Number of parallel uploads
    fs.s3a.fast.upload.buffer=disk # Use disk as the buffer for uploads
    fs.s3a.fast.upload=true # Turn on fast upload mode
    fs.s3a.max.total.tasks=2048 # Maximum number of parallel tasks
    fs.s3a.multipart.size=512M # Size of each multipart chunk
    fs.s3a.multipart.threshold=512M # Size before using multipart uploads
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 14.7K bytes
    - Click Count (0)
  9. docs/uk/llm-prompt.md

    - request (HTTP): запит
    - response (HTTP): відповідь
    - path operation: операція шляху
    - path operation function: функція операції шляху
    - prompt: підсказка
    - check: перевірка
    - Parallel Server Gateway Interface: Інтерфейс Шлюзу Паралельного Сервера
    - Mozilla Developer Network: Мережа Розробників Mozilla
    - tutorial: навчальний посібник
    - advanced user guide: просунутий посібник користувача
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 04 16:47:51 GMT 2026
    - 4K bytes
    - Click Count (0)
  10. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

                        session.getRequest().getDegreeOfConcurrency(),
                        session.getProjects().size());
                boolean parallel = nThreads > 1;
                // Propagate the parallel flag to the root session
                session.setParallel(parallel);
    
                ProjectDependencyGraph dependencyGraph = session.getProjectDependencyGraph();
                MavenProject rootProject = session.getTopLevelProject();
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Oct 16 06:12:36 GMT 2025
    - 55.1K bytes
    - Click Count (0)
Back to Top