Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 123 for Ja (0.04 sec)

  1. src/internal/bytealg/compare_386.s

    	// 0-3 bytes in common
    small:
    	LEAL	(BP*8), CX
    	NEGL	CX
    	JEQ	allsame
    
    	// load si
    	CMPB	SI, $0xfc
    	JA	si_high
    	MOVL	(SI), SI
    	JMP	si_finish
    si_high:
    	MOVL	-4(SI)(BP*1), SI
    	SHRL	CX, SI
    si_finish:
    	SHLL	CX, SI
    
    	// same for di
    	CMPB	DI, $0xfc
    	JA	di_high
    	MOVL	(DI), DI
    	JMP	di_finish
    di_high:
    	MOVL	-4(DI)(BP*1), DI
    	SHRL	CX, DI
    di_finish:
    	SHLL	CX, DI
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 23 21:22:58 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/cs/stopwords.txt

    nebo
    ten
    tak
    má
    při
    od
    po
    jsou
    jak
    další
    ale
    si
    se
    ve
    to
    jako
    za
    zpět
    ze
    do
    pro
    je
    na
    atd
    atp
    jakmile
    přičemž
    
    on
    ona
    ono
    oni
    ony
    my
    vy
    jí
    ji
    mě
    mne
    jemu
    tomu
    těm
    těmu
    němu
    němuž
    jehož
    jíž
    jelikož
    jež
    jakož
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 992 bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/opensearch/extension/kuromoji/index/analysis/KuromojiKatakanaStemmerFactory.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.opensearch.extension.kuromoji.index.analysis;
    
    import org.apache.lucene.analysis.TokenStream;
    import org.apache.lucene.analysis.ja.JapaneseKatakanaStemFilter;
    import org.opensearch.common.settings.Settings;
    import org.opensearch.env.Environment;
    import org.opensearch.index.IndexSettings;
    import org.opensearch.index.analysis.AbstractTokenFilterFactory;
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess/nl/stopwords.txt

    hebben
    deze
    u
    want
    nog
    zal
    me
    zij
    nu
    ge
    geen
    omdat
    iets
    worden
    toch
    al
    waren
    veel
    meer
    doen
    toen
    moet
    ben
    zonder
    kan
    hun
    dus
    alles
    onder
    ja
    eens
    hier
    wie
    werd
    altijd
    doch
    wordt
    wezen
    kunnen
    ons
    zelf
    tegen
    na
    reeds
    wil
    kon
    niets
    uw
    iemand
    geweest
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 592 bytes
    - Viewed (0)
  5. src/internal/bytealg/equal_amd64.s

    	JEQ	equal
    
    	LEAQ	0(BX*8), CX
    	NEGQ	CX
    
    	CMPB	SI, $0xf8
    	JA	si_high
    
    	// load at SI won't cross a page boundary.
    	MOVQ	(SI), SI
    	JMP	si_finish
    si_high:
    	// address ends in 11111xxx. Load up to bytes we want, move to correct position.
    	MOVQ	-8(SI)(BX*1), SI
    	SHRQ	CX, SI
    si_finish:
    
    	// same for DI.
    	CMPB	DI, $0xf8
    	JA	di_high
    	MOVQ	(DI), DI
    	JMP	di_finish
    di_high:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 16:34:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. docs/pt/docs/benchmarks.md

            * **FastAPI**: (utiliza Starlette) um _microframework_ de API com vários recursos adicionais para construção de APIs, com validação de dados, etc.
    
    * **Uvicorn**:
        * Terá a melhor performance,  que ele não tem muito código extra além do servidor em si.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  7. src/runtime/memmove_amd64.s

    	CMPQ	BX, $0x100000
    	JA		gobble_big_data_bwd
    	SUBQ	$0x80, BX
    gobble_mem_bwd_loop:
    	VMOVDQU	-0x20(SI), Y0
    	VMOVDQU	-0x40(SI), Y1
    	VMOVDQU	-0x60(SI), Y2
    	VMOVDQU	-0x80(SI), Y3
    	SUBQ	$0x80, SI
    	VMOVDQA	Y0, -0x20(DI)
    	VMOVDQA	Y1, -0x40(DI)
    	VMOVDQA	Y2, -0x60(DI)
    	VMOVDQA	Y3, -0x80(DI)
    	SUBQ	$0x80, DI
    	SUBQ	$0x80, BX
    	JA		gobble_mem_bwd_loop
    	// Let's store unaligned data
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 10 15:52:08 UTC 2022
    - 12.5K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/core/misc/LocaleUtilTest.java

         * @throws Exception
         */
        public void testGetLocale() throws Exception {
            assertEquals("1", LocaleUtil.getDefault(), LocaleUtil.getLocale(null));
            assertEquals("2", Locale.JAPANESE, LocaleUtil.getLocale("ja"));
            assertEquals("3", Locale.JAPAN, LocaleUtil.getLocale("ja_JP"));
        }
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/opensearch/extension/kuromoji/index/analysis/KuromojiBaseFormFilterFactory.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.opensearch.extension.kuromoji.index.analysis;
    
    import org.apache.lucene.analysis.TokenStream;
    import org.apache.lucene.analysis.ja.JapaneseBaseFormFilter;
    import org.opensearch.common.settings.Settings;
    import org.opensearch.env.Environment;
    import org.opensearch.index.IndexSettings;
    import org.opensearch.index.analysis.AbstractTokenFilterFactory;
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/fess/ca/stopwords.txt

    eren
    éreu
    es
    és
    esta
    està
    estàvem
    estaven
    estàveu
    esteu
    et
    etc
    ets
    fins
    fora
    gairebé
    ha
    han
    has
    havia
    he
    hem
    heu
    hi 
    ho
    i
    igual
    iguals
    ja
    l'hi
    la
    les
    li
    li'n
    llavors
    m'he
    ma
    mal
    malgrat
    mateix
    mateixa
    mateixes
    mateixos
    me
    mentre
    més
    meu
    meus
    meva
    meves
    molt
    molta
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 1.3K bytes
    - Viewed (0)
Back to top