Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 5,215 for TXT (0.03 sec)

  1. src/main/resources/fess_indices/fess/fa/stopwords.txt

    # https://github.com/apache/lucene-solr/blob/master/lucene/analysis/common/src/resources/org/apache/lucene/analysis/fa/stopwords.txt
    انان
    نداشته
    سراسر
    خياه
    ايشان
    وي
    تاكنون
    بيشتري
    دوم
    پس
    ناشي
    وگو
    يا
    داشتند
    سپس
    هنگام
    هرگز
    پنج
    نشان
    امسال
    ديگر
    گروهي
    شدند
    چطور
    ده
    و
    دو
    نخستين
    ولي
    چرا
    چه
    وسط
    ه
    كدام
    قابل
    يك
    رفت
    هفت
    همچنين
    در
    هزار
    بله
    بلي
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/it/stopwords.txt

    # https://github.com/apache/lucene-solr/blob/master/lucene/analysis/common/src/resources/org/apache/lucene/analysis/snowball/italian_stop.txt
    ad
    al
    allo
    ai
    agli
    all
    agl
    alla
    alle
    con
    col
    coi
    da
    dal
    dallo
    dai
    dagli
    dall
    dagl
    dalla
    dalle
    di
    del
    dello
    dei
    degli
    dell
    degl
    della
    delle
    in
    nel
    nello
    nei
    negli
    nell
    negl
    nella
    nelle
    su
    sul
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/build_no_go.txt

    go 1.16
    -- empty/test/test_test.go --
    package p
    -- empty/testxtest/test_test.go --
    package p
    -- empty/testxtest/xtest_test.go --
    package p_test
    -- empty/xtest/xtest_test.go --
    package p_test
    -- exclude/empty/x.txt --
    -- exclude/ignore/_x.go --
    package x
    -- exclude/x.go --
    // +build linux,!linux
    
    package x
    -- exclude/x_linux.go --
    // +build windows
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 748 bytes
    - Viewed (0)
  4. src/main/resources/fess_indices/fess/en-ie/stopwords.txt

    # https://github.com/apache/lucene-solr/blob/master/lucene/analysis/common/src/resources/org/apache/lucene/analysis/ga/stopwords.txt
    a
    ach
    ag
    agus
    an
    aon
    ar
    arna
    as
    b'
    ba
    beirt
    bhúr
    caoga
    ceathair
    ceathrar
    chomh
    chtó
    chuig
    chun
    cois
    céad
    cúig
    cúigear
    d'
    daichead
    dar
    de
    deich
    deichniúr
    den
    dhá
    do
    don
    dtí
    dá
    dár
    dó
    faoi
    faoin
    faoina
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 685 bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/es/stopwords.txt

    # https://github.com/apache/lucene-solr/blob/master/lucene/analysis/common/src/resources/org/apache/lucene/analysis/snowball/spanish_stop.txt
    de
    la
    que
    el
    en
    y
    a
    los
    del
    se
    las
    por
    un
    para
    con
    no
    una
    su
    al
    lo
    como
    más
    pero
    sus
    le
    ya
    o
    este
    sí
    porque
    esta
    entre
    cuando
    muy
    sin
    sobre
    también
    me
    hasta
    hay
    donde
    quien
    desde
    todo
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/gotoolchain_net.txt

    # This test only checks that basic network lookups work.
    # The full test of toolchain version selection is in gotoolchain.txt.
    
    # This test is sensitive to "new" Go experiments, so
    # update the environment to remove any existing GOEXPERIMENT
    # setting, see #62016 for more on this. 
    env GOEXPERIMENT=''
    
    env TESTGO_VERSION=go1.21actual
    
    # GOTOOLCHAIN from network, does not exist
    env GOTOOLCHAIN=go1.9999x
    ! go version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 17:16:47 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/gotoolchain_path.txt

    # This test only checks that basic PATH lookups work.
    # The full test of toolchain version selection is in gotoolchain.txt.
    
    [short] skip
    
    env TESTGO_VERSION=go1.21pre3
    
    # Compile a fake toolchain to put in the path under various names.
    env GOTOOLCHAIN=
    mkdir $WORK/bin
    go build -o $WORK/bin/go1.50.0$GOEXE ./fakego.go  # adds .exe extension implicitly on Windows
    
    [!GOOS:plan9] env PATH=$WORK/bin
    [GOOS:plan9] env path=$WORK/bin
    
    go version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 06 22:21:42 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_get_patchmod.txt

    -- other/other.go --
    package other
    -- prpkg/go.mod --
    module example.net/pkgremoved
    
    go 1.16
    -- prpkg/pkgremoved.go --
    package pkgremoved
    -- prmod/go.mod --
    module example.net/pkgremoved
    -- prmod/README.txt --
    Package pkgremoved was removed in v0.2.0 and v0.3.1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/fess/lt/stopwords.txt

    # https://github.com/apache/lucene-solr/blob/master/lucene/analysis/common/src/resources/org/apache/lucene/analysis/lt/stopwords.txt
    ant
    apie
    ar
    arba
    aš
    be
    bei
    bet
    bus
    būti
    būtų
    buvo
    dėl
    gali
    į
    iki
    ir
    iš
    ja
    ją
    jai
    jais
    jam
    jame
    jas
    jei
    ji
    jį
    jie
    jiedu
    jiedvi
    jiedviem
    jiedviese
    jiems
    jis
    jo
    jodviem
    jog
    joje
    jomis
    joms
    jos
    jose
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 786 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/work_disablevendor.txt

    go 1.20
    
    require example.com/dep v1.0.0
    -- workspace/vendor/example.com/dep/dep.go --
    package dep
    
    import "fmt"
    
    func Dep() {
    	fmt.Println("the vendored dep")
    }
    -- workspace/vendor/modules.txt --
    # example.com/dep v1.0.0
    ## explicit
    example.com/dep
    -- dep/go.mod --
    module example.com/dep
    -- dep/dep.go --
    package dep
    
    import "fmt"
    
    func Dep () {
        fmt.Println("the real dep")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 13 20:22:29 UTC 2022
    - 1K bytes
    - Viewed (0)
Back to top