Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 115 of 115 for chain (0.24 sec)

  1. src/cmd/go/internal/modget/get.go

    //
    // We skip missing-package errors earlier in the process, since we want to
    // resolve pathSets ourselves, but at that point, we don't have enough context
    // to log the package-import chains leading to each error.
    func (r *resolver) checkPackageProblems(ctx context.Context, pkgPatterns []string) {
    	defer base.ExitIfErrors()
    
    	// Gather information about modules we might want to load retractions and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. pilot/pkg/model/push_context.go

    }
    
    func (ps *PushContext) concurrentConvertToSidecarScope(sidecarConfigs []config.Config) {
    	type taskItem struct {
    		idx int
    		cfg config.Config
    	}
    
    	var wg sync.WaitGroup
    	taskItems := make(chan taskItem)
    	sidecarScopes := make([]*SidecarScope, len(sidecarConfigs))
    	for i := 0; i < features.ConvertSidecarScopeConcurrency; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			for {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	key, _ := testPropagateStore(ctx, t, store, &example.Pod{ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "test-ns"}})
    
    	errChan := make(chan error, 1)
    	var firstToFinish sync.WaitGroup
    	var secondToEnter sync.WaitGroup
    	firstToFinish.Add(1)
    	secondToEnter.Add(1)
    
    	go func() {
    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. src/cmd/link/internal/ld/lib.go

    		}
    	}
    }
    
    // hostobjCopy creates a copy of the object files in hostobj in a
    // temporary directory.
    func (ctxt *Link) hostobjCopy() (paths []string) {
    	var wg sync.WaitGroup
    	sema := make(chan struct{}, runtime.NumCPU()) // limit open file descriptors
    	for i, h := range hostobj {
    		h := h
    		dst := filepath.Join(*flagTmpdir, fmt.Sprintf("%06d.o", i))
    		paths = append(paths, dst)
    		if ctxt.Debugvlog != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    and therefore should be independent. Note that the `NoOp`s are considered
    as intermediate ops for control dependency grouping.
    ### `-tf-executor-convert-control-to-data-outputs`
    
    _Chain control outputs of while loop body_
    
    This pass converts the control outputs of a while loop body function to data
    outputs. Thus, inter iteration control dependencies are transformed to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
Back to top