Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for emptyBlock (0.23 sec)

  1. platforms/documentation/docs/src/snippets/mavenMigration/basic/common/checkstyle.xml

    <?xml version="1.0"?>
    <!DOCTYPE module PUBLIC "-//Puppy Crawl//DTD Check Configuration 1.3//EN" "http://www.puppycrawl.com/dtds/configuration_1_3.dtd">
    <module name="Checker">
        <module name="TreeWalker">
            <module name="EmptyBlock"/>
        </module>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 267 bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/trim.go

    	if n < len(f.Blocks) {
    		f.invalidateCFG()
    		tail := f.Blocks[n:]
    		for i := range tail {
    			tail[i] = nil
    		}
    		f.Blocks = f.Blocks[:n]
    	}
    }
    
    // emptyBlock reports whether the block does not contain actual
    // instructions.
    func emptyBlock(b *Block) bool {
    	for _, v := range b.Values {
    		if v.Op != OpPhi {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/ant/useExternalAntTask/common/checkstyle.xml

    <module name="Checker">
        <module name="TreeWalker">
            <module name="AvoidStarImport"/>
            <module name="ConstantName"/>
            <module name="EmptyBlock"/>
        </module>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 346 bytes
    - Viewed (0)
  4. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

        <module name="TreeWalker">
            <!-- Blocks -->
            <module name="EmptyBlock">
                <property name="option" value="statement"/>
                <property name="tokens" value="LITERAL_DO,LITERAL_ELSE,LITERAL_FINALLY,LITERAL_IF,LITERAL_FOR,LITERAL_TRY,LITERAL_WHILE,INSTANCE_INIT,STATIC_INIT"/>
            </module>
            <module name="EmptyBlock">
                <property name="option" value="text"/>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:16 UTC 2022
    - 6.3K bytes
    - Viewed (0)
Back to top