Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 71 for e2 (0.07 sec)

  1. android/guava-tests/test/com/google/common/collect/SetViewTest.java

                      protected Set<String> create(String[] elements) {
                        return intersection(
                            newHashSet(samples().e1(), samples().e3()),
                            newHashSet(samples().e2(), samples().e4()));
                      }
                    })
                .named("set & disjoint")
                .withFeatures(CollectionSize.ZERO, CollectionFeature.ALLOWS_NULL_VALUES)
                .createTestSuite());
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 29.9K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/FluentIterable.java

          @ParametricNullness E element, E... elements) {
        return from(Lists.asList(element, elements));
      }
    
      /**
       * Returns a string representation of this fluent iterable, with the format {@code [e1, e2, ...,
       * en]}.
       *
       * <p><b>{@code Stream} equivalent:</b> {@code stream.collect(Collectors.joining(", ", "[", "]"))}
       * or (less efficiently) {@code stream.collect(Collectors.toList()).toString()}.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 35.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/FluentIterable.java

          @ParametricNullness E element, E... elements) {
        return from(Lists.asList(element, elements));
      }
    
      /**
       * Returns a string representation of this fluent iterable, with the format {@code [e1, e2, ...,
       * en]}.
       *
       * <p><b>{@code Stream} equivalent:</b> {@code stream.collect(Collectors.joining(", ", "[", "]"))}
       * or (less efficiently) {@code stream.collect(Collectors.toList()).toString()}.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 34.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Iterables.java

            return false;
          }
        }
        return Iterators.elementsEqual(iterable1.iterator(), iterable2.iterator());
      }
    
      /**
       * Returns a string representation of {@code iterable}, with the format {@code [e1, e2, ..., en]}
       * (that is, identical to {@link java.util.Arrays Arrays}{@code
       * .toString(Iterables.toArray(iterable))}). Note that for <i>most</i> implementations of {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 43.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbFile.java

                        th.send(new Smb2CloseRequest(th.getConfig(), createResp.getFileId()), RequestParam.NO_RETRY);
                    }
                } catch (final Exception e2) {
                    log.debug("Failed to close after failure", e2);
                    e.addSuppressed(e2);
                }
                throw e;
            }
        }
    
        @Override
        public void createNewFile() throws SmbException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/Iterables.java

            return false;
          }
        }
        return Iterators.elementsEqual(iterable1.iterator(), iterable2.iterator());
      }
    
      /**
       * Returns a string representation of {@code iterable}, with the format {@code [e1, e2, ..., en]}
       * (that is, identical to {@link java.util.Arrays Arrays}{@code
       * .toString(Iterables.toArray(iterable))}). Note that for <i>most</i> implementations of {@link
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 43.3K bytes
    - Viewed (0)
  7. cmd/testdata/xl-meta-merge.zip

    ; È+54 qÖVs@²P}nsU Aïy°ú̧¡½ª†Slãpkª cU@ôYsf^Ô }e„@zw zoR\m[axé¬{U÷_sxì„Vy²H{_Zèñ |ªã*(>6{l Q OvEZìsv]xï„=cx=‘¬KKÖR}rªwZ²kmå9 °¬:}VôK{ïˆpj1*}@E~xªÙ[B\ˆÜ^OªVqPj¦^i¸nä»t H_Úe sL€tqÎïcBmpY¨qV [ø!wdò ñWªy{lnº gZ› ªLc¼]ÜsÖO„rSnã²ÎöH@Fáæ@C{sN¾äVlRO®©»ðh¸_{ê2{a™}OpîñÈ·igTei»ÊufsqKó»\aLycx+ }Dš ŸeSbûUô}rQñ`¾™È¬i_\yUÖ ­yûZ_s¬Y}PÚqJ ‘rGtãjÒÀÀ~^>dg £ÉÒ»³ DqÐ.cW%1ò^¼]ÜKFVÕúMI),éærsL}G~Ü„\WQV¦MDCfw@Üe ô}°j÷inS{Gpucò’}S\eUuð÷ xH2 q# ò; 6Ä 3 Ä" %è> 2 5 *\ wKûryˆtXI ‰åt † ixÉkfs¦¾ÿx mmFwfðsfˆYïN©æiIIF„{æV oܤBH_...
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Iterators.java

          if (!Objects.equals(o1, o2)) {
            return false;
          }
        }
        return !iterator2.hasNext();
      }
    
      /**
       * Returns a string representation of {@code iterator}, with the format {@code [e1, e2, ..., en]}.
       * The iterator will be left exhausted: its {@code hasNext()} method will return {@code false}.
       */
      public static String toString(Iterator<?> iterator) {
        StringBuilder sb = new StringBuilder().append('[');
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 50.5K bytes
    - Viewed (0)
  9. api/maven-api-model/src/main/mdo/maven.mdo

              <description>
                <![CDATA[
                  The timezone the contributor is in. Typically, this is a number in the range
                  <a href="http://en.wikipedia.org/wiki/UTC%E2%88%9212:00">-12</a> to <a href="http://en.wikipedia.org/wiki/UTC%2B14:00">+14</a>
                  or a valid time zone id like "America/Montreal" (UTC-05:00) or "Europe/Paris" (UTC+01:00).
                ]]>
              </description>
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Aug 07 14:32:16 UTC 2025
    - 132.7K bytes
    - Viewed (0)
  10. lib/fips140/v1.0.0.zip

    ringCompressAndEncod to ringCompressAndEncod. e1 := ringCompressAndEncod(nil, f, 10) e2 := ringCompressAndEncod(nil, f) if !bytes.Equal(e1, e2) { t.Errorf("ringCompressAndEncod = %x, ringCompressAndEncod = %x", e1, e2) } e1 = ringCompressAndEncod(nil, f, 4) e2 = ringCompressAndEncod(nil, f) if !bytes.Equal(e1, e2) { t.Errorf("ringCompressAndEncod = %x, ringCompressAndEncod = %x", e1, e2) } e1 = ringCompressAndEncod(nil, f, 1) e2 = ringCompressAndEncod(nil, f) if !bytes.Equal(e1, e2) { t.Errorf("ringCompressAndEncod...
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Wed Jan 29 15:10:35 UTC 2025
    - 635K bytes
    - Viewed (0)
Back to top