Search Options

Results per page
Sort
Preferred Languages
Advance

Results 201 - 210 of 485 for Here (0.11 sec)

  1. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/tasks/AbstractPublishToMaven.java

            // They *might* have input files and other dependencies as well though
            // Inputs: The credentials they need may be expressed in a file
            // Dependencies: Can't think of a case here
        }
    
        /**
         * The publication to be published.
         *
         * @return The publication to be published
         */
        @Internal
        public MavenPublication getPublication() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-customTaskClass/kotlin/build.gradle.kts

        val buildDirectory = layout.buildDirectory
        val objectFactory = project.objects
        val injected = objectFactory.newInstance<Injected>()
    
    // tag::ad-hoc-task[]
        doLast {
            // Process the templates here
    // end::ad-hoc-task[]
            injected.fs.copy {
                into(buildDirectory.dir("genOutput2"))
                from(objectFactory.fileTree().from("src/templates"))
                expand("year" to "2012")
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/language/base/sources/BaseLanguageSourceSet.java

     * interface annotated with {@link org.gradle.model.Managed} and not use an implementation class at all.
     */
    @Incubating
    public class BaseLanguageSourceSet extends AbstractLanguageSourceSet {
        /**
         * This is here as a convenience for subclasses to create additional SourceDirectorySets
         *
         * @since 5.0
         */
        protected final ObjectFactory objectFactory;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. platforms/core-execution/file-watching/src/integTest/groovy/org/gradle/internal/watch/SymlinkFileSystemWatchingIntegrationTest.groovy

                    }
                }
            """
            actualProjectDir.file("settings.gradle").createFile()
            executer.beforeExecute {
                // Use `new File` here to avoid canonicalization of the path
                def symlinkedProjectDir = new File(symlink, "projectDir")
                assert symlinkedProjectDir.absolutePath != actualProjectDir.absolutePath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 13:50:33 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/MultiProjectContinuousIntegrationTest.groovy

            notExecuted(":a", ":upstream:a")
    
            when:
            file("B").text = "B"
    
            then:
            buildTriggeredAndSucceeded()
            executedAndNotSkipped(":downstream:a")
        }
    
        // here to put more stress on parallel execution
        def "reasonable sized multi-project"() {
            given:
            def extraProjectNames = (0..100).collect { "project$it" }
            extraProjectNames.each {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. platforms/software/publish/src/main/java/org/gradle/api/publish/PublishingExtension.java

         * plugins {
         *     id 'maven-publish'
         * }
         *
         * publishing {
         *   publications {
         *     myPublicationName(MavenPublication) {
         *       // Configure the publication here
         *     }
         *   }
         * }
         * </pre>
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ConnectionScopeServices.java

            FileCollectionFactory fileCollectionFactory,
            GlobalUserInputReceiver userInput,
            UserInputReader userInputReader,
            JvmVersionDetector jvmVersionDetector,
            // This is here to trigger creation of the ShutdownCoordinator. Could do this in a nicer way
            ShutdownCoordinator shutdownCoordinator) {
            ClassLoaderCache classLoaderCache = new ClassLoaderCache();
            return new ProviderConnection(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/util/ClosureBackedAction.java

    import groovy.lang.Closure;
    import org.gradle.api.Action;
    import org.gradle.api.InvalidActionClosureException;
    import org.gradle.internal.deprecation.DeprecationLogger;
    
    
    /**
     * This class is only here to maintain binary compatibility with existing plugins.
     * <p>
     * To apply a configuration (represented by a Groovy closure) on an object, use {@link org.gradle.api.Project#configure(Object, Closure)}.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerDaemonIntegrationTest.groovy

            runner().build()
    
            then:
            testKitDaemons().daemon.context.pid == pid
        }
    
        @Requires(value = IntegTestPreconditions.NotEmbeddedExecutor, reason = "TestKit needs a real Gradle distribution here")
        @CustomDaemonDirectory
        def "user daemon process does not reuse existing daemon process intended for test execution even when using same gradle user home"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/Facet.java

         * this facet is locked and cannot be simply removed. See also
         * <a href="https://eclipse.org/articles/Article-BuildingProjectFacets/tutorial.html#defining.presets">here</a>.
         */
        @SuppressWarnings("FieldName")
        public enum FacetType { installed, fixed }
    
        private FacetType type;
        private String name;
        private String version;
    
        public Facet() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 3.3K bytes
    - Viewed (0)
Back to top