Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 132 for milestones (0.21 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/LongRunningOperation.java

     * Those settings might not be supported by the target Gradle version. Refer to Javadoc for those methods
     * to understand what kind of exception throw and when is it thrown.
     *
     * @since 1.0-milestone-7
     */
    public interface LongRunningOperation {
    
        /**
         * Sets the {@link java.io.OutputStream} which should receive standard output logging generated while running the operation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 14K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/gradle/with-custom-attributes.module

    {
        "formatVersion": "1.0",
        "component": {
            "group": "org.gradle.test",
            "module": "publishTest",
            "version": "1.9",
            "attributes": {
                "org.gradle.status": "milestone",
                "quality": "canary"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 264 bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/build/GradleEnvironment.java

     * <p>
     * See example in {@link BuildEnvironment}
     *
     * @since 1.0-milestone-8
     */
    public interface GradleEnvironment {
    
        /**
         * Informs about the Gradle user home.
         *
         * @since 2.4
         */
        File getGradleUserHome();
    
        /**
         * Informs about the Gradle version.
         *
         * @since 1.0-milestone-8
         */
        String getGradleVersion();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyComponentMetadataRulesStatusIntegrationTest.groovy

            expect:
            fails 'resolve'
            failure.assertHasCause(/Unexpected status 'silver' specified for org.test:projectA:1.0. Expected one of: [integration, milestone, release]/)
        }
    
        def "resolve fails if status doesn't match custom status scheme"() {
            buildFile <<
                    """
    class StatusRule implements ComponentMetadataRule {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/eclipse/EclipseProject.java

         *
         * @return associated gradle project
         * @since 1.0-milestone-5
         */
        @Override
        GradleProject getGradleProject();
    
        /**
         * Returns the external dependencies which make up the classpath of this project.
         *
         * @return The dependencies. Returns an empty set if the project has no external dependencies.
         * @since 1.0-milestone-3
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyBrokenRemoteResolveIntegrationTest.groovy

            def moduleB = repo.module("group", "projectB", "1.0-milestone-9").publish()
    
            buildFile << """
    repositories {
        ivy { url "${repo.uri}"}
    }
    configurations { missing }
    dependencies {
        missing 'group:projectA:1.2'
        missing 'group:projectB:1.0-milestone-9'
    }
    task showMissing { doLast { println configurations.missing.files } }
    """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  7. README.md

    Each issue is ultimately part of an epic.
    
    - **Milestone**. Each issue is assigned a milestone. This is 0.1, 0.2, ..., or 'Nebulous Future'. The milestone indicates when we
    think the issue should get addressed.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 15:28:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/connection/UnsupportedOlderVersionConnectionTest.groovy

        final ProtocolToModelAdapter adapter = new ProtocolToModelAdapter()
    
        def setup() {
            _ * connection.metaData >> metaDataVersion1
            _ * metaDataVersion1.version >> '1.0-milestoneX'
        }
    
        def "run fails"() {
            def connection = new UnsupportedOlderVersionConnection(connection, adapter)
    
            when:
            connection.run(GradleProject.class, parameters)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. .github/workflows/issue-metadata.yml

    permissions: {}
    
    jobs:
      check_issue_metadata:
        permissions:
          issues: write
        runs-on: ubuntu-latest
        steps:
          # Check that issues have proper metadata: labels and milestone
          # https://github.com/gradle/issue-management-action/blob/main/src/issue-metadata.ts
          - uses: gradle/issue-management-action@v1
            with:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 463 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/ivy-publish/customize-identity/groovy/build.gradle

        publications {
            ivy(IvyPublication) {
                organisation = 'org.gradle.sample'
                module = 'project1-sample'
                revision = '1.1'
                descriptor.status = 'milestone'
                descriptor.branch = 'testing'
                descriptor.extraInfo 'http://my.namespace', 'myElement', 'Some value'
    
                from components.java
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 660 bytes
    - Viewed (0)
Back to top