Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for setRelativePath (0.09 seconds)

  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
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Thu Dec 04 14:26:28 GMT 2025
    - 19.3K bytes
    - Click Count (0)
  2. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                    }
                    // RelativePath
                    org = parent.getRelativePath();
                    val = interpolate(org);
                    if (org != val) {
                        parent.setRelativePath(val);
                    }
                }
            }
    
            private void visit(Organization organization) {
                if (organization != null) {
                    String org, val;
                    // Name
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 43.1K bytes
    - Click Count (0)
  3. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

            Parent src = source.getParent();
            if (src != null) {
                Parent tgt = target.getParent();
                if (tgt == null) {
                    tgt = new Parent();
                    tgt.setRelativePath(null);
                    target.setParent(tgt);
                }
                mergeParent(tgt, src, sourceDominant, context);
            }
        }
    
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Thu Apr 03 11:21:39 GMT 2025
    - 99.2K bytes
    - Click Count (0)
Back to Top