Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 511 for parallels (0.16 sec)

  1. src/cmd/vendor/golang.org/x/tools/internal/facts/facts.go

    //
    // The serial format is unspecified and may change, so the same version
    // of this package must be used for reading and writing serialized facts.
    //
    // The handling of facts in the analysis system parallels the handling
    // of type information in the compiler: during compilation of package P,
    // the compiler emits an export data file that describes the type of
    // every object (named thing) defined in package P, plus every object
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation.go

    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    	"k8s.io/apiserver/pkg/warning"
    	"k8s.io/klog/v2"
    	"k8s.io/utils/ptr"
    
    	celconfig "k8s.io/apiserver/pkg/apis/cel"
    )
    
    // Validator parallels the structure of schema.Structural and includes the compiled CEL programs
    // for the x-kubernetes-validations of each schema node.
    type Validator struct {
    	Items                *Validator
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 32.2K bytes
    - Viewed (0)
  3. src/debug/elf/file.go

    			need[ndx] = verneed{file, name}
    			if next == 0 {
    				break
    			}
    			j += int(next)
    		}
    
    		if next == 0 {
    			break
    		}
    		i += int(next)
    	}
    
    	// Versym parallels symbol table, indexing into verneed.
    	vs := f.SectionByType(SHT_GNU_VERSYM)
    	if vs == nil {
    		return false
    	}
    	d, _ = vs.Data()
    
    	f.gnuNeed = need
    	f.gnuVersym = d
    	return true
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/performance/parallel-task-fast.png

    parallel-task-fast.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/img/performance/parallel-task-slow.png

    parallel-task-slow.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  6. docs/es/docs/async.md

    <img src="https://fastapi.tiangolo.com/img/async/parallel-burgers/parallel-burgers-01.png" alt="illustration">
    
    Entonces finalmente es tu turno, haces tu pedido de 2 hamburguesas ๐Ÿ” impresionantes para esa persona ๐Ÿ˜ y para ti.
    
    Pagas ๐Ÿ’ธ.
    
    <img src="https://fastapi.tiangolo.com/img/async/parallel-burgers/parallel-burgers-02.png" alt="illustration">
    
    El cajero va a la cocina ๐Ÿ‘จโ€๐Ÿณ.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  7. docs/de/docs/async.md

    <img src="/img/async/parallel-burgers/parallel-burgers-01.png" class="illustration">
    
    Dann sind Sie endlich an der Reihe und bestellen zwei sehr leckere Burger fรผr Ihren Schwarm und Sie.
    
    Sie zahlen ๐Ÿ’ธ.
    
    <img src="/img/async/parallel-burgers/parallel-burgers-02.png" class="illustration">
    
    Der Kassierer geht in die Kรผche.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:06:16 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  8. docs/en/docs/async.md

    <img src="/img/async/parallel-burgers/parallel-burgers-01.png" class="illustration">
    
    Then it's finally your turn, you place your order of 2 very fancy burgers for your crush and you.
    
    You pay ๐Ÿ’ธ.
    
    <img src="/img/async/parallel-burgers/parallel-burgers-02.png" class="illustration">
    
    The cashier goes to the kitchen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  9. tests/integration/README.md

                // ...
            }
    }
    ```
    
    Under the hood, this relies on Go's `t.Parallel()` and will, therefore, have the same behavior.
    
    A parallel test will run in parallel with siblings that share the same parent test. The parent test function
    will exit before the parallel children are executed. It should be noted that if the parent test is prevented
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformIntegrationTest.groovy

                }
            """)
            file('src/test/java/org/gradle/Tests.java') << """
                package org.gradle;
    
                import java.util.concurrent.*;
                import org.junit.jupiter.api.*;
                import org.junit.jupiter.api.parallel.*;
                import static org.junit.jupiter.api.Assertions.*;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
Back to top