Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for familyName (0.11 sec)

  1. 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>
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Mon Aug 25 14:34:10 UTC 2025
    - 12.1K bytes
    - Viewed (0)
  2. 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)
    
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Dec 18 22:01:30 UTC 2025
    - 17.7K bytes
    - Viewed (0)
Back to top