Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 132 for milestones (0.22 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-selectionRule/groovy/repo/org.sample/api/1.3.0/ivy-1.3.0.xml

      ~ limitations under the License.
      -->
    
    <ivy-module version="2.0">
        <info organisation="org.sample"
              module="api"
              revision="1.3.0"
              status="milestone" />
        <publications>
            <artifact />
        </publications>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 852 bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/ModelBuilder.java

     *    System.out.println("Available tasks: " + project.getTasks());
     * } finally {
     *    connection.close();
     * }
     * </pre>
     *
     * @param <T> The type of model to build
     * @since 1.0-milestone-3
     */
    public interface ModelBuilder<T> extends ConfigurableLauncher<ModelBuilder<T>> {
    
        /**
         * <p>Specifies the tasks to execute before building the model.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/IdeaSourceDirectory.java

     * limitations under the License.
     */
    
    package org.gradle.tooling.model.idea;
    
    import org.gradle.tooling.model.SourceDirectory;
    
    /**
     * IDEA source directory.
     *
     * @since 1.0-milestone-5
     */
    public interface IdeaSourceDirectory extends SourceDirectory {
        /**
         * Return {@code true} if this source directory is generated.
         *
         * @return true if source directory is generated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1022 bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/cache/internal/CacheVersionMappingTest.groovy

            !mapping.getVersionUsedBy(version("1.0-milestone-2")).present
            mapping.getVersionUsedBy(version("1.0-rc-2")).get() == CacheVersion.of(1)
            mapping.getVersionUsedBy(version("1.0-rc-3")).get() == CacheVersion.of(1)
            mapping.getVersionUsedBy(version("1.0")).get() == CacheVersion.of(1)
            mapping.getVersionUsedBy(version("1.1-milestone-1")).get() == CacheVersion.of(1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:40:24 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/Model.java

    /**
     * A model that is buildable by the Tooling API. Models contain various information regarding the build.
     * Models are typically tailored to a specific domain, for example build environment or IDE.
     *
     * @since 1.0-milestone-8
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 938 bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/BuildExceptionVersion1.java

     * failure are made available in the cause of this exception.
     *
     * DO NOT CHANGE THIS CLASS. It is part of the cross-version protocol.
     *
     * @since 1.0-milestone-3
     */
    public class BuildExceptionVersion1 extends RuntimeException {
        public BuildExceptionVersion1(Throwable throwable) {
            super(throwable);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/GradleConnectionException.java

     * limitations under the License.
     */
    package org.gradle.tooling;
    
    /**
     * Thrown when there is some problem using a Gradle connection.
     *
     * @since 1.0-milestone-3
     */
    public class GradleConnectionException extends RuntimeException {
        public GradleConnectionException(String message) {
            super(message);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1017 bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/UnsupportedVersionException.java

     * limitations under the License.
     */
    package org.gradle.tooling;
    
    /**
     * Thrown when the target Gradle version does not support a particular feature.
     *
     * @since 1.0-milestone-3
     */
    public class UnsupportedVersionException extends GradleConnectionException {
        public UnsupportedVersionException(String message) {
            super(message);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/ide/problems-api-usage/kotlin/sample-ide/build.gradle.kts

        }
    }
    
    application {
        mainClass.set("org.gradle.sample.SampleIde")
    }
    
    dependencies {
        implementation("reporters:model-builder-plugin")
        implementation("org.gradle:gradle-tooling-api:8.6-milestone-1")
    }
    
    tasks.run.configure {
        args = listOf(
            project.gradle.rootBuild().rootProject.projectDir.absolutePath, // The path of the project (this project's root)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 08:50:13 UTC 2023
    - 730 bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/UnknownModelException.java

    /**
     * Thrown when the client is trying to acquire a model that is unknown to the Tooling API.
     * <p>
     * The exception extends {@link UnsupportedVersionException} only for backwards compatibility reasons.
     *
     * @since 1.0-milestone-8
     */
    public class UnknownModelException extends UnsupportedVersionException {
    
        public UnknownModelException(String message) {
            super(message);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top