Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 629 for Sall (0.05 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr4_settings_file.adoc

    One of the purposes of the link:{groovyDslPath}/org.gradle.api.initialization.Settings.html[Settings] object is to allow you to declare all the projects to be included in the build.
    
    You can use any of the methods and properties on the link:{groovyDslPath}/org.gradle.api.initialization.Settings.html[Settings] interface directly in your settings file.
    
    For example:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/AbstractSourceDependencyMultiprojectIntegrationTest.groovy

            repo.expectCloneSomething()
            fails("resolve")
            failure.assertHasDescription("Could not determine the dependencies of task ':resolve'.")
            failure.assertHasCause("Could not resolve all dependencies for configuration ':conf'.")
            failure.assertHasCause("Git repository at ${repo.url} did not contain a project publishing the specified dependency.")
        }
    
        void assertResolvesTo(String... files) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

                }
            }
        }
    
        private void addAnchorsForHeadings(Document document) {
            // add anchors for all of the headings
            for (Element heading : document.body().select("h2,h3,h4")) {
                String anchorName = heading.text().toLowerCase().replaceAll(" ", "-");
                heading.attr("id", anchorName);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  4. testing/integ-test/src/crossVersionTest/groovy/org/gradle/integtests/AbstractTaskSubclassingBinaryCompatibilityCrossVersionSpec.groovy

                    }
    
                    @TaskAction
                    public void doGet() {
                        // Note: not all of these specialise at time of writing, but may do in the future
                        getTaskDependencies();
                        getState();
                        getLogging();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/NativeCompilerTest.groovy

                getPreCompiledHeaderObjectFile() >> null
            }
    
            and:
            def actualArgs = compiler.getArguments(compileSpec)
    
            then:
            // Almost all options are stripped when using the options file
            actualArgs != commandLineArgs
            // options file should exist
            testDir.file("options.txt").exists()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/internal/AbstractCodeQualityPlugin.java

            extensionMapping.map("sourceSets", Callables.returning(new ArrayList<>()));
            extensionMapping.map("reportsDir", new Callable<File>() {
                @Override
                public File call() {
                    return project.getExtensions().getByType(ReportingExtension.class).file(getReportName());
                }
            });
            withBasePlugin(new Action<Plugin>() {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/EventFiringTaskExecuter.java

        public TaskExecuterResult execute(final TaskInternal task, final TaskStateInternal state, final TaskExecutionContext context) {
            return buildOperationRunner.call(new CallableBuildOperation<TaskExecuterResult>() {
                @Override
                public TaskExecuterResult call(BuildOperationContext operationContext) {
                    TaskExecuterResult result = executeTask(operationContext);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Codec.kt

        var immediateMode: Boolean // TODO:configuration-cache prevent StackOverflowErrors when crossing protocols
    
        suspend fun read(): Any?
    
        fun readClass(): Class<*>
    
        /**
         * Defers the given [action] until all objects have been read.
         */
        fun onFinish(action: () -> Unit)
    
        fun <T : Any> getSingletonProperty(propertyType: Class<T>): T
    }
    
    
    inline
    fun <reified T : Any> ReadContext.getSingletonProperty(): T =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  9. testing/integ-test/src/integTest/groovy/org/gradle/integtests/ProjectLayoutIntegrationTest.groovy

            file('build.gradle') << """
    apply plugin: 'java'
    apply plugin: 'groovy'
    apply plugin: 'scala'
    
    ${mavenCentralRepository()}
    dependencies {
        implementation 'org.codehaus.groovy:groovy-all:2.4.10'
        implementation 'org.scala-lang:scala-library:2.11.12'
    }
    
    testing.suites.test.useJUnitJupiter()
    
    sourceSets.each {
        configure(it) {
            resources.srcDir 'src'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr6_writing_tasks.adoc

    While a custom class has been created, it is not yet added to the `LicensePlugin`.
    Running `LicenseTask` is not currently possible.
    
    All you can do for now is make sure `./gradlew build` runs without failing:
    
    [source,text]
    ----
    $ ./gradlew build
    
    SETTINGS FILE: This is executed during the initialization phase
    
    > Configure project :app
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 17:16:27 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top