Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 63 for Parallel (1.55 sec)

  1. pkg/kubelet/volumemanager/reconciler/reconciler_test.go

    			uniqueTestString := fmt.Sprintf("global-mount-%s", testName)
    			uniquePodDir := fmt.Sprintf("%s-%x", kubeletPodsDir, md5.Sum([]byte(uniqueTestString)))
    			t.Run(testName+"[", func(t *testing.T) {
    				t.Parallel()
    				pv := &v1.PersistentVolume{
    					ObjectMeta: metav1.ObjectMeta{
    						Name: tc.volumeName,
    						UID:  "pvuid",
    					},
    					Spec: v1.PersistentVolumeSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 07:34:33 UTC 2024
    - 75.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

        if (op->hasAttr(kXlaOutsideCompilationAttr)) {
          op->removeAttr(
              StringAttr::get(op->getContext(), kXlaOutsideCompilationAttr));
        }
      });
    }
    
    // The results of parallel executes is the combination of return values from
    // both host and device.
    llvm::SmallVector<Type, 4> GetParallelExecuteResultsTypes(
        ArrayRef<Value> return_value_from_host,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			// By parallelizing test cases we ensure that the order in which test cases are defined
    			// doesn't automatically preclude some scenarios from happening.
    			t.Parallel()
    
    			out := &example.Pod{}
    			err := store.Get(ctx, tt.key, storage.GetOptions{IgnoreNotFound: tt.ignoreNotFound, ResourceVersion: tt.rv}, out)
    			if tt.expectNotFoundErr {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	for i, line := range lines {
    		lines[i] = strings.SplitN(line, "] ", 2)[1]
    	}
    	return lines
    }
    
    func TestGetEncryptionConfigHash(t *testing.T) {
    	t.Parallel()
    
    	tests := []struct {
    		name     string
    		filepath string
    		wantHash string
    		wantErr  string
    	}{
    		{
    			name:     "empty config file content",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  5. gradle/verification-metadata.xml

                <pgp value="91268E187CDC92936DF90106AC01D965C791B637"/>
             </artifact>
          </component>
          <component group="org.scala-lang.modules" name="scala-parallel-collections_2.13" version="0.2.0">
             <artifact name="scala-parallel-collections_2.13-0.2.0.jar">
                <pgp value="C44A68FD10FF456C91E2757D18088D07854014B3"/>
             </artifact>
          </component>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    // necessarily themselves be in "all". (That configuration does not arise in Go
    // 1.11–1.15, but it will be possible in Go 1.16+.)
    //
    // Loading proceeds from the roots, using a parallel work-queue with a limit on
    // the amount of active work (to avoid saturating disks, CPU cores, and/or
    // network connections). Each package is added to the queue the first time it is
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    [[checkstyle_worker_api]]
    ==== Checkstyle tasks use toolchains and execute in parallel by default
    
    The <<checkstyle_plugin.adoc#checkstyle_plugin,Checkstyle plugin>> now uses the Gradle worker API to run Checkstyle as an external worker process.
    Multiple Checkstyle tasks may now run in parallel within a project.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/sidecar_simulation_test.go

    				tt := tt
    				t.Run(tt.name, func(t *testing.T) {
    					if tt.oldestWins {
    						test.SetForTest(t, &features.PersistOldestWinsHeuristicForVirtualServiceHostMatching, true)
    					} else {
    						t.Parallel() // feature flags and parallel tests don't mix
    					}
    					cfg := knownServices
    					for _, tc := range tt.cfg {
    						cfg = cfg + "\n---\n" + tc.Config(t, variant)
    					}
    					istio, k, err := crd.ParseInputs(cfg)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  9. src/runtime/mgc.go

    // license that can be found in the LICENSE file.
    
    // Garbage collector (GC).
    //
    // The GC runs concurrently with mutator threads, is type accurate (aka precise), allows multiple
    // GC thread to run in parallel. It is a concurrent mark and sweep that uses a write barrier. It is
    // non-generational and non-compacting. Allocation is done using size segregated per P allocation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  10. cmd/erasure-object.go

    	metadataShallowVersions := make([][]xlMetaV2ShallowVersion, len(rawFileInfos))
    	var v2bufs [][]byte
    	if !readData {
    		v2bufs = make([][]byte, len(rawFileInfos))
    	}
    
    	// Read `xl.meta` in parallel across disks.
    	for index := range rawFileInfos {
    		rf := rawFileInfos[index]
    		if rf.Buf == nil {
    			continue
    		}
    		if !readData {
    			// Save the buffer so we can reuse it.
    			v2bufs[index] = rf.Buf
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
Back to top