Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 49 for StartParameter (0.66 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/service/scopes/BuildScopeServices.java

            GradleUserHomeDirProvider userHomeDirProvider,
            BuildLayout buildLayout,
            StartParameter startParameter,
            UnscopedCacheBuilderFactory unscopedCacheBuilderFactory
        ) {
            BuildScopeCacheDir cacheDir = new BuildScopeCacheDir(userHomeDirProvider, buildLayout, startParameter);
            return new DefaultBuildScopedCacheBuilderFactory(cacheDir.getDir(), unscopedCacheBuilderFactory);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 09:21:42 UTC 2024
    - 35.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

            val startParameterTaskNames = gradle.startParameter.taskNames
            writeStrings(startParameterTaskNames)
        }
    
        private
        fun DefaultReadContext.readStartParameterOf(gradle: GradleInternal) {
            // Restore startParameter.taskNames to enable `gradle.startParameter.setTaskNames(...)` idiom in included build scripts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/DefaultConfigurationResolver.java

            RepositoriesSupplier repositoriesSupplier,
            GlobalDependencyResolutionRules metadataHandler,
            ResolutionResultsStoreFactory storeFactory,
            StartParameter startParameter,
            AttributesSchemaInternal consumerSchema,
            VariantSelectorFactory variantSelectorFactory,
            ImmutableModuleIdentifierFactory moduleIdentifierFactory,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/GradleBuildTaskIntegrationTest.groovy

            given:
            settingsFile << "rootProject.name = 'parent'"
            buildFile << """
                task buildInBuild(type:GradleBuild) {
                    dir = 'other'
                    startParameter.projectProperties['foo'] = true // not a String
                }
            """
            file('other/settings.gradle').createFile()
            file('other/build.gradle') << 'assert foo==true'
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/invocation/Gradle.java

         *
         * @return The task graph. Never returns null.
         */
        TaskExecutionGraph getTaskGraph();
    
        /**
         * Returns the {@link StartParameter} used to start this build.
         *
         * @return The start parameter. Never returns null.
         */
        StartParameter getStartParameter();
    
        /**
         * Adds a listener to this build, to receive notifications as projects are evaluated.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.buildevents
    
    import org.gradle.BuildResult
    import org.gradle.StartParameter
    import org.gradle.api.GradleException
    import org.gradle.api.internal.artifacts.ivyservice.TypedResolveException
    import org.gradle.api.invocation.Gradle
    import org.gradle.api.logging.LogLevel
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheIO.kt

    import org.gradle.util.Path
    import java.io.File
    import java.io.InputStream
    import java.io.OutputStream
    
    
    @ServiceScope(Scope.Build::class)
    class ConfigurationCacheIO internal constructor(
        private val startParameter: ConfigurationCacheStartParameter,
        private val host: DefaultConfigurationCache.Host,
        private val problems: ConfigurationCacheProblems,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    ==== Removal of unused `StartParameter` APIs
    
    The following APIs, which were not usable via command line options anymore since Gradle 5.0, are now removed:
    `StartParameter.useEmptySettings()`, `StartParameter.isUseEmptySettings()`, `StartParameter.setSearchUpwards(boolean)` and `StartParameter.isSearchUpwards()`.
    
    ==== Removal of searching for settings files in 'master' directories
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/LongRunningOperation.java

         * Be aware that not all of the Gradle command line options are supported!
         * Only the build arguments that configure the build execution are supported.
         * They are modelled in the Gradle API via {@link org.gradle.StartParameter}.
         * Examples of supported build arguments: '--info', '-p'.
         * The command line instructions that are actually separate commands (like '-?' and '-v') are not supported.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 14K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildModelControllerServices.kt

                return instantiator.newInstance(
                    DefaultGradle::class.java,
                    parentBuild,
                    buildDefinition.startParameter,
                    serviceRegistryFactory
                )
            }
    
            @Provides
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
Back to top