Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 61 for materials (0.06 sec)

  1. test_docs.sh

    #!/bin/bash
    
    # The website is built using MkDocs with the Material theme.
    # https://squidfunk.github.io/mkdocs-material/
    # It requires Python to run.
    # Install the packages with the following command:
    # pip install mkdocs mkdocs-material mkdocs-redirects
    
    set -ex
    
    # Test generating the javadoc jars
    ./gradlew publishToMavenLocal -DRELEASE_SIGNING_ENABLED=false
    
    # Generate the API docs
    ./gradlew dokkaHtmlMultiModule
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Apr 17 13:52:16 UTC 2024
    - 718 bytes
    - Viewed (1)
  2. docs/recipes.md

    === ":material-language-kotlin: Kotlin"
        ```kotlin
          private val client = OkHttpClient()
    
          fun run() {
            val request = Request.Builder()
                .url("https://publicobject.com/helloworld.txt")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Aug 30 17:01:12 UTC 2025
    - 47.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/ntlmssp/Type2Message.java

        }
    
        /**
         * Creates a Type-2 message using the given raw Type-2 material.
         *
         * @param material The raw Type-2 material used to construct this message.
         * @throws IOException If an error occurs while parsing the material.
         */
        public Type2Message(final byte[] material) throws IOException {
            parse(material);
        }
    
        /**
         * Returns the challenge for this message.
         *
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 13K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/Type1Message.java

        /**
         * Creates a Type-1 message using the given raw Type-1 material.
         *
         * @param material
         *            The raw Type-1 material used to construct this message.
         * @throws IOException
         *             If an error occurs while parsing the material.
         */
        public Type1Message(final byte[] material) throws IOException {
            parse(material);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/ntlmssp/Type3Message.java

            final int lmResponseOffset = readULong(material, 16);
            final byte[] ntResponse = readSecurityBuffer(material, 20);
            final int ntResponseOffset = readULong(material, 24);
            final byte[] domain = readSecurityBuffer(material, 28);
            final int domainOffset = readULong(material, 32);
            final byte[] user = readSecurityBuffer(material, 36);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 24.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ntlmssp/Type2Message.java

        /**
         * Creates a Type-2 message using the given raw Type-2 material.
         *
         * @param material
         *            The raw Type-2 material used to construct this message.
         * @throws IOException
         *             If an error occurs while parsing the material.
         */
        public Type2Message(final byte[] material) throws IOException {
            parse(material);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 14.4K bytes
    - Viewed (0)
  7. src/main/java/jcifs/ntlmssp/Type3Message.java

        /**
         * Creates a Type-3 message using the given raw Type-3 material.
         *
         * @param material
         *            The raw Type-3 material used to construct this message.
         * @throws IOException
         *             If an error occurs while parsing the material.
         */
        public Type3Message(final byte[] material) throws IOException {
            parse(material);
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  8. docs/en/overrides/partials/copyright.html

        </div>
        {% if not config.extra.generator == false %}
        Made with
        <a href="https://squidfunk.github.io/mkdocs-material/" target="_blank" rel="noopener">
            Material for MkDocs
        </a>
        {% endif %}
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Feb 04 20:56:59 UTC 2024
    - 450 bytes
    - Viewed (0)
  9. docs/pt/docs/resources/index.md

    # Recursos
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Apr 04 14:20:02 UTC 2024
    - 80 bytes
    - Viewed (0)
  10. docs/en/mkdocs.insiders.yml

    plugins:
      social:
        cards_layout_options:
          logo: ../en/docs/img/icon-white.svg
      typeset:
    markdown_extensions:
      material.extensions.preview:
        targets:
          include:
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Wed Aug 14 14:33:27 UTC 2024
    - 192 bytes
    - Viewed (0)
Back to top