Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 91 - 100 of 294 for median (0.04 seconds)

  1. .ci/scripts/packaging-test.sh

    cp -v .ci/init.gradle $HOME/.gradle/init.d
    
    unset JAVA_HOME
    
    if [ -f "/etc/os-release" ] ; then
        cat /etc/os-release
        . /etc/os-release
        if [[ "$ID" == "debian" || "$ID_LIKE" == "debian" ]] ; then
            # FIXME: The base image should not have rpm installed
            sudo rm -Rf /usr/bin/rpm
            # Work around incorrect lintian version
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu May 06 21:46:09 GMT 2021
    - 2.3K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/hash/LittleEndianByteArray.java

            // The hardware is big-endian, so we need to reverse the order of the bytes.
            return Long.reverseBytes(bigEndian);
          }
    
          @Override
          public void putLongLittleEndian(byte[] array, int offset, long value) {
            // Reverse the order of the bytes before storing, since we're on big-endian hardware.
            long littleEndianValue = Long.reverseBytes(value);
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Apr 01 17:27:13 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  3. src/packaging/common/scripts/postinst

    ${packaging.scripts.header}
    
    #
    # This script is executed in the post-installation phase
    #
    #   On Debian,
    #       $1=configure : is set to 'configure' and if $2 is set, it is an upgrade
    #
    #   On RedHat,
    #       $1=0         : indicates a removal
    #       $1=1         : indicates an upgrade
    
    
    
    # Sets the default values for fess variables used in this script
    FESS_USER="${packaging.fess.user}"
    FESS_GROUP="${packaging.fess.group}"
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 3.1K bytes
    - Click Count (0)
  4. lib/time/update.bash

    tar xzf tzcode$CODE.tar.gz
    tar xzf tzdata$DATA.tar.gz
    
    # The PACKRATLIST and PACKRATDATA options are copied from Ubuntu:
    # https://git.launchpad.net/ubuntu/+source/tzdata/tree/debian/rules?h=debian/sid
    #
    # You can see the description of these make variables in the tzdata Makefile:
    # https://github.com/eggert/tz/blob/main/Makefile
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Dec 11 16:47:56 GMT 2025
    - 2.1K bytes
    - Click Count (0)
  5. docs/en/docs/tutorial/request-forms.md

    **FastAPI** will make sure to read that data from the right place instead of JSON.
    
    /// note | Technical Details
    
    Data from forms is normally encoded using the "media type" `application/x-www-form-urlencoded`.
    
    But when the form includes files, it is encoded as `multipart/form-data`. You'll read about handling files in the next chapter.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  6. docs/tr/docs/tutorial/request-files.md

    ```console
    $ pip install python-multipart
    ```
    
    Bunun nedeni, upload edilen dosyaların "form data" olarak gönderilmesidir.
    
    ///
    
    ## `File` Import Edin { #import-file }
    
    `fastapi` içinden `File` ve `UploadFile` import edin:
    
    {* ../../docs_src/request_files/tutorial001_an_py310.py hl[3] *}
    
    ## `File` Parametrelerini Tanımlayın { #define-file-parameters }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  7. src/test/java/jcifs/internal/smb1/net/TestSmbComTransactionResponseReader.java

            String msg = "\u00A1\u00A2"; // two Unicode characters
            byte[] encoded = encodeUnicode(msg);
            assertEquals(4, encoded.length, "Encoded Unicode string should be 4 bytes");
    
            // Verify little-endian encoding
            assertEquals((byte) 0xA1, encoded[0], "First byte of first character");
            assertEquals((byte) 0x00, encoded[1], "Second byte of first character");
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 4.2K bytes
    - Click Count (0)
  8. docs/fr/docs/tutorial/schema-extra-example.md

        * `Path()`
        * `Query()`
        * `Header()`
        * `Cookie()`
    * [`Request Body Object`, dans le champ `content`, sur le `Media Type Object` (dans la spécification)](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#media-type-object) qui était utilisé par les éléments FastAPI :
        * `Body()`
        * `File()`
        * `Form()`
    
    /// info
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 10.2K bytes
    - Click Count (0)
  9. docs/es/docs/tutorial/schema-extra-example.md

        * `Path()`
        * `Query()`
        * `Header()`
        * `Cookie()`
    * [`Request Body Object`, en el campo `content`, sobre el `Media Type Object` (en la especificación)](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#media-type-object) que era usado por FastAPI:
        * `Body()`
        * `File()`
        * `Form()`
    
    /// info | Información
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 9.5K bytes
    - Click Count (0)
  10. docs/pt/docs/tutorial/schema-extra-example.md

        * `Path()`
        * `Query()`
        * `Header()`
        * `Cookie()`
    * [`Request Body Object`, no campo `content`, no `Media Type Object` (na especificação)](https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#media-type-object), usado no FastAPI por:
        * `Body()`
        * `File()`
        * `Form()`
    
    /// info | Informação
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 9.5K bytes
    - Click Count (0)
Back to Top