Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 114 for PROPERTIES (0.26 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

            val settingDir = serviceOf<BuildLayout>().settingsDir
            // Load Gradle properties from a file but skip applying system properties defined here.
            // System properties from the file may be mutated by the build logic, and the execution-time values are already restored by the EnvironmentChangeTracker.
            // Applying properties from file overwrites these modifications.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GlobalScopeServices.java

    import org.gradle.api.internal.provider.PropertyFactory;
    import org.gradle.api.internal.tasks.TaskDependencyFactory;
    import org.gradle.api.internal.tasks.properties.annotations.AbstractOutputPropertyAnnotationHandler;
    import org.gradle.api.internal.tasks.properties.annotations.OutputPropertyRoleAnnotationHandler;
    import org.gradle.api.model.ObjectFactory;
    import org.gradle.api.tasks.util.PatternSet;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/build.gradle.kts

        crossVersionTestImplementation(project(":cli"))
    
        testRuntimeOnly(project(":distributions-core")) {
            because("Tests instantiate DefaultClassLoaderRegistry which requires a 'gradle-plugins.properties' through DefaultPluginModuleRegistry")
        }
        integTestDistributionRuntimeOnly(project(":distributions-full")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbol.kt

         * If they are present, we have to resort to [FirRegularClassSymbol.resolvedStatus] instead - otherwise we can observe incorrect status
         * properties.
         *
         * TODO This optimization should become obsolete after KT-56551 is fixed.
         */
        private val FirRegularClassSymbol.optionallyResolvedStatus: FirDeclarationStatus
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultArtifactDescriptorReader.java

                            .source(ModelSource.fromPath(pomArtifact.getPath(), gav))
                            // This merge is on purpose because otherwise user properties would override model
                            // properties in dependencies the user does not know. See MNG-7563 for details.
                            .systemProperties(toProperties(session.getUserProperties(), session.getSystemProperties()))
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. subprojects/core-api/src/test/groovy/org/gradle/StartParameterTest.groovy

            then:
            parameter.gradleUserHomeDir == StartParameter.DEFAULT_GRADLE_USER_HOME
            assertThat(parameter, isSerializable())
        }
    
        void "considers system properties for null user home dir"() {
            def gradleUserHome = tmpDir.file("someGradleUserHomePath")
            System.setProperty(StartParameter.GRADLE_USER_HOME_PROPERTY_KEY, gradleUserHome.absolutePath)
    
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 06:24:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectModelAccessTrackingParentDynamicObject.kt

            return delegate.trySetProperty(name, value)
        }
    
        override fun getProperties(): MutableMap<String, *> {
            onAccess(MemberKind.PROPERTY, null)
            return delegate.properties
        }
    
        override fun getMissingProperty(name: String): MissingPropertyException {
            onAccess(MemberKind.PROPERTY, name)
            return delegate.getMissingProperty(name)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

             * according the dependency properties. We need to process patch-module first,
             * because this type depends on whether a module of the same name has already
             * been added on the module-type.
             */
            // DependencyProperties properties = dep.getDependencyProperties();
            Set<PathType> pathTypes = dep.getType().getPathTypes();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheHost.kt

            override fun registerRootProject(rootProjectName: String, projectDir: File, buildDir: File) {
                // Root project is registered when the settings are created, just need to adjust its properties
                val descriptor = rootProjectDescriptor()
                descriptor.name = rootProjectName
                descriptor.projectDir = projectDir
                buildDirs[Path.ROOT] = buildDir
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheCompositeBuildsIntegrationTest.groovy

            def confCacheDir = file("./app/.gradle/configuration-cache")
            confCacheDir.isDirectory()
            def confCacheFiles = confCacheDir.allDescendants().findAll { it != 'configuration-cache.lock' && it != 'gc.properties' }
            confCacheFiles.size() == 5 // header, 2 * fingerprint, root build state file, included build state file
            if (!OperatingSystem.current().isWindows()) {
                confCacheFiles.forEach {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top