Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 97 for Good (0.02 sec)

  1. android/guava/src/com/google/common/net/InetAddresses.java

       * @since 10.0
       */
      public static String toAddrString(InetAddress ip) {
        checkNotNull(ip);
        if (ip instanceof Inet4Address) {
          // For IPv4, Java's formatting is good enough.
          // requireNonNull accommodates Android's @RecentlyNullable annotation on getHostAddress
          return requireNonNull(ip.getHostAddress());
        }
        byte[] bytes = ip.getAddress();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Feb 19 21:24:11 UTC 2025
    - 47.4K bytes
    - Viewed (0)
  2. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    fly
    fly.dev
    flå.no
    fm
    fm.br
    fm.it
    fm.jo
    fm.no
    fnc.fr-par.scw.cloud
    fnd.br
    fnwk.site
    fo
    foggia.it
    folionetwork.site
    folkebibl.no
    folldal.no
    foo
    food
    fool.jp
    football
    for-better.biz
    for-more.biz
    for-our.info
    for-some.biz
    for-the.biz
    ford
    forde.no
    forex
    forgeblocks.com
    forgot.her.name
    forgot.his.name
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 22:00:49 UTC 2025
    - 129.6K bytes
    - Viewed (3)
  3. src/main/java/jcifs/smb/SmbTransportImpl.java

                        && this.sbuf[6] == (byte) 'M' && this.sbuf[7] == (byte) 'B') {
                    break; /* all good (SMB) */
                }
    
                /* out of phase maybe? */
                /* inch forward 1 byte and try again */
                for (int i = 0; i < 35; i++) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
  4. api/maven-api-model/src/main/mdo/maven.mdo

      |   be done with a regex, but we need inter-field validation and rules which could be
      |   dealt with by something like drools.
      |
      | o i18n: would be good to be able to have names/descriptions/specifications
      |   in as many languages as possible. (see MNG-3626)
      |
      | o annotation mechanism so that changes to the model can be accurately tracked.
      |
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Aug 07 14:32:16 UTC 2025
    - 132.7K bytes
    - Viewed (0)
  5. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    ipifony.net
    
    // ir.md : https://nic.ir.md
    // Submitted by Ali Soizi <******@****.***>
    ir.md
    
    // is-a-good.dev : https://is-a-good.dev
    // Submitted by William Harrison <webmaster@is-a-good.dev>
    is-a-good.dev
    
    // is-a.dev : https://is-a.dev
    // Submitted by William Harrison <******@****.***>
    is-a.dev
    
    // IServ GmbH : https://iserv.de
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Dec 27 13:39:56 UTC 2024
    - 309.7K bytes
    - Viewed (0)
  6. okhttp/src/androidMain/assets/PublicSuffixDatabase.list

    fly
    fly.dev
    flå.no
    fm
    fm.br
    fm.it
    fm.jo
    fm.no
    fnc.fr-par.scw.cloud
    fnd.br
    fnwk.site
    fo
    foggia.it
    folionetwork.site
    folkebibl.no
    folldal.no
    foo
    food
    fool.jp
    football
    for-better.biz
    for-more.biz
    for-our.info
    for-some.biz
    for-the.biz
    ford
    forde.no
    forex
    forgeblocks.com
    forgot.her.name
    forgot.his.name
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Dec 31 14:50:53 UTC 2024
    - 129.6K bytes
    - Viewed (2)
  7. CHANGELOG/CHANGELOG-1.6.md

    * Exclude nodes labeled as master from LoadBalancer / NodePort; restores documented behaviour. ([#44745](https://github.com/kubernetes/kubernetes/pull/44745), [@justinsb](https://github.com/justinsb))
    * Fix for [scaling down remaining good replicas when a failed Deployment is paused](https://github.com/kubernetes/kubernetes/issues/44436). ([#44616](https://github.com/kubernetes/kubernetes/pull/44616), [@kargakis](https://github.com/kargakis))
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (0)
  8. samples/slack/src/main/java/okhttp3/slack/RtmSession.java

      //                the body from slack is a 0-byte-buffer
      @Override public synchronized void onOpen(WebSocket webSocket, Response response) {
        System.out.println("onOpen: " + response);
      }
    
      // TOOD(jwilson): decode incoming messages and dispatch them somewhere.
      @Override public void onMessage(WebSocket webSocket, String text) {
        System.out.println("onMessage: " + text);
      }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Nov 19 20:16:58 UTC 2016
    - 2.4K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/eventbus/EventBusTest.java

            new Object() {
              @Subscribe
              public void eat(Object food) {
                objectEvents.add(food);
              }
            };
    
        List<Comparable<?>> compEvents = new ArrayList<>();
        Object compCatcher =
            new Object() {
              @Subscribe
              public void eat(Comparable<?> food) {
                compEvents.add(food);
              }
            };
        bus.register(stringCatcher);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.20.md

          exists in k/k repo since we removed federation/, and I don't see it
          in https://github.com/kubernetes-sigs/kubefed/ either. I'm assuming
          that it's gone for good now.
      
      - bazel: output go_binary rule directly from go_binary_conditional_pure
        
        From: [@mikedanese](https://github.com/mikedanese):
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jan 19 21:05:45 UTC 2022
    - 409K bytes
    - Viewed (0)
Back to top