Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for updateProperties (0.06 sec)

  1. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateSmokeTestedPluginsVersions.kt

                        ?: error("No version found for plugin $pluginId")
    
                    TestedVersion(pluginId, latest)
                }
    
        private
        fun updateProperties(fetchedVersions: List<TestedVersion>) = updateProperties {
            fetchedVersions.forEach { (pluginId, version) ->
                setProperty(pluginId, version)
            }
        }
    
        private data class TestedVersion(
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Sep 18 16:06:17 UTC 2025
    - 2.3K bytes
    - Viewed (0)
  2. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateAgpVersions.kt

            )
            return FetchedVersions(latests, nightlyBuildId, nightlyVersion, aapt2Versions, buildToolsVersion)
        }
    
        private
        fun updateProperties(fetchedVersions: FetchedVersions) =
            updateProperties {
                setProperty("latests", fetchedVersions.latests.joinToString(","))
                setProperty("nightlyBuildId", fetchedVersions.nightlyBuildId)
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Oct 24 09:10:29 UTC 2025
    - 7.6K bytes
    - Viewed (0)
  3. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractVersionsUpdateTask.kt

                    (0 until versions.length)
                        .map { idx -> (versions.item(idx) as Element).textContent }
                        .reversed()
                }
    
        protected
        fun updateProperties(populateProperties: Properties.() -> Unit) =
            PropertiesUtils.store(
                Properties().apply(populateProperties),
                propertiesFile.get().asFile,
                comment.get(),
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Oct 24 09:10:28 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  4. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateKotlinVersions.kt

        @get:Internal
        abstract val compatibilityDocFile: RegularFileProperty
    
        @TaskAction
        fun action() =
            fetchLatestKotlinVersions().let { latestKotlinVersions ->
                updateProperties {
                    setProperty("latests", latestKotlinVersions.joinToString(","))
                }
                updateCompatibilityDoc(
                    compatibilityDocFile,
                    "Gradle is tested with Kotlin",
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Wed Oct 29 08:29:55 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java

            }
            destoryTimer = new Timer("CommandGeneratorDestoryTimer-" + ComponentUtil.getSystemHelper().getCurrentTimeAsLong(), true);
            updateProperties();
        }
    
        /**
         * Updates timeout properties from system configuration.
         */
        protected void updateProperties() {
            final FessConfig fessConfig = ComponentUtil.getFessConfig();
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Dec 04 08:02:36 UTC 2025
    - 16K bytes
    - Viewed (0)
Back to top