Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 51 for Parallel (0.2 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/cmd/link/internal/ld/dwarf.go

    	// Cache these type symbols, so as to avoid repeatedly looking them up
    	typeRuntimeEface loader.Sym
    	typeRuntimeIface loader.Sym
    	uintptrInfoSym   loader.Sym
    
    	// Used at various points in that parallel portion of DWARF gen to
    	// protect against conflicting updates to globals (such as "gdbscript")
    	dwmu *sync.Mutex
    }
    
    // dwSym wraps a loader.Sym; this type is meant to obey the interface
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    Configuration time will still be spent the first time you run a particular set of tasks.
    However, you should see build performance improvement immediately because <<#config_cache:intro:performance_improvements,tasks will run in parallel>>.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go

    	mutex sync.Mutex
    
    	// The indices of all claims that:
    	// - are allocated
    	// - use delayed allocation or the builtin controller
    	// - were not available on at least one node
    	//
    	// Set in parallel during Filter, so write access there must be
    	// protected by the mutex. Used by PostFilter.
    	unavailableClaims sets.Set[int]
    
    	informationsForClaim []informationForClaim
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 15:22:37 UTC 2024
    - 75.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        string dst_func_id;
        TF_RETURN_IF_ERROR(GetFunctionNameAttr(edge->dst(), &dst_func_id));
    
        // Ignore edges that are strictly contained within one subgraph, unless
        // we are constructing parallel check graphs.
        if (IsInSubgraph(src_func_id) && IsInSubgraph(dst_func_id) &&
            src_func_id == dst_func_id) {
          continue;
        }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go

    						}
    
    						if denyNotFound {
    							name = name + "DenyNotFound"
    						} else {
    							name = name + "AllowNotFound"
    						}
    
    						t.Run(name, func(t *testing.T) {
    							t.Parallel()
    							// Test creating a policy with a cluster or namesapce-scoped param
    							// and binding with the provided configuration. Test will ensure
    							// that the provided configuration is capable of matching
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 25 01:39:01 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      // on GPU1. However, it should not be clustered with the previous node on
      // GPU1, because that will serialize production of its inputs that should be
      // done in parallel.
      //
      // This graph is:
      // (Const0, Const0) -> MatMul0
      // (Const1, Const1) -> MatMul1
      // (MatMul0, MatMul1) -> MatMulCombined
      //
      // Device0: [Const0, Const0, MatMul0]
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	}
    
    	// Convert map to list.
    	var result []*kubecontainer.Pod
    	for _, pod := range pods {
    		result = append(result, pod)
    	}
    
    	// There are scenarios where multiple pods are running in parallel having
    	// the same name, because one of them have not been fully terminated yet.
    	// To avoid unexpected behavior on container name based search (for example
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top