Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for StatefulDeduplicator (0.34 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicator.java

         */
        public Map<T, String> deduplicate(Iterable<? extends T> elements) {
            return new StatefulDeduplicator(elements).getNewNames();
        }
    
        /*
         * This inner class hides the fact that the actual de-duplication algorithm is stateful.
         */
        private class StatefulDeduplicator {
    
            private final List<T> elements;
            private final Multimap<String, T> elementsByName;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  2. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.plugins.ide.internal.configurer.HierarchicalElementDeduplicator$StatefulDeduplicator$1> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (HierarchicalElementDeduplicator.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top