Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for preds (0.13 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    		// predecessor list.
    		for i := len(preds) - 1; i >= 0; i-- {
    			pred := preds[i]
    			if blockLocs[pred.ID].lastChangedTime > locs.lastCheckedTime {
    				continue // keep this predecessor
    			}
    			preds[i] = preds[len(preds)-1]
    			preds = preds[:len(preds)-1]
    			if state.loggingLevel > 2 {
    				state.logf("Pruned b%d, lastChanged was %d but b%d lastChecked is %d\n", pred.ID, blockLocs[pred.ID].lastChangedTime, b.ID, locs.lastCheckedTime)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/prove.go

    		for ; pred != nil; pred, child = uniquePred(pred), pred {
    			if pred.Kind != BlockIf {
    				continue
    			}
    			control := pred.Controls[0]
    
    			br := unknown
    			if pred.Succs[0].b == child {
    				br = positive
    			}
    			if pred.Succs[1].b == child {
    				if br != unknown {
    					continue
    				}
    				br = negative
    			}
    			if br == unknown {
    				continue
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/regalloc.go

    					if opcodeTable[v.Op].commutative {
    						desired.addList(v.Args[1].ID, prefs)
    					}
    					desired.addList(v.Args[0].ID, prefs)
    				}
    			}
    
    			// For each predecessor of b, expand its list of live-at-end values.
    			// invariant: live contains the values live at the start of b (excluding phi inputs)
    			for i, e := range b.Preds {
    				p := e.b
    				// Compute additional distance for the edge.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    	// Max distance
    	d := 100
    
    	for d > 0 {
    		for _, x := range a {
    			if b == x.Block {
    				goto found
    			}
    		}
    		if len(b.Preds) > 1 {
    			// Don't know which way to go back. Abort.
    			return nil
    		}
    		b = b.Preds[0].b
    		d--
    	}
    	return nil // too far away
    found:
    	// At this point, r is the first value in a that we find by walking backwards.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/deadness_analysis.cc

      }
    
      Predicate* MakeNotPredicate(Predicate* pred) {
        auto it = make_not_predicate_cache_.find(pred);
        if (it != make_not_predicate_cache_.end()) {
          return it->second;
        }
    
        Predicate* result = MakeNotPredicateImpl(pred);
    
        bool insert_successful =
            make_not_predicate_cache_.insert({pred, result}).second;
        (void)insert_successful;
        DCHECK(insert_successful);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  6. cmd/sts-handlers_test.go

    	})
    	if err != nil {
    		c.Fatalf("Error initializing client: %v", err)
    	}
    
    	// Validate that the client from sts creds can access the bucket.
    	c.mustListObjects(ctx, minioClient, bucket)
    
    	// Create an madmin client with user creds
    	userAdmClient, err := madmin.NewWithOptions(s.endpoint, &madmin.Options{
    		Creds:  cr.NewStaticV4(value.AccessKeyID, value.SecretAccessKey, value.SessionToken),
    		Secure: s.secure,
    	})
    	if err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			if ignoreWatchCacheTests && tt.ignoreForWatchCache {
    				t.Skip()
    			}
    
    			if tt.pred.GetAttrs == nil {
    				tt.pred.GetAttrs = getAttrs
    			}
    
    			out := &example.PodList{}
    			storageOpts := storage.ListOptions{
    				ResourceVersion:      tt.rv,
    				ResourceVersionMatch: tt.rvMatch,
    				Predicate:            tt.pred,
    				Recursive:            true,
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/convert_control_to_data_outputs.mlir

      %graph = tf_executor.graph {
        %island, %ctrl = tf_executor.island {
          %pred = "tf.SomeOp"(%arg2) : (tensor<f32>) -> tensor<i32>
          tf_executor.yield %pred : tensor<i32>
        }
        tf_executor.fetch %island : tensor<i32>
      }
      func.return %graph : tensor<i32>
    }
    
    // CHECK-LABEL:   func @simple_independent_chains
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 18:35:00 UTC 2024
    - 68.9K bytes
    - Viewed (0)
  9. cmd/batch-handlers.go

    	if err := r.Source.Snowball.Validate(); err != nil {
    		return err
    	}
    
    	if !r.Source.Creds.Empty() {
    		if err := r.Source.Creds.Validate(); err != nil {
    			return err
    		}
    	}
    	if r.Target.Endpoint == "" && !r.Target.Creds.Empty() {
    		return errInvalidArgument
    	}
    
    	if r.Source.Endpoint == "" && !r.Source.Creds.Empty() {
    		return errInvalidArgument
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    func shouldDelegateListOnNotReadyCache(opts storage.ListOptions) bool {
    	pred := opts.Predicate
    	noLabelSelector := pred.Label == nil || pred.Label.Empty()
    	noFieldSelector := pred.Field == nil || pred.Field.Empty()
    	hasLimit := pred.Limit > 0
    	return noLabelSelector && noFieldSelector && hasLimit
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top