Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for UnusedImports (0.16 sec)

  1. platforms/documentation/docs/src/samples/templates/precompiled-script-plugin-utils/src/main/resources/checkstyle.xml

    <!DOCTYPE module PUBLIC "-//Checkstyle//DTD Checkstyle Configuration 1.3//EN" "https://checkstyle.org/dtds/configuration_1_3.dtd">
    <module name="Checker">
        <module name="TreeWalker">
            <module name="UnusedImports" />
            <module name="AvoidStarImport" />
            <module name="ConstantName" />
            <module name="NeedBraces" />
            <module name="RightCurly" />
            <module name="ModifierOrder">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 555 bytes
    - Viewed (0)
  2. build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle.xml

            <!-- Design -->
            <!--
            <module name="InterfaceIsType"/>
            -->
    
            <!-- Imports -->
            <module name="RedundantImport"/>
            <module name="UnusedImports"/>
            <module name="IllegalImport">
                <!--
                    We shouldn't use jdk.internal types.
                    
                    com.beust and org.testng.collections has classes that look like Guava.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 16 22:05:16 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  3. src/go/types/check.go

    	print("== cleanup ==")
    	check.cleanup()
    
    	print("== initOrder ==")
    	check.initOrder()
    
    	if !check.conf.DisableUnusedImportCheck {
    		print("== unusedImports ==")
    		check.unusedImports()
    	}
    
    	print("== recordUntyped ==")
    	check.recordUntyped()
    
    	if check.firstErr == nil {
    		// TODO(mdempsky): Ensure monomorph is safe when errors exist.
    		check.monomorph()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/check.go

    	print("== cleanup ==")
    	check.cleanup()
    
    	print("== initOrder ==")
    	check.initOrder()
    
    	if !check.conf.DisableUnusedImportCheck {
    		print("== unusedImports ==")
    		check.unusedImports()
    	}
    
    	print("== recordUntyped ==")
    	check.recordUntyped()
    
    	if check.firstErr == nil {
    		// TODO(mdempsky): Ensure monomorph is safe when errors exist.
    		check.monomorph()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/resolver.go

    func (a inSourceOrder) Less(i, j int) bool { return a[i].order() < a[j].order() }
    func (a inSourceOrder) Swap(i, j int)      { a[i], a[j] = a[j], a[i] }
    
    // unusedImports checks for unused imports.
    func (check *Checker) unusedImports() {
    	// If function bodies are not checked, packages' uses are likely missing - don't check.
    	if check.conf.IgnoreFuncBodies {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. src/go/types/resolver.go

    func (a inSourceOrder) Less(i, j int) bool { return a[i].order() < a[j].order() }
    func (a inSourceOrder) Swap(i, j int)      { a[i], a[j] = a[j], a[i] }
    
    // unusedImports checks for unused imports.
    func (check *Checker) unusedImports() {
    	// If function bodies are not checked, packages' uses are likely missing - don't check.
    	if check.conf.IgnoreFuncBodies {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top