Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,856 for block1 (0.13 sec)

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

    //
    // We can redirect p to s directly.
    //
    // The implementation here borrows the framework of the prove pass.
    //
    //	1, Traverse all blocks of function f to find If blocks.
    //	2,   For any If block b, traverse all its predecessors to find If blocks.
    //	3,     For any If block predecessor p, update relationship p->b.
    //	4,     Traverse all successors of b.
    //	5,       For any successor s of b, try to update relationship b->s, if a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 21:40:11 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  2. src/testing/cover.go

    	for name, counts := range cover.Counters {
    		blocks := cover.Blocks[name]
    		for i := range counts {
    			stmts := int64(blocks[i].Stmts)
    			total += stmts
    			count = atomic.LoadUint32(&counts[i]) // For -mode=atomic.
    			if count > 0 {
    				active += stmts
    			}
    			if f != nil {
    				_, err := fmt.Fprintf(f, "%s:%d.%d,%d.%d %d %d\n", name,
    					blocks[i].Line0, blocks[i].Col0,
    					blocks[i].Line1, blocks[i].Col1,
    					stmts,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:37:31 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/api/groovy_build_script_primer.adoc

    Both are based on Groovy language features and we explain them in the following sections.
    
    === Block method signatures
    
    You can easily identify a method as the implementation behind a block by its signature, or more specifically, its argument types. If a method corresponds to a block:
    
     * It must have at least one argument.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/check.go

    					bb := s.Block()
    					if ln.b2l[b.ID] == nil && ln.b2l[bb.ID] != nil && bb != ln.b2l[bb.ID].header {
    						f.Fatalf("block %s not in loop branches to non-header block %s in loop", b.String(), bb.String())
    					}
    					if ln.b2l[b.ID] != nil && ln.b2l[bb.ID] != nil && bb != ln.b2l[bb.ID].header && !ln.b2l[b.ID].isWithinOrEq(ln.b2l[bb.ID]) {
    						f.Fatalf("block %s in loop branches to non-header block %s in non-containing loop", b.String(), bb.String())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/model/ClassExtensionDoc.groovy

        }
    
        List<BlockDoc> getExtensionBlocks() {
            List<BlockDoc> blocks = []
            mixinClasses.each { mixin ->
                mixin.classBlocks.each { block ->
                    blocks << block.forClass(targetClass)
                }
            }
            extraBlocks.each { block->
                blocks << block.forClass(targetClass)
            }
            return blocks.sort { it.name }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 2.5K bytes
    - Viewed (0)
  6. src/crypto/cipher/cipher.go

    type Block interface {
    	// BlockSize returns the cipher's block size.
    	BlockSize() int
    
    	// Encrypt encrypts the first block in src into dst.
    	// Dst and src must overlap entirely or not at all.
    	Encrypt(dst, src []byte)
    
    	// Decrypt decrypts the first block in src into dst.
    	// Dst and src must overlap entirely or not at all.
    	Decrypt(dst, src []byte)
    }
    
    // A Stream represents a stream cipher.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:55:33 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/list.go

    	item   *itemBuilder
    	todo   func() line
    }
    
    func (b *listBuilder) build(p buildState) Block {
    	blocks := p.blocks()
    	pos := p.pos()
    
    	// list can have wrong pos b/c extend dance.
    	pos.EndLine = blocks[len(blocks)-1].Pos().EndLine
    Loose:
    	for i, c := range blocks {
    		c := c.(*Item)
    		if i+1 < len(blocks) {
    			if blocks[i+1].Pos().StartLine-c.EndLine > 1 {
    				b.loose = true
    				break Loose
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/InitialPassStatementTransformer.java

            } else {
                seenPluginsBlock = true;
    
                addLineNumberToMethodCall(scriptBlock);
    
                if (seenNonClasspathStatement) {
                    failMessage = String.format(
                        pluginBlockMetadataCompiler.formatErrorMessage("only %s {}, %s {} and other %s {} script blocks are allowed before %s {} blocks, no other statements are allowed"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 19 11:25:50 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssagen/phi.go

    			stk = append(stk, stackEntry{b: c})
    		}
    	}
    }
    
    // domBlock contains extra per-block information to record the dominator tree.
    type domBlock struct {
    	firstChild *ssa.Block // first child of block in dominator tree
    	sibling    *ssa.Block // next child of parent in dominator tree
    }
    
    // A block heap is used as a priority queue to implement the PiggyBank
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 15.2K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/branchelim.go

    	}
    	if !isLeafPlain(no) || len(no.Values) > 1 || !canSpeculativelyExecute(no) {
    		return false
    	}
    	if b.Succs[0].Block().Succs[0].Block() != b.Succs[1].Block().Succs[0].Block() {
    		return false
    	}
    	// block that postdominates the if/else
    	post := b.Succs[0].Block().Succs[0].Block()
    	if len(post.Preds) != 2 || post == b {
    		return false
    	}
    	hasphis := false
    	for _, v := range post.Values {
    		if v.Op == OpPhi {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
Back to top