Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for congrats (0.21 sec)

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

       * #intersection(Multiset, Multiset) intersection} {@code (multisetToModify, multisetToRetain)},
       * but mutates {@code multisetToModify} instead of returning a view.
       *
       * <p>In contrast, {@code multisetToModify.retainAll(multisetToRetain)} keeps all occurrences of
       * elements that appear at all in {@code multisetToRetain}, and deletes all occurrences of all
       * other elements.
       *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 41.7K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/symbols/Fe10IdeNormalAnalysisSourceModuleSingleSymbolByPsiTestGenerated.java

      @Nested
      @TestMetadata("analysis/analysis-api/testData/symbols/singleSymbolByPsi/contracts")
      @TestDataPath("$PROJECT_ROOT")
      public class Contracts {
        @Test
        public void testAllFilesPresentInContracts() {
          KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/symbols/singleSymbolByPsi/contracts"), Pattern.compile("^(.+)\\.kt$"), null, true);
        }
    
        @Test
    Java
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 17:23:15 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ImmutableMap.java

         * platforms we target.
         *
         * 2. Kotlin's Map type has a getOrDefault method that accepts and returns a "plain V," in
         * contrast to the "V?" type that we're using. As a result, Kotlin sees a conflict between the
         * nullness annotations in ImmutableMap and those in its own Map type. In response, it considers
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 41.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

        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
       * well as the value.
       *
    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)
  5. android/guava/src/com/google/common/collect/Iterators.java

       */
      public static <T extends @Nullable Object> Iterator<T> concat(
          Iterator<? extends Iterator<? extends T>> inputs) {
        return new ConcatenatedIterator<>(inputs);
      }
    
      /** Concats a varargs array of iterators without making a defensive copy of the array. */
      static <T extends @Nullable Object> Iterator<T> concatNoDefensiveCopy(
          Iterator<? extends T>... inputs) {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Apr 30 18:43:01 GMT 2024
    - 51.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Multimaps.java

        return transformEntries(fromMultimap, transformer);
      }
    
      /**
       * Returns a view of a multimap whose values are derived from the original multimap's entries. In
       * contrast to {@link #transformValues}, this method's entry-transformation logic may depend on
       * the key as well as the value.
       *
       * <p>All other properties of the transformed multimap, such as iteration order, are left intact.
    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