Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for propertyNames (0.18 sec)

  1. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt

    
    fun Project.gradleProperty(propertyName: String) = providers.gradleProperty(propertyName)
    
    
    fun Project.systemProperty(propertyName: String) = providers.systemProperty(propertyName)
    
    
    fun Project.environmentVariable(propertyName: String) = providers.environmentVariable(propertyName)
    
    
    fun Project.propertyFromAnySource(propertyName: String) = gradleProperty(propertyName)
        .orElse(systemProperty(propertyName))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

            writeNextProperty(propertyName, propertyValue, kind)
        }
    
        suspend fun writeInputProperty(propertyName: String, propertyValue: Any?) =
            writeProperty(propertyName, propertyValue, PropertyKind.InputProperty)
    
        suspend fun writeOutputProperty(propertyName: String, propertyValue: Any?) =
            writeProperty(propertyName, propertyValue, PropertyKind.OutputProperty)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

                        @get:Input
                        val propertyName: Property<String>
                    }
    
                    override fun obtain(): String? = parameters.run {
                        propertiesFile.get().asFile.takeIf { it.isFile }?.inputStream()?.use {
                            java.util.Properties().apply { load(it) }
                        }?.get(propertyName.get()) as String?
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

                onProjectsCoupled()
    
                return withDelegateDynamicCallReportingConfigurationOrder(
                    propertyName,
                    action = { tryGetProperty(propertyName) },
                    resultNotFoundExceptionProvider = { getMissingProperty(propertyName) }
                )
            }
    
            override fun invokeMethod(name: String, args: Any): Any? {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskInputFilePropertiesIntegrationTest.groovy

                    'Use a URI or URL instance',
                    'Use a TextResource instance',
                ]
                additionalData.asMap == [
                    'typeName': 'org.gradle.api.DefaultTask',
                    'propertyName': 'input',
                ]
            }
    
            where:
            method | targetType
            "dir"  | "directory"
            "file" | "file"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintWriter.kt

                }
            }
        }
    
        override fun flagRead(flag: FeatureFlag) {
            flag.systemPropertyName?.let { propertyName ->
                sink().systemPropertyRead(propertyName, System.getProperty(propertyName))
            }
        }
    
        fun append(fingerprint: ProjectSpecificFingerprint) {
            // TODO - should add to report as an input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 32.8K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintController.kt

            override val ignoredFileSystemCheckInputs: String?
                get() = startParameter.ignoredFileSystemCheckInputs
    
            override fun gradleProperty(propertyName: String): String? =
                gradleProperties.find(propertyName)?.uncheckedCast()
    
            override fun hashCodeOf(file: File) =
                hashCodeAndTypeOf(file).first
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

            withValidityAssertion { analysisSession.typeProvider.getArrayElementType(this) }
    }
    
    public typealias KtTypeProviderMixIn = KaTypeProviderMixIn
    
    @Suppress("PropertyName")
    public abstract class KaBuiltinTypes : KaLifetimeOwner {
        public abstract val int: KaType
    
        @Deprecated("Use 'int' instead.", replaceWith = ReplaceWith("int"))
        public val INT: KaType
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/fingerprint/ConfigurationCacheFingerprintChecker.kt

            val ignoreInputsInConfigurationCacheTaskGraphWriting: Boolean
            val instrumentationAgentUsed: Boolean
            val ignoredFileSystemCheckInputs: String?
            fun gradleProperty(propertyName: String): String?
            fun fingerprintOf(fileCollection: FileCollectionInternal): HashCode
            fun hashCodeAndTypeOf(file: File): Pair<HashCode, FileType>
            fun hashCodeOf(file: File): HashCode?
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/StartParameter.java

            logBuildOrSettingsFileDeprecation("settingsFile");
            return settingsFile;
        }
    
        private void logBuildOrSettingsFileDeprecation(String propertyName) {
            DeprecationLogger.deprecateProperty(StartParameter.class, propertyName)
                .withContext("Setting custom build file to select the default project has been deprecated.")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top