Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 516 for has_list (0.18 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/HtmlToXmlJavadocLexer.java

                if (name.equals("li")) {
                    unwindTo(Arrays.asList("ul", "ol"), visitor);
                } else if (name.equals("dt") || name.endsWith("dd")) {
                    unwindTo(Arrays.asList("dl"), visitor);
                } else if (name.equals("tr")) {
                    unwindTo(Arrays.asList("table", "thead", "tbody"), visitor);
                } else if (name.equals("th") || name.endsWith("td")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/project/ProjectUtils.java

            if (session != null) {
                repositorySystem.injectMirror(session, Arrays.asList(repository));
                repositorySystem.injectProxy(session, Arrays.asList(repository));
                repositorySystem.injectAuthentication(session, Arrays.asList(repository));
            }
    
            return repository;
        }
    
        private static RepositorySystem rs(PlexusContainer c) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 26 15:12:32 UTC 2022
    - 3.8K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/model/Description.java

    import javax.annotation.Nullable;
    import java.util.List;
    import java.util.Optional;
    import java.util.Set;
    import java.util.TreeSet;
    
    import static java.util.Arrays.asList;
    import static java.util.Collections.singletonList;
    import static java.util.Optional.ofNullable;
    import static org.gradle.buildinit.plugins.internal.modifiers.BuildInitTestFramework.JUNIT;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 07:33:54 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/core/collection/MultiIteratorTest.java

    /**
     * @author koichik
     *
     */
    public class MultiIteratorTest {
    
        /**
         *
         */
        @Test
        public void test() {
            final List<String> list1 = asList("Foo", "Bar");
            final List<String> list2 = asList("Baz");
    
            @SuppressWarnings("unchecked")
            final Iterator<String> it = new MultiIterator<String>(list1.iterator(), list2.iterator());
    
            assertThat(it.hasNext(), is(true));
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/toolchain/ToolchainBuildOptions.java

    import java.util.Arrays;
    import java.util.List;
    
    public class ToolchainBuildOptions extends BuildOptionSet<ToolchainConfiguration> {
        private final List<? extends BuildOption<? super ToolchainConfiguration>> options = Arrays.asList(
            new JavaInstallationPathsOption(),
            new JavaInstallationEnvironmentPathsOption(),
            new AutoDetectionOption(),
            new AutoDownloadOption(),
            new IntellijJdkBuildOption()
        );
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionToArrayTester.java

        Helpers.assertEqualIgnoringOrder(Arrays.asList(expected), Arrays.asList(actual));
      }
    
      private void expectArrayContentsInOrder(List<E> expected, Object[] actual) {
        assertEquals("toArray() ordered contents: ", expected, Arrays.asList(actual));
      }
    
      /**
       * Returns the {@link Method} instance for {@link #testToArray_isPlainObjectArray()} so that tests
       * of {@link Arrays#asList(Object[])} can suppress it with {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. android/guava-tests/benchmark/com/google/common/collect/MapsMemoryBenchmark.java

    public class MapsMemoryBenchmark {
      static final Map<String, MapsImplEnum> mapEnums =
          uniqueIndex(
              Iterables.<MapsImplEnum>concat(
                  Arrays.asList(MapImpl.values()),
                  Arrays.asList(SortedMapImpl.values()),
                  Arrays.asList(BiMapImpl.values())),
              toStringFunction());
    
      @Param({
        "HashMapImpl",
        "LinkedHashMapImpl",
        "ConcurrentHashMapImpl",
        "CompactHashMapImpl",
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 20 15:07:46 UTC 2019
    - 3.4K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/cache/CacheManualTest.java

        assertEquals(ImmutableMap.of(), cache.getAllPresent(asList(1, 2, 3)));
        stats = cache.stats();
        assertEquals(3, stats.missCount());
        assertEquals(0, stats.loadSuccessCount());
        assertEquals(0, stats.loadExceptionCount());
        assertEquals(0, stats.hitCount());
    
        cache.put(2, 22);
    
        assertEquals(ImmutableMap.of(2, 22), cache.getAllPresent(asList(1, 2, 3)));
        stats = cache.stats();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 5.4K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/collect/CompactHashSetTest.java

    @GwtIncompatible // java.util.Arrays#copyOf(Object[], int), java.lang.reflect.Array
    public class CompactHashSetTest extends TestCase {
      public static Test suite() {
        List<Feature<?>> allFeatures =
            Arrays.<Feature<?>>asList(
                CollectionSize.ANY,
                CollectionFeature.ALLOWS_NULL_VALUES,
                CollectionFeature.FAILS_FAST_ON_CONCURRENT_MODIFICATION,
                CollectionFeature.GENERAL_PURPOSE,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 20:09:59 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. guava-testlib/src/com/google/common/collect/testing/testers/CollectionToArrayTester.java

        Helpers.assertEqualIgnoringOrder(Arrays.asList(expected), Arrays.asList(actual));
      }
    
      private void expectArrayContentsInOrder(List<E> expected, Object[] actual) {
        assertEquals("toArray() ordered contents: ", expected, Arrays.asList(actual));
      }
    
      /**
       * Returns the {@link Method} instance for {@link #testToArray_isPlainObjectArray()} so that tests
       * of {@link Arrays#asList(Object[])} can suppress it with {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 16:49:06 UTC 2024
    - 7.9K bytes
    - Viewed (0)
Back to top