Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Stamford (0.17 sec)

  1. guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              "www.com",
              "google.com",
              "www7.google.co.uk",
              "google.Co.uK",
              "jobs.kt.com.",
              "home.netscape.com",
              "web.stanford.edu",
              "stanford.edu",
              "state.ca.us",
              "www.state.ca.us",
              "state.ca.us",
              "pvt.k12.ca.us",
              "www.rave.ca.",
              "cnn.ca",
              "ledger-enquirer.com",
    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)
  2. android/guava-tests/test/com/google/common/net/InternetDomainNameTest.java

              "www.com",
              "google.com",
              "www7.google.co.uk",
              "google.Co.uK",
              "jobs.kt.com.",
              "home.netscape.com",
              "web.stanford.edu",
              "stanford.edu",
              "state.ca.us",
              "www.state.ca.us",
              "state.ca.us",
              "pvt.k12.ca.us",
              "www.rave.ca.",
              "cnn.ca",
              "ledger-enquirer.com",
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Mar 05 13:16:00 GMT 2024
    - 17.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/math/IntMath.java

          // But in gcd(a - b, b), a - b is even and b is odd, so we can divide out powers of two.
    
          // We bend over backwards to avoid branching, adapting a technique from
          // http://graphics.stanford.edu/~seander/bithacks.html#IntegerMinOrMax
    
          int delta = a - b; // can't overflow, since a and b are nonnegative
    
          int minDeltaOrZero = delta & (delta >> (Integer.SIZE - 1));
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 23.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/math/LongMath.java

          // But in gcd(a - b, b), a - b is even and b is odd, so we can divide out powers of two.
    
          // We bend over backwards to avoid branching, adapting a technique from
          // http://graphics.stanford.edu/~seander/bithacks.html#IntegerMinOrMax
    
          long delta = a - b; // can't overflow, since a and b are nonnegative
    
          long minDeltaOrZero = delta & (delta >> (Long.SIZE - 1));
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 44.6K bytes
    - Viewed (0)
Back to top