Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 5 of 5 for addr2 (0.02 seconds)

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

      public static InetAddress decrement(InetAddress address) {
        byte[] addr = address.getAddress();
        int i = addr.length - 1;
        while (i >= 0 && addr[i] == (byte) 0x00) {
          addr[i] = (byte) 0xff;
          i--;
        }
    
        checkArgument(i >= 0, "Decrementing %s would wrap.", address);
    
        addr[i]--;
        return bytesToInetAddress(addr, null);
      }
    
      /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Mar 19 18:53:45 GMT 2026
    - 47.7K bytes
    - Click Count (0)
  2. docs/en/docs/contributing.md

    Go into the language directory, for the main docs in English it's at `docs/en/`:
    
    ```console
    $ cd docs/en/
    ```
    
    Then run `mkdocs` in that directory:
    
    ```console
    $ mkdocs serve --dev-addr 127.0.0.1:8008
    ```
    
    ///
    
    #### Typer CLI (optional)
    
    The instructions here show you how to use the script at `./scripts/docs.py` with the `python` program directly.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 23 13:59:26 GMT 2026
    - 10.6K bytes
    - Click Count (0)
  3. scripts/docs.py

        if lang is None:
            lang = "en"
        lang_path: Path = docs_path / lang
        # Enable line numbers during local development to make it easier to highlight
        args = ["mkdocs", "serve", "--dev-addr", "127.0.0.1:8008"]
        if dirty:
            args.append("--dirty")
        subprocess.run(
            args, env={**os.environ, "LINENUMS": "true"}, cwd=lang_path, check=True
        )
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 17:46:10 GMT 2026
    - 25.4K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

            if (proxy == null) {
                if (StringUtil.isNotBlank(getHttpProxyHost()) && getHttpProxyPortAsInteger() != null) {
                    final SocketAddress addr = new InetSocketAddress(getHttpProxyHost(), getHttpProxyPortAsInteger());
                    proxy = new Proxy(Type.HTTP, addr);
                    if (StringUtil.isNotBlank(getHttpProxyUsername())) {
                        Authenticator.setDefault(new Authenticator() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 92.3K bytes
    - Click Count (0)
  5. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

    0007sprites\u0009streamlit\u0007telebit\u0009typedream\u0005upsun\u0006vercel\u0003wal\u0006wasmer\u0003web\u0008windsurf\u0005wnext\u0006zeabur\u0006zerops\u0003gob\u0006musica\u0006mutual\u0003seg\u0006senasa\u0003tur\u0004e164\u0004home\u0007in-addr\u0003ip6\u0004iris\u0003uri\u0003urn\u0007cloudns\u0006daemon\u0003dix\u000b123webseite\u000412hp\u00032ix\u00014\u00054lima\u0009funkfeuer\u0009futurecms\rfuturehosting\rfuturemailing\u0009lima-city\u000cmyspreadshop\u0002or\u0008ortsinfo\u0004pr...
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 06 20:41:51 GMT 2026
    - 290.5K bytes
    - Click Count (1)
Back to Top