Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 619 for true (0.17 sec)

  1. .github/ISSUE_TEMPLATE/feature_addition_request.yaml

        validations:
          required: true
    
      - type: textarea
        attributes:
          label: 2. What's the best code you can write to accomplish that without the new feature?
        validations:
          required: true
    
      - type: textarea
        attributes:
          label: 3. What would that same code look like if we added your feature?
        validations:
          required: true
    
      - type: markdown
        attributes:
    Others
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Nov 17 18:47:47 GMT 2023
    - 5.8K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/AbstractMapsTransformValuesTest.java

     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    abstract class AbstractMapsTransformValuesTest extends MapInterfaceTest<String, String> {
      public AbstractMapsTransformValuesTest() {
        super(false, true, false, true, true);
      }
    
      @Override
      protected String getKeyNotInPopulatedMap() throws UnsupportedOperationException {
        return "z";
      }
    
      @Override
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/collect/TreeBasedTableRowTest.java

    import com.google.common.collect.TableCollectionTest.RowTests;
    
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public class TreeBasedTableRowTest extends RowTests {
      public TreeBasedTableRowTest() {
        super(false, true, true, true, true);
      }
    
      @Override
      Table<Character, String, Integer> makeTable() {
        return TreeBasedTable.create();
      }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ConcurrentHashMultiset.java

       * @return {@code true} if the removal was possible (including if {@code occurrences} is zero)
       * @throws IllegalArgumentException if {@code occurrences} is negative
       */
      @CanIgnoreReturnValue
      public boolean removeExactly(@CheckForNull Object element, int occurrences) {
        if (occurrences == 0) {
          return true;
        }
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 21:19:52 GMT 2024
    - 20.9K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/InternetDomainName.java

        try {
          InternetDomainName unused = from(name);
          return true;
        } catch (IllegalArgumentException e) {
          return false;
        }
      }
    
      /**
       * If a {@code desiredType} is specified, returns true only if the {@code actualType} is
       * identical. Otherwise, returns true as long as {@code actualType} is present.
       */
      private static boolean matchesType(
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 05 20:47:23 GMT 2024
    - 28K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/ForwardingSortedMapImplementsMapTest.java

          this.delegate = delegate;
        }
    
        @Override
        protected SortedMap<K, V> delegate() {
          return delegate;
        }
      }
    
      public ForwardingSortedMapImplementsMapTest() {
        super(true, true, true, true, true);
      }
    
      @Override
      protected SortedMap<String, Integer> makeEmptyMap() {
        return new SimpleForwardingSortedMap<>(
            new TreeMap<String, Integer>(Ordering.<String>natural().nullsFirst()));
      }
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/TreeBasedTableRowMapTest.java

    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public class TreeBasedTableRowMapTest extends RowMapTests {
      public TreeBasedTableRowMapTest() {
        super(false, true, true, true);
      }
    
      @Override
      Table<String, Integer, Character> makeTable() {
        return TreeBasedTable.create();
      }
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 1K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionContainsAllTester.java

      public void testContainsAll_empty() {
        assertTrue(
            "containsAll(empty) should return true", collection.containsAll(MinimalCollection.of()));
      }
    
      @CollectionSize.Require(absent = ZERO)
      public void testContainsAll_subset() {
        assertTrue(
            "containsAll(subset) should return true",
            collection.containsAll(MinimalCollection.of(e0())));
      }
    
      public void testContainsAll_sameElements() {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/MultimapsTransformValuesAsMapTest.java

     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public class MultimapsTransformValuesAsMapTest extends AbstractMultimapAsMapImplementsMapTest {
    
      public MultimapsTransformValuesAsMapTest() {
        super(true, true, true);
      }
    
      @Override
      protected Map<String, Collection<Integer>> makeEmptyMap() {
        return Multimaps.transformValues(
                ArrayListMultimap.<String, Integer>create(), Functions.<Integer>identity())
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 1.6K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/MultimapsTransformValuesAsMapTest.java

     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    public class MultimapsTransformValuesAsMapTest extends AbstractMultimapAsMapImplementsMapTest {
    
      public MultimapsTransformValuesAsMapTest() {
        super(true, true, true);
      }
    
      @Override
      protected Map<String, Collection<Integer>> makeEmptyMap() {
        return Multimaps.transformValues(
                ArrayListMultimap.<String, Integer>create(), Functions.<Integer>identity())
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 1.6K bytes
    - Viewed (0)
Back to top