Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for City (0.18 sec)

  1. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     * factory method to construct instances can have their instance methods checked. For example:
     *
     * <pre>
     * public class Address {
     *   private final String city;
     *   private final String state;
     *   private final String zipcode;
     *
     *   public Address(String city, String state, String zipcode) {...}
     *
     *   {@literal @Override} public boolean equals(Object obj) {...}
     *   {@literal @Override} public int hashCode() {...}
     *   ...
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Fri May 12 19:22:18 GMT 2023
    - 17.5K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

          }
    
          assertEquals(expectedName, domain.toString());
        }
      }
    
      public void testPublicSuffixExclusion() {
        InternetDomainName domain = InternetDomainName.from("foo.city.yokohama.jp");
        assertTrue(domain.hasPublicSuffix());
        assertEquals("yokohama.jp", domain.publicSuffix().toString());
    
        // Behold the weirdness!
        assertFalse(domain.publicSuffix().isPublicSuffix());
      }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Mar 05 13:16:00 GMT 2024
    - 17.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/graph/ImmutableNetwork.java

       * networks. Example:
       *
       * <pre>{@code
       * static final ImmutableNetwork<City, Train> TRAIN_NETWORK =
       *     NetworkBuilder.undirected()
       *         .allowsParallelEdges(true)
       *         .<City, Train>immutable()
       *         .addEdge(PARIS, BRUSSELS, Thalys.trainNumber("1111"))
       *         .addEdge(PARIS, BRUSSELS, RegionalTrain.trainNumber("2222"))
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 01 16:30:37 GMT 2022
    - 9.6K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/net/InternetDomainNameTest.java

          }
    
          assertEquals(expectedName, domain.toString());
        }
      }
    
      public void testPublicSuffixExclusion() {
        InternetDomainName domain = InternetDomainName.from("foo.city.yokohama.jp");
        assertTrue(domain.hasPublicSuffix());
        assertEquals("yokohama.jp", domain.publicSuffix().toString());
    
        // Behold the weirdness!
        assertFalse(domain.publicSuffix().isPublicSuffix());
      }
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Mar 05 13:16:00 GMT 2024
    - 17.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/graph/ImmutableValueGraph.java

       * graphs. Example:
       *
       * <pre>{@code
       * static final ImmutableValueGraph<City, Distance> CITY_ROAD_DISTANCE_GRAPH =
       *     ValueGraphBuilder.undirected()
       *         .<City, Distance>immutable()
       *         .putEdgeValue(PARIS, BERLIN, kilometers(1060))
       *         .putEdgeValue(PARIS, BRUSSELS, kilometers(317))
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Feb 01 16:30:37 GMT 2022
    - 7.7K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     * factory method to construct instances can have their instance methods checked. For example:
     *
     * <pre>
     * public class Address {
     *   private final String city;
     *   private final String state;
     *   private final String zipcode;
     *
     *   public Address(String city, String state, String zipcode) {...}
     *
     *   {@literal @Override} public boolean equals(Object obj) {...}
     *   {@literal @Override} public int hashCode() {...}
     *   ...
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri May 12 19:22:18 GMT 2023
    - 17.5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    himself upon tiptoe, put his mouth close to her ear, and
    whispered `She's under sentence of execution.'
    
      `What for?' said Alice.
    
      `Did you say "What a pity!"?' the Rabbit asked.
    
      `No, I didn't,' said Alice:  `I don't think it's at all a pity.
    I said "What for?"'
    
      `She boxed the Queen's ears--' the Rabbit began.  Alice gave a
    little scream of laughter.  `Oh, hush!' the Rabbit whispered in a
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    himself upon tiptoe, put his mouth close to her ear, and
    whispered `She's under sentence of execution.'
    
      `What for?' said Alice.
    
      `Did you say "What a pity!"?' the Rabbit asked.
    
      `No, I didn't,' said Alice:  `I don't think it's at all a pity.
    I said "What for?"'
    
      `She boxed the Queen's ears--' the Rabbit began.  Alice gave a
    little scream of laughter.  `Oh, hush!' the Rabbit whispered in a
    Plain Text
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
Back to top