Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getFullPath (0.41 sec)

  1. platforms/jvm/language-jvm/src/testFixtures/groovy/org/gradle/integtests/fixtures/jvm/JvmSourceFile.java

            return path;
        }
    
        public String getName() {
            return name;
        }
    
        public String getContent() {
            return content;
        }
    
        public String getFullPath() {
            return path.isEmpty() ? name : path + "/" + name;
        }
    
        public JvmSourceFile getClassFile() {
            return new JvmSourceFile(path, name.replaceAll("(\\.java|\\.scala)", ".class"), null);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/AbstractCommandLineOrderTaskIntegrationTest.groovy

                inputFiles.add(path)
                return this
            }
    
            String getName() {
                return path.split(':').last()
            }
    
            String getFullPath() {
                return project.build == rootBuild ? path : ":${project.build.name}${path}"
            }
    
            TaskFixture shouldBlock() {
                shouldBlock = true
                return this
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top