Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for project1 (0.19 sec)

  1. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    NOTE: The Wrapper shell script and batch file reside in the root directory of a single or multi-project Gradle build. You will need to reference the correct path to those files in case you want to execute the build from a subproject directory e.g. `../../gradlew tasks`.
    
    [[sec:upgrading_wrapper]]
    == Upgrading the Gradle Wrapper
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/ProjectModelResolver.java

    /**
     * A model resolver to assist building of projects. This resolver gives priority to those repositories that have been
     * declared in the POM.
     *
     */
    public class ProjectModelResolver implements ModelResolver {
    
        private static final int MAX_CAP = 0x7fff;
    
        private final RepositorySystemSession session;
    
        private final RequestTrace trace;
    
        private final String context = "project";
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  3. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/ExceptionPlaceholder.java

                }
            }
            return null;
        }
    
        /**
         * Does best effort to find a method which potentially returns multiple causes
         * for an exception. This is for classes of external projects which actually do
         * something similar to what we do in Gradle with {@link DefaultMultiCauseException}.
         * It is, in particular, the case for opentest4j.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/component_metadata_rules.adoc

    The default behavior is equivalent to calling this method:
    
    .Preferring rules declared in projects
    ====
    include::sample[dir="snippets/dependencyManagement/customizingResolution-metadataRule/kotlin",files="settings.gradle.kts[tags=prefer-projects]"]
    include::sample[dir="snippets/dependencyManagement/customizingResolution-metadataRule/groovy",files="settings.gradle[tags=prefer-projects]"]
    ====
    
    
    [[sec:component_metadata_rules_details]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ProblemReportingCrossProjectModelAccess.kt

                return delegate.project(referrer, path, configureAction)
            }
    
            override fun project(referrer: ProjectInternal, path: String, configureAction: Action<in Project>): ProjectInternal {
                return delegate.project(referrer, path, configureAction)
            }
    
            override fun getSubprojects(): Set<Project> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  6. src/compress/bzip2/bzip2.go

    import "io"
    
    // There's no RFC for bzip2. I used the Wikipedia page for reference and a lot
    // of guessing: https://en.wikipedia.org/wiki/Bzip2
    // The source code to pyflate was useful for debugging:
    // http://www.paul.sladen.org/projects/pyflate
    
    // A StructuralError is returned when the bzip2 data is found to be
    // syntactically invalid.
    type StructuralError string
    
    func (s StructuralError) Error() string {
    	return "bzip2 data invalid: " + string(s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 13K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    In Gradle 7.0, Gradle will only allow you to invoke the `init` task or diagnostic command line flags, such as `--version`, with undefined builds.
    
    ==== Calling `Project.afterEvaluate` on an evaluated project has been deprecated
    
    Once a project is evaluated, Gradle ignores all configuration passed to `Project#afterEvaluate` and emits a deprecation warning.
    This scenario will become an error in Gradle 7.0.
    
    ==== Deprecated plugins
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  8. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskExecutionIntegrationTest.groovy

            buildFile << """
                gradle.taskGraph.whenReady { assert !project.hasProperty('graphReady'); ext.graphReady = true }
                task a {
                    doLast { task ->
                        project.ext.executedA = task
                    }
                }
                task b {
                    doLast {
                        assert a == project.executedA
                        assert gradle.taskGraph.hasTask(':a')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. docs/en/docs/help-fastapi.md

    You can:
    
    * <a href="https://github.com/tiangolo" class="external-link" target="_blank">Follow me on **GitHub**</a>.
        * See other Open Source projects I have created that could help you.
        * Follow me to see when I create a new Open Source project.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    ----
    
    [[sec:command_line_project_reporting]]
    == Project reporting
    
    Gradle provides several built-in tasks which show particular details of your build.
    This can be useful for understanding your build's structure and dependencies, as well as debugging problems.
    
    === Listing projects
    Running the `projects` task gives you a list of the subprojects of the selected project, displayed in a hierarchy:
    
    ----
    $ gradle projects
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top