Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 811 - 820 of 1,904 for dakota (0.04 seconds)

  1. src/main/java/jcifs/smb1/smb1/SmbConstants.java

        /** Temporary file attribute */
        int ATTR_TEMPORARY = 0x100;
    
        // access mask encoding
        /** File read data access right */
        int FILE_READ_DATA = 0x00000001; // 1
        /** File write data access right */
        int FILE_WRITE_DATA = 0x00000002; // 2
        /** File append data access right */
        int FILE_APPEND_DATA = 0x00000004; // 3
        /** File read extended attributes access right */
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 10.3K bytes
    - Click Count (0)
  2. docs/de/docs/tutorial/request-files.md

    FastAPIs `UploadFile` erbt direkt von Starlettes `UploadFile`, fügt aber ein paar notwendige Teile hinzu, um es kompatibel mit **Pydantic** und anderen Teilen von FastAPI zu machen.
    
    ///
    
    ## Was sind „Formulardaten“ { #what-is-form-data }
    
    Der Weg, wie HTML-Formulare (`<form></form>`) die Daten zum Server senden, verwendet normalerweise eine „spezielle“ Kodierung für diese Daten. Diese unterscheidet sich von JSON.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 8.3K bytes
    - Click Count (0)
  3. src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java

        /**
         * Notify when alternate data stream name changes
         */
        public static final int FILE_NOTIFY_CHANGE_STREAM_NAME = 0x200;
        /**
         * Notify when alternate data stream size changes
         */
        public static final int FILE_NOTIFY_CHANGE_STREAM_SIZE = 0x400;
        /**
         * Notify when alternate data stream is written
         */
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 5.5K bytes
    - Click Count (0)
  4. tests/test_security_oauth2.py

                    "msg": "Field required",
                    "input": None,
                },
            ]
        }
    
    
    def test_strict_login_no_grant_type():
        response = client.post("/login", data={"username": "johndoe", "password": "secret"})
        assert response.status_code == 422
        assert response.json() == {
            "detail": [
                {
                    "type": "missing",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 9.8K bytes
    - Click Count (0)
  5. .gitignore

    /target/
    /work/
    /bin/
    /mydbflute/
    /solr/data/
    /src/main/webapp/WEB-INF/classes/
    /src/main/webapp/WEB-INF/lib/
    /src/main/webapp/WEB-INF/site/
    /src/main/webapp/WEB-INF/plugin/*
    !/src/main/webapp/WEB-INF/plugin/.keep
    /src/main/webapp/WEB-INF/env/crawler/lib/
    /src/main/webapp/WEB-INF/env/suggest/lib/
    /src/main/webapp/WEB-INF/env/thumbnail/lib/
    /src/main/webapp/WEB-INF/thumbnails/
    /src/main/webapp/jar/
    /dbflute_fess/extlib/*
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Aug 31 08:19:00 GMT 2025
    - 1K bytes
    - Click Count (0)
  6. architecture/build-execution-model.md

    3. If the daemon is not able to run the request, for example it is already running a request or is shutting down, it rejects the request. The client starts again.
    4. The daemon runs the request, sending back data such as logging output or tooling API events and intermediate models while doing so.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jun 12 09:50:57 GMT 2025
    - 907 bytes
    - Click Count (0)
  7. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateResponse.java

                    // Validate that context data doesn't exceed buffer
                    if (ncpos + dataLen > buffer.length) {
                        throw new SMBProtocolDecodingException("Negotiate context data extends beyond buffer at position " + i
                                + " (data start: " + ncpos + ", length: " + dataLen + ", buffer size: " + buffer.length + ")");
                    }
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 24K bytes
    - Click Count (0)
  8. src/main/java/jcifs/internal/CommonServerMessageBlock.java

     *
     * @author mbechler
     */
    public interface CommonServerMessageBlock extends Message {
    
        /**
         * Decode message data from the given byte array
         *
         * @param buffer the byte array containing the message data
         * @param bufferIndex the starting index in the buffer
         * @return message length
         * @throws SMBProtocolDecodingException if decoding fails
         */
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 3.4K bytes
    - Click Count (0)
  9. docs/pt/docs/tutorial/request-forms.md

    # Dados do formulário { #form-data }
    
    Quando você precisar receber campos de formulário em vez de JSON, você pode usar `Form`.
    
    /// info | Informação
    
    Para usar formulários, primeiro instale [`python-multipart`](https://github.com/Kludex/python-multipart).
    
    Certifique-se de criar um [ambiente virtual](../virtual-environments.md), ativá-lo e então instalá-lo, por exemplo:
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  10. docs/fr/docs/tutorial/request-forms.md

    # Données de formulaire { #form-data }
    
    Lorsque vous devez recevoir des champs de formulaire au lieu de JSON, vous pouvez utiliser `Form`.
    
    /// info
    
    Pour utiliser les formulaires, installez d'abord [`python-multipart`](https://github.com/Kludex/python-multipart).
    
    Assurez-vous de créer un [environnement virtuel](../virtual-environments.md), de l'activer, puis installez-le, par exemple :
    
    ```console
    $ pip install python-multipart
    ```
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 3.1K bytes
    - Click Count (0)
Back to Top