Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for familyName (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/precommit/LicenseHeadersTask.java

         *
         * @param categoryName A 5-character string identifier for the license
         * @param familyName   An expanded string name for the license
         * @param pattern      A pattern to search for, which if found, indicates a file contains the license
         */
        public void additionalLicense(final String categoryName, String familyName, String pattern) {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Sep 09 18:53:35 GMT 2021
    - 10.6K bytes
    - Click Count (0)
  2. pom.xml

    							</patterns>
    						</license>
    					</licenses>
    					<licenseFamilies>
    						<licenseFamily implementation="org.apache.rat.license.SimpleLicenseFamily">
    							<familyName>GNU Lesser General Public License</familyName>
    						</licenseFamily>
    					</licenseFamilies>
    				</configuration>
    			</plugin>
    			<plugin>
    				<groupId>net.revelc.code.formatter</groupId>
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Mon Aug 25 14:34:10 GMT 2025
    - 12.1K bytes
    - Click Count (0)
  3. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

    val Project.performanceChannel: Provider<String>
        get() = environmentVariable(PERFORMANCE_CHANNEL_ENV).orElse(provider {
            val channelSuffix = if (OperatingSystem.current().isLinux) "" else "-${OperatingSystem.current().familyName.lowercase()}"
            "commits$channelSuffix-${buildBranch.get()}"
         })
    
    val Project.performanceDbPassword: Provider<String>
        get() = environmentVariable(PERFORMANCE_DB_PASSWORD_ENV)
    
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Jan 19 05:13:29 GMT 2026
    - 18K bytes
    - Click Count (0)
Back to Top