Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for blockAsm (0.27 sec)

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

    		// predecessors do not participate in the intersection.  This
    		// means that for the update, given the prior approximation of
    		// startState, there is no need to re-intersect with unchanged
    		// blocks.  Therefore remove unchanged blocks from the
    		// predecessor list.
    		for i := len(preds) - 1; i >= 0; i-- {
    			pred := preds[i]
    			if blockLocs[pred.ID].lastChangedTime > locs.lastCheckedTime {
    				continue // keep this predecessor
    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/rewrite.go

    		return 2
    	}
    	return 1
    }
    
    // mergePoint finds a block among a's blocks which dominates b and is itself
    // dominated by all of a's blocks. Returns nil if it can't find one.
    // Might return nil even if one does exist.
    func mergePoint(b *Block, a ...*Value) *Block {
    	// Walk backward from b looking for one of the a's blocks.
    
    	// Max distance
    	d := 100
    
    	for d > 0 {
    		for _, x := range a {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. cmd/erasure-object.go

    		closeBitrotReaders(readers)
    		if err != nil {
    			// If we have successfully written all the content that was asked
    			// by the client, but we still see an error - this would mean
    			// that we have some parts or data blocks missing or corrupted
    			// - attempt a heal to successfully heal them for future calls.
    			if written == partLength {
    				var scan madmin.HealScanMode
    				switch {
    				case errors.Is(err, errFileNotFound):
    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. pkg/scheduler/internal/queue/scheduling_queue.go

    	// cached by scheduling queue. Normally, incrementing this number whenever
    	// a pod is popped (e.g. called Pop()) is enough.
    	SchedulingCycle() int64
    	// Pop removes the head of the queue and returns it. It blocks if the
    	// queue is empty and waits until a new item is added to the queue.
    	Pop(logger klog.Logger) (*framework.QueuedPodInfo, error)
    	// Done must be called for pod returned by Pop. This allows the queue to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    			defer c.watchCache.waitingUntilFresh.Remove()
    		}
    		err := c.watchCache.waitUntilFreshAndBlock(ctx, requestedWatchRV)
    		defer c.watchCache.RUnlock()
    		return err
    	}
    	return nil
    }
    
    // Wait blocks until the cacher is Ready or Stopped, it returns an error if Stopped.
    func (c *Cacher) Wait(ctx context.Context) error {
    	return c.ready.wait(ctx)
    }
    
    // errWatcher implements watch.Interface to return a single error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        CreateCondFalseBranch(loc, shape_dtype, result_type, else_branch_op,
                              &rewriter);
        else_branch_op.setVisibility(func::FuncOp::Visibility::Private);
    
        // Inserts the two blocks' names into the symbol table held by the module.
        // Using SymbolTable will ensure that the inserted symbol names are
        // unique.
        manager.insert(then_branch_op);
        manager.insert(else_branch_op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64.rules

    (Leq(32|64)F x y) => (FLessEqual (FCMPU x y))
    
    (Leq(8|16)U x y)  => (LessEqual (CMPWU (ZeroExt(8|16)to32 x) (ZeroExt(8|16)to32 y)))
    (Leq(32|64)U x y) => (LessEqual (CMP(WU|U) x y))
    
    // Absorb pseudo-ops into blocks.
    (If (Equal cc) yes no) => (EQ cc yes no)
    (If (NotEqual cc) yes no) => (NE cc yes no)
    (If (LessThan cc) yes no) => (LT cc yes no)
    (If (LessEqual cc) yes no) => (LE cc yes no)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 53.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    This impacted the link:https://github.com/bndtools/bnd/issues/5695[bnd plugin and JUnit5 build].
    
    We recommend not modifying domain objects (configurations, source sets, tasks, etc) from configuration blocks for other domain objects that may not be configured.
    
    For example, avoid doing something like this:
    
    ```kotlin
        configurations {
            val myConfig = create("myConfig")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
Back to top