Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setRelativePath (0.07 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                task.from(extension.getUserManual().getRoot(), sub -> {
                    sub.include("**/*.adoc");
                    // Flatten adocs into a single directory
                    sub.eachFile(fcd -> fcd.setRelativePath(RelativePath.parse(true, fcd.getName())));
                });
    
                // From the snippets and the samples, filter out files generated if the build contained was ever executed
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Fri Mar 01 05:46:51 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

                return null;
            }
    
            String parentPath = childModel.getParent().getRelativePath();
            if (parentPath == null) {
                parentPath = "..";
                childModel.getParent().setRelativePath(parentPath);
            } else if (parentPath.isEmpty()) {
                return null;
            }
    
            if (source instanceof ModelSource3) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 83.6K bytes
    - Viewed (0)
Back to top