Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for transformValue (0.25 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/metaobject/BeanDynamicObject.java

                                    trySetGetterOnlyProperty(name, value, metaBeanProperty);
                                } else {
                                    value = propertySetTransformer.transformValue(metaBeanProperty.getField().getType(), value);
                                    metaBeanProperty.getField().setProperty(bean, value);
                                }
                            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Tables.java

              : null;
        }
    
        @Override
        public Map<C, V2> row(@ParametricNullness R rowKey) {
          return Maps.transformValues(fromTable.row(rowKey), function);
        }
    
        @Override
        public Map<R, V2> column(@ParametricNullness C columnKey) {
          return Maps.transformValues(fromTable.column(columnKey), function);
        }
    
        Function<Cell<R, C, V1>, Cell<R, C, V2>> cellFunction() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Multimaps.java

          Map<K, Collection<V>> result = map;
          if (result == null) {
            result =
                map =
                    Collections.unmodifiableMap(
                        Maps.transformValues(
                            delegate.asMap(), collection -> unmodifiableValueCollection(collection)));
          }
          return result;
        }
    
        @Override
        public Collection<Entry<K, V>> entries() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/MapsTest.java

     * limitations under the License.
     */
    
    package com.google.common.collect;
    
    import static com.google.common.collect.Maps.transformEntries;
    import static com.google.common.collect.Maps.transformValues;
    import static com.google.common.collect.Maps.unmodifiableNavigableMap;
    import static com.google.common.collect.testing.Helpers.mapEntry;
    import static com.google.common.truth.Truth.assertThat;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Maps.java

          NavigableMap<K, V2> transformValues(
              NavigableMap<K, V1> fromMap, Function<? super V1, V2> function) {
        return transformEntries(fromMap, asEntryTransformer(function));
      }
    
      /**
       * Returns a view of a map whose values are derived from the original map's entries. In contrast
       * to {@link #transformValues}, this method's entry-transformation logic may depend on the key as
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Maps.java

          NavigableMap<K, V2> transformValues(
              NavigableMap<K, V1> fromMap, Function<? super V1, V2> function) {
        return transformEntries(fromMap, asEntryTransformer(function));
      }
    
      /**
       * Returns a view of a map whose values are derived from the original map's entries. In contrast
       * to {@link #transformValues}, this method's entry-transformation logic may depend on the key as
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/util/concurrent/ServiceManager.java

       *     by startup time.
       * @since 31.0
       */
      @J2ObjCIncompatible
      public ImmutableMap<Service, Duration> startupDurations() {
        return ImmutableMap.copyOf(
            Maps.<Service, Long, Duration>transformValues(startupTimes(), Duration::ofMillis));
      }
    
      @Override
      public String toString() {
        return MoreObjects.toStringHelper(ServiceManager.class)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top