Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 129 for dI (2.23 sec)

  1. src/main/resources/fess_label_it.properties

    labels.menu_system_log=Informazioni di sistema
    labels.menu_system_info=Informazioni di configurazione
    labels.menu_crawling_info=Informazioni di scansione
    labels.menu_log=File di log
    labels.menu_jobLog=Log di lavoro
    labels.menu_searchLog=Log di ricerca
    labels.menu_failure_url=URL di errore
    labels.menu_search_list=Ricerca
    labels.menu_backup=Backup
    labels.menu_access_token=Token di accesso
    labels.menu_maintenance=Manutenzione
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 04:56:21 UTC 2025
    - 43.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/Encdec.java

         * @param dst the destination byte array
         * @param di the starting index in the destination array
         * @return the number of bytes written (4)
         */
        public static int enc_uint32be(final int i, final byte[] dst, int di) {
            dst[di] = (byte) (i >> 24 & 0xFF);
            di++;
            dst[di++] = (byte) (i >> 16 & 0xFF);
            dst[di++] = (byte) (i >> 8 & 0xFF);
            dst[di] = (byte) (i & 0xFF);
            return 4;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  3. dbflute_fess/dfprop/dependencyInjectionMap.dfprop

        #  The package name(output directory) of DBFlute DI configuration for Lasta Di.
        #
        # @LastaDiOnly
        #; dbfluteDiXmlPackageName = ../resources
        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o dbfluteDiXmlFileName: (NotRequired - Default 'dbflute.xml')
        #  The file name of DBFlute DI configuration for Lasta Di.
        #
        # @LastaDiOnly
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 6.5K bytes
    - Viewed (0)
  4. docs/it/docs/index.md

    * Documenterà tutto con OpenAPI, che può essere usato per:
        * Sistemi di documentazione interattivi.
        * Sistemi di generazione di codice dal lato client, per molti linguaggi.
    * Fornirà 2 interfacce di documentazione dell'API interattive.
    
    ---
    
    Questa è solo la punta dell'iceberg, ma dovresti avere già un'idea di come il tutto funzioni.
    
    Prova a cambiare questa riga di codice:
    
    ```Python
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 19.5K bytes
    - Viewed (0)
  5. docs/id/docs/tutorial/first-steps.md

    /// info | `@decorator` Info
    
    Sintaksis `@sesuatu` di Python disebut "dekorator".
    
    Dekorator ditempatkan di atas fungsi. Seperti sebuah topi cantik (Saya pikir istilah ini berasal dari situ).
    
    "dekorator" memanggil dan bekerja dengan fungsi yang ada di bawahnya
    
    Pada kondisi ini, dekorator ini memberi tahu **FastAPI** bahwa fungsi di bawah nya berhubungan dengan **path** `/` dengan **operasi** `get`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Dec 12 21:46:36 UTC 2024
    - 12K bytes
    - Viewed (0)
  6. docs/id/docs/tutorial/path-params.md

    /// tip | Tips
    
    Anda mungkin perlu parameter berisi `/home/johndoe/myfile.txt` di awali garis belakang (`/`).
    
    Di kondisi ini, URL nya menjadi: `/files//home/johndoe/myfile.txt`, dengan dua garis belakang (`//`) di antara `files` dan `home`.
    
    ///
    
    ## Ringkasan
    
    Di **FastAPI** dengan menggunakan deklarasi tipe Python standar, pendek, intuitif, anda mendapatkan:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:29:01 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  7. cmd/erasure.go

    			di.DrivePath = info.MountPath
    			di.TotalSpace = info.Total
    			di.UsedSpace = info.Used
    			di.AvailableSpace = info.Free
    			di.UUID = info.ID
    			di.Major = info.Major
    			di.Minor = info.Minor
    			di.RootDisk = info.RootDisk
    			di.Healing = info.Healing
    			di.Scanning = info.Scanning
    			di.State = diskErrToDriveState(err)
    			di.FreeInodes = info.FreeInodes
    			di.UsedInodes = info.UsedInodes
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 16.1K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/util/Encdec.java

         * @param di the starting index in the destination array
         * @return the number of bytes written (4)
         */
        public static int enc_uint32be(final int i, final byte[] dst, int di) {
            dst[di] = (byte) (i >> 24 & 0xFF);
            di++;
            dst[di++] = (byte) (i >> 16 & 0xFF);
            dst[di++] = (byte) (i >> 8 & 0xFF);
            dst[di] = (byte) (i & 0xFF);
            return 4;
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 18.5K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/mylasta/creator/PagerCreatorTest.java

     */
    package org.codelibs.fess.mylasta.creator;
    
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.lastaflute.di.core.assembler.AutoBindingDefFactory;
    import org.lastaflute.di.core.customizer.ComponentCustomizer;
    import org.lastaflute.di.core.meta.impl.InstanceDefFactory;
    import org.lastaflute.di.naming.NamingConvention;
    // NamingConventionImpl removed - using mock instead
    
    public class PagerCreatorTest extends UnitFessTestCase {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.6K bytes
    - Viewed (0)
  10. docs/id/docs/index.md

    Jika anda mengembangkan app <abbr title="Command Line Interface">CLI</abbr> yang digunakan di terminal bukan sebagai API web, kunjungi <a href="https://typer.tiangolo.com/" class="external-link" target="_blank">**Typer**</a>.
    
    **Typer** adalah saudara kecil FastAPI. Dan ditujukan sebagai **CLI FastAPI**. ⌨️ 🚀
    
    ## Prayarat
    
    FastAPI berdiri di pundak raksasa:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:49:48 UTC 2025
    - 20.5K bytes
    - Viewed (0)
Back to top