Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Stuart (3.28 sec)

  1. build-logic/jvm/src/main/kotlin/gradlebuild.start-scripts.gradle.kts

    }
    
    configurations {
        create("gradleScriptsElements") {
            isVisible = false
            isCanBeResolved = false
            isCanBeConsumed = true
            attributes.attribute(Usage.USAGE_ATTRIBUTE, objects.named("start-scripts"))
            outgoing.artifact(startScripts)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:55 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. architecture/build-state-model.md

    The build session state is managed by the `BuildSessionState` class.
    An instance is created at the start of a Gradle invocation and discarded at the end of that invocation.
    
    The build session state also includes "cross session" state that is shared with any "nested" sessions that need to be created.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoPlugins/ReflectionDemo.kt

            println(newCode)
    
            println("===")
            schema.reflectAndPrint(newCode)
        }
    }
    
    
    private
    fun String.replaceRange(range: IntRange, replacement: String): String {
        return take(range.start) + replacement + drop(range.last + 1)
    }
    
    
    val pluginDefinition = schema.dataClassesByFqName
        .getValue(DefaultFqName.parse("org.gradle.internal.declarativedsl.demo.demoPlugins.PluginDefinition"))
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/ConfigurationCacheStartParameter.kt

        val isNoBuildScan: Boolean
            get() = startParameter.isNoBuildScan
    
        /**
         * Determines whether Isolated Projects option was enabled.
         *
         * Uses a build model parameter rather than a start parameter as the latter is not final and can be affected by other options of the build.
         */
        val isIsolatedProjects: Boolean
            get() = modelParameters.isIsolatedProjects
    }
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/ide/AndroidStudioProvisioningPlugin.kt

                            // Remove top folder when unzipping, that way we get rid of Android Studio.app folder that can cause issues on Mac
                            // where MacOS would kill the Android Studio process right after start, issue: https://github.com/gradle/gradle-profiler/issues/469
                            relativePath = RelativePath(true, *relativePath.segments.drop(1).toTypedArray())
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 15:43:39 UTC 2024
    - 5.4K bytes
    - Viewed (0)
Back to top