Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setUnsubscribe (0.05 sec)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/StringVisitorModelInterpolator.java

                    if (org != val) {
                        mailingList.setSubscribe(val);
                    }
                    // Unsubscribe
                    org = mailingList.getUnsubscribe();
                    val = interpolate(org);
                    if (org != val) {
                        mailingList.setUnsubscribe(val);
                    }
                    // Post
                    org = mailingList.getPost();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Feb 25 08:27:34 UTC 2025
    - 43.1K bytes
    - Viewed (0)
  2. compat/maven-model/src/main/java/org/apache/maven/model/merge/ModelMerger.java

                    target.setUnsubscribe(src);
                    target.setLocation("unsubscribe", source.getLocation("unsubscribe"));
                }
            }
        }
    
        protected void mergeMailingList_Post(
                MailingList target, MailingList source, boolean sourceDominant, Map<Object, Object> context) {
            String src = source.getPost();
            if (src != null) {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Apr 03 11:21:39 UTC 2025
    - 99.2K bytes
    - Viewed (0)
Back to top