Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 209 for newArrayList (0.1 sec)

  1. guava-tests/test/com/google/common/util/concurrent/WrappingExecutorServiceTest.java

          assertEquals(RESULT_VALUE + i, futures.get(i).get());
        }
      }
    
      private static List<Callable<String>> createTasks(int n) {
        List<Callable<String>> callables = Lists.newArrayList();
        for (int i = 0; i < n; i++) {
          callables.add(Callables.returning(RESULT_VALUE + i));
        }
        return callables;
      }
    
      private static final class WrappedCallable<T> implements Callable<T> {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 18 22:10:29 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/Resources.java

        // an immutable list, which would change the behavior of this method
        return readLines(
            url,
            charset,
            new LineProcessor<List<String>>() {
              final List<String> result = Lists.newArrayList();
    
              @Override
              public boolean processLine(String line) {
                result.add(line);
                return true;
              }
    
              @Override
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Aug 02 13:50:22 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  3. .idea/inspectionProfiles/Gradle.xml

            <constraint name="__context__" within="" contains=""...
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Wed Jun 26 21:49:47 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/Striped.java

     * or implied. See the License for the specific language governing permissions and limitations under
     * the License.
     */
    
    package com.google.common.util.concurrent;
    
    import static com.google.common.collect.Lists.newArrayList;
    
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.J2ktIncompatible;
    import com.google.common.annotations.VisibleForTesting;
    import com.google.common.base.MoreObjects;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jun 26 12:58:35 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/WebAuthenticationDbm.java

            return _columnUsername;
        }
    
        public ColumnInfo columnWebConfigId() {
            return _columnWebConfigId;
        }
    
        protected List<ColumnInfo> ccil() {
            List<ColumnInfo> ls = newArrayList();
            ls.add(columnAuthRealm());
            ls.add(columnCreatedBy());
            ls.add(columnCreatedTime());
            ls.add(columnHostname());
            ls.add(columnParameters());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 13K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/collect/MultimapsCollectionTest.java

          return new SampleElements<>("january", "february", "march", "april", "may");
        }
    
        @Override
        public Collection<String> createCollection(Iterable<? extends String> values) {
          return Lists.newArrayList(values);
        }
    
        @Override
        public SampleElements<Entry<String, String>> samples() {
          return new SampleElements<>(
              mapEntry("one", "january"),
              mapEntry("two", "february"),
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/KeyMatchDbm.java

            return _columnUpdatedTime;
        }
    
        public ColumnInfo columnVirtualHost() {
            return _columnVirtualHost;
        }
    
        protected List<ColumnInfo> ccil() {
            List<ColumnInfo> ls = newArrayList();
            ls.add(columnBoost());
            ls.add(columnCreatedBy());
            ls.add(columnCreatedTime());
            ls.add(columnMaxSize());
            ls.add(columnQuery());
            ls.add(columnTerm());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/TableCollectionTest.java

                    new TestStringCollectionGenerator() {
                      @Override
                      protected Collection<String> create(String[] elements) {
                        List<Integer> rowKeys = Lists.newArrayList();
                        for (int i = 0; i < elements.length; i++) {
                          rowKeys.add(i);
                        }
                        Table<Integer, Character, String> table =
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/TableCollectionTest.java

                    new TestStringCollectionGenerator() {
                      @Override
                      protected Collection<String> create(String[] elements) {
                        List<Integer> rowKeys = Lists.newArrayList();
                        for (int i = 0; i < elements.length; i++) {
                          rowKeys.add(i);
                        }
                        Table<Integer, Character, String> table =
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/log/bsentity/dbmeta/ClickLogDbm.java

            return _columnUrl;
        }
    
        public ColumnInfo columnUserSessionId() {
            return _columnUserSessionId;
        }
    
        protected List<ColumnInfo> ccil() {
            List<ColumnInfo> ls = newArrayList();
            ls.add(columnUrlId());
            ls.add(columnDocId());
            ls.add(columnOrder());
            ls.add(columnQueryId());
            ls.add(columnQueryRequestedAt());
            ls.add(columnRequestedAt());
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top