Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for CustomArtifactModel (0.4 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r32/CustomArtifactModel.java

     * limitations under the License.
     */
    
    package org.gradle.integtests.tooling.r32;
    
    import java.io.File;
    import java.util.List;
    
    interface CustomArtifactModel {
        Exception getFailure();
        List<File> getFiles();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 795 bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r32/ResolutionExceptionSerializableCrossVersionSpec.groovy

    allprojects {
        apply plugin: 'java'
        apply plugin: CustomPlugin
    }
    
    class CustomArtifactModel implements Serializable {
        List<File> files
        Exception failure
    }
    
    class CustomBuilder implements ToolingModelBuilder {
        boolean canBuild(String modelName) {
            return modelName == '${CustomArtifactModel.name}'
        }
        Object buildAll(String modelName, Project project) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top