- Sort Score
- Num 10 results
- Language All
Results 1 - 7 of 7 for environmentVariable (0.08 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt
fun Project.environmentVariable(propertyName: String) = providers.environmentVariable(propertyName) fun Project.propertyFromAnySource(propertyName: String) = gradleProperty(propertyName) .orElse(systemProperty(propertyName)) .orElse(environmentVariable(propertyName)) val Project.buildBranch: Provider<String>
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Dec 18 22:01:30 GMT 2025 - 17.7K bytes - Click Count (0) -
build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/androidhomewarmup/AndroidHomeWarmupTask.kt
abstract val execOperations: ExecOperations @get:Optional @get:Input val androidHome: Provider<String> = project.providers.environmentVariable("ANDROID_HOME") @get:Optional @get:Input val androidSdkRoot: Provider<String> = project.providers.environmentVariable("ANDROID_SDK_ROOT") @TaskAction fun warmup() { if (!androidHome.isPresent && !androidSdkRoot.isPresent) {Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Dec 09 09:24:29 GMT 2025 - 5.8K bytes - Click Count (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts
} } val pgpSigningKey: Provider<String> = providers.environmentVariable("PGP_SIGNING_KEY") val signArtifacts: Boolean = !pgpSigningKey.orNull.isNullOrEmpty() tasks.withType<Sign>().configureEach { isEnabled = signArtifacts } signing { useInMemoryPgpKeys( project.providers.environmentVariable("PGP_SIGNING_KEY").orNull, project.providers.environmentVariable("PGP_SIGNING_KEY_PASSPHRASE").orNull )
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Oct 30 16:56:31 GMT 2025 - 5.7K bytes - Click Count (0) -
docs/en/docs/environment-variables.md
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sun Aug 31 09:15:41 GMT 2025 - 8.1K bytes - Click Count (0) -
docs/pt/docs/environment-variables.md
## Conclusão { #conclusion } Com isso, você deve ter uma compreensão básica do que são **variáveis de ambiente** e como usá-las em Python. Você também pode ler mais sobre elas na <a href="https://en.wikipedia.org/wiki/Environment_variable" class="external-link" target="_blank">Wikipedia para Variáveis de Ambiente</a>.Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Nov 12 16:23:57 GMT 2025 - 8.6K bytes - Click Count (0) -
docs/es/docs/environment-variables.md
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Tue Dec 16 16:33:45 GMT 2025 - 8.5K bytes - Click Count (0) -
docs/de/docs/environment-variables.md
Mit diesem Wissen sollten Sie ein grundlegendes Verständnis davon haben, was **Umgebungsvariablen** sind und wie man sie in Python verwendet. Sie können auch mehr darüber in der <a href="https://en.wikipedia.org/wiki/Environment_variable" class="external-link" target="_blank">Wikipedia zu Umgebungsvariablen</a> lesen.
Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Sat Sep 20 15:10:09 GMT 2025 - 9K bytes - Click Count (0)