Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for checkStyle (0.12 sec)

  1. compat/maven-model-builder/pom.xml

      <description>The effective model builder, with inheritance, profile activation, interpolation, ...</description>
    
      <properties>
        <!-- in: DefaultModelValidator, DefaultModelBuilder -->
        <checkstyle.violation.ignore>FileLength</checkstyle.violation.ignore>
      </properties>
    
      <dependencies>
        <dependency>
          <groupId>org.apache.maven</groupId>
          <artifactId>maven-api-core</artifactId>
        </dependency>
        <dependency>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  2. architecture/standards/0006-use-of-provider-apis-in-gradle.md

    plugin, so following best practices is relatively straightforward.  For core plugins in gradle/gradle, it's easy for an object to be created without applying its associated plugin. For instance, Spring has a plugin that uses the Checkstyle task directly without applying the Checkstyle plugin.
    
    Until we can provide the same guarantees for core plugins, we need to be more conservative for existing classes and not follow best practices. This means conventions need to be set in both a plugin and the...
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Oct 15 20:00:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. internal/hash/checksum.go

    			}
    		}
    		return t, s
    	}
    	checkType := func(c ChecksumType) {
    		if got := h.Get(c.Key()); got != "" {
    			// If already set, invalid
    			if t != ChecksumNone {
    				t = ChecksumInvalid
    				s = ""
    			} else {
    				t = c
    				s = got
    			}
    			return
    		}
    	}
    	checkType(ChecksumCRC32)
    	checkType(ChecksumCRC32C)
    	checkType(ChecksumSHA1)
    	checkType(ChecksumSHA256)
    	return t, s
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 19 12:59:07 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top