Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for unmodifiableMap (0.21 sec)

  1. android/guava/src/com/google/common/collect/Maps.java

            Map<K, V> onlyOnRight,
            Map<K, V> onBoth,
            Map<K, ValueDifference<V>> differences) {
          this.onlyOnLeft = unmodifiableMap(onlyOnLeft);
          this.onlyOnRight = unmodifiableMap(onlyOnRight);
          this.onBoth = unmodifiableMap(onBoth);
          this.differences = unmodifiableMap(differences);
        }
    
        @Override
        public boolean areEqual() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                            if (artifact != null) {
                                tmp.put(d.getManagementKey(), artifact);
                            }
                        }
                        return Collections.unmodifiableMap(tmp);
                    });
                }
                project.setManagedVersionMap(map);
    
                // release artifact repository
                if (project.getDistributionManagement() != null
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Multimaps.java

        }
    
        @Override
        public Map<K, Collection<V>> asMap() {
          Map<K, Collection<V>> result = map;
          if (result == null) {
            result =
                map =
                    Collections.unmodifiableMap(
                        Maps.transformValues(
                            delegate.asMap(), collection -> unmodifiableValueCollection(collection)));
          }
          return result;
        }
    
        @Override
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 86.4K bytes
    - Viewed (0)
Back to top