Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for locationURI (0.21 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r27/ToolingApiEclipseLinkedResourcesCrossVersionSpec.groovy

            subprojectA.linkedResources[0].locationUri == null
    
            subprojectA.linkedResources[1].name == 'src-root'
            subprojectA.linkedResources[1].type == '2'
            subprojectA.linkedResources[1].location == normaliseFileSeparators(srcRootFolder1.getAbsolutePath())
            subprojectA.linkedResources[1].locationUri == null
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIDEModelPerformanceTest.groovy

                    }
                    description
                    name
                    linkedResources.each {
                        it.name
                        it.location
                        it.locationUri
                        it.type
                    }
                    projectDirectory
                    sourceDirectories.each {
                        it.path
                        it.directory
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseIntegrationTest.groovy

            runEclipseTask '''
    apply plugin: 'java'
    apply plugin: 'eclipse'
    
    eclipse.project {
        linkedResource name: 'one', type: '2', location: '/xyz'
        linkedResource name: 'two', type: '3', locationUri: 'file://xyz'
    }
    '''
    
            def xml = parseProjectFile()
            assert xml.linkedResources.link[0].name.text() == 'one'
            assert xml.linkedResources.link[0].type.text() == '2'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 01:27:55 UTC 2024
    - 17.2K bytes
    - Viewed (0)
Back to top