Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for removeMapping (0.14 sec)

  1. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesTest.groovy

            'existing' | 'Concat'   | String::concat                              | 'existingValueConcat'
            'existing' | ''         | AccessTrackingPropertiesTest::removeMapping | null
            'missing'  | 'newValue' | String::concat                              | 'newValue'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/StandardTable.java

        return value != null && value.equals(get(rowKey, columnKey));
      }
    
      /** Remove a row key / column key / value mapping, if present. */
      private boolean removeMapping(
          @CheckForNull Object rowKey, @CheckForNull Object columnKey, @CheckForNull Object value) {
        if (containsMapping(rowKey, columnKey, value)) {
          remove(rowKey, columnKey);
          return true;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 29.8K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/StandardTable.java

        return value != null && value.equals(get(rowKey, columnKey));
      }
    
      /** Remove a row key / column key / value mapping, if present. */
      private boolean removeMapping(
          @CheckForNull Object rowKey, @CheckForNull Object columnKey, @CheckForNull Object value) {
        if (containsMapping(rowKey, columnKey, value)) {
          remove(rowKey, columnKey);
          return true;
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 30.6K bytes
    - Viewed (0)
Back to top