Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for JOE (0.17 sec)

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

        HashSet<String> mut = Sets.intersection(friends, enemies).copyInto(new HashSet<String>());
    
        enemies.add("Joe");
        assertEquals(2, frenemies.size());
        assertEquals(1, immut.size());
        assertEquals(1, mut.size());
      }
    
      public void testDifference() {
        Set<String> friends = Sets.newHashSet("Tom", "Joe", "Dave");
        Set<String> enemies = Sets.newHashSet("Dick", "Harry", "Tom");
    
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 14.7K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/SetOperationsTest.java

        HashSet<String> mut = Sets.intersection(friends, enemies).copyInto(new HashSet<String>());
    
        enemies.add("Joe");
        assertEquals(2, frenemies.size());
        assertEquals(1, immut.size());
        assertEquals(1, mut.size());
      }
    
      public void testDifference() {
        Set<String> friends = Sets.newHashSet("Tom", "Joe", "Dave");
        Set<String> enemies = Sets.newHashSet("Dick", "Harry", "Tom");
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Feb 19 20:34:55 GMT 2024
    - 14.7K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-parent/1.3/hamcrest-parent-1.3.pom

      <scm>
        <url>https://github.com/hamcrest/JavaHamcrest</url>
        <connection>scm:git:******@****.***:hamcrest/JavaHamcrest.git</connection>
      </scm>
    
      <developers>
        <developer>
          <id>joe.walnes</id>
          <name>Joe Walnes</name>
          <roles>
            <role>Developer</role>
          </roles>
        </developer>
        <developer>
          <id>nat.pryce</id>
          <name>Nat Pryce</name>
          <roles>
    Plain Text
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 1.9K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    etention; import static java.lang.annotation.RetentionPolicy.RUNTIME; import java.lang.annotation.Target; /** * Marks a Hamcrest static factory method so tools recognise them. * A factory method is an equivalent to a named constructor. * * @author Joe Walnes */ @Retention(RUNTIME) @Target({METHOD}) public @interface Factory { } org/hamcrest/FeatureMatcher.java org/hamcrest/FeatureMatcher.java package org.hamcrest; import org.hamcrest.internal.ReflectiveTypeFinder; /** * Supporting class for matching...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 31.9K bytes
    - Viewed (0)
  5. RELEASE.md

    Habernal, Jakub Lipinski, Jacky, Jason Zaman, Jason Zavaglia, jayhpark530,
    jcf94, jefby, Jeff Daily, Jeff Poznanovic, Jeffrey Poznanovic, Jekyll Lai, jer,
    Jeroen BĂ©Dorf, jerryyin, jhalakp, jiakai, Jia Qingtong, Jiankang, JiangXIAO, Joe
    Bowser, Joe Q, Joe Quadrino, Joel Shapiro, Johan Gunnarsson, Jojimon Varghese,
    Jonas Rauber, Jonathan Kyl, Jonathan, Joon, Joppe Geluykens, Joseph Friedman,
    Josh Beal, jtressle, Julian Niedermeier, Junqin Zhang, Justin Dujardin, Justin
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
  6. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-javadoc.jar

    ELEMENT org.hamcrest Annotation Type Factory @Retention(value=RUNTIME) @Target(value=METHOD) public @interface Factory Marks a Hamcrest static factory method so tools recognise them. A factory method is an equivalent to a named constructor. Author: Joe Walnes Overview Package Class Use Tree Deprecated Index Help PREV CLASS NEXT CLASS FRAMES NO FRAMES All Classes SUMMARY: REQUIRED | OPTIONAL DETAIL: ELEMENT org/hamcrest/FeatureMatcher.html Overview Package Class Use Tree Deprecated Index Help PREV...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 236.8K bytes
    - Viewed (0)
  7. doc/go1.17_spec.html

    Given the function and calls
    </p>
    <pre>
    func Greeting(prefix string, who ...string)
    Greeting("nobody")
    Greeting("hello:", "Joe", "Anna", "Eileen")
    </pre>
    
    <p>
    within <code>Greeting</code>, <code>who</code> will have the value
    <code>nil</code> in the first call, and
    <code>[]string{"Joe", "Anna", "Eileen"}</code> in the second.
    </p>
    
    <p>
    If the final argument is assignable to a slice type <code>[]T</code> and
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  8. doc/go_spec.html

    Given the function and calls
    </p>
    <pre>
    func Greeting(prefix string, who ...string)
    Greeting("nobody")
    Greeting("hello:", "Joe", "Anna", "Eileen")
    </pre>
    
    <p>
    within <code>Greeting</code>, <code>who</code> will have the value
    <code>nil</code> in the first call, and
    <code>[]string{"Joe", "Anna", "Eileen"}</code> in the second.
    </p>
    
    <p>
    If the final argument is assignable to a slice type <code>[]T</code> and
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top