Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 5,215 for TXT (0.02 sec)

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

    # https://github.com/apache/lucene-solr/blob/master/lucene/analysis/common/src/resources/org/apache/lucene/analysis/id/stopwords.txt
    ada
    adanya
    adalah
    adapun
    agak
    agaknya
    agar
    akan
    akankah
    akhirnya
    aku
    akulah
    amat
    amatlah
    anda
    andalah
    antar
    diantaranya
    antara
    antaranya
    diantara
    apa
    apaan
    mengapa
    apabila
    apakah
    apalagi
    apatah
    atau
    ataukah
    ataupun
    bagai
    bagaikan
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 2.8K bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/lv/stopwords.txt

    # https://github.com/apache/lucene-solr/blob/master/lucene/analysis/common/src/resources/org/apache/lucene/analysis/lv/stopwords.txt
    aiz
    ap
    ar
    apakš
    ārpus
    augšpus
    bez
    caur
    dēļ
    gar
    iekš
    iz
    kopš
    labad
    lejpus
    līdz
    no
    otrpus
    pa
    par
    pār
    pēc
    pie
    pirms
    pret
    priekš
    starp
    šaipus
    uz
    viņpus
    virs
    virspus
    zem
    apakšpus
    # Conjunctions
    un
    bet
    jo
    ja
    ka
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_find.txt

    package y
    -- $GOPATH/src/example.com/x/y/z/z.go --
    package z
    -- $GOPATH/src/example.com/x/y/z/Godeps/Godeps.json --
    {"ImportPath": "unexpected.com/z"}
    
    -- $WORK/gomoddir/go.mod/README.txt --
    ../go.mod is a directory, not a file.
    -- $WORK/gomoddir/p.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:14 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  4. platforms/software/maven/src/integTest/resources/org/gradle/integtests/publish/maven/pomGeneration/expectedNewPom.txt

      <version>1.0</version>
      <inceptionYear>2008</inceptionYear>
      <licenses>
        <license>
          <name>The Apache Software License, Version 2.0</name>
          <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
          <distribution>repo</distribution>
        </license>
      </licenses>
      <dependencies>
        <dependency>
          <groupId>group4</groupId>
          <artifactId>providedRuntime</artifactId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_outside.txt

    [exec:touch] go generate ./needmod/needmod.go
    [exec:touch] exists ./needmod/gen.txt
    
    # 'go install' should work with file arguments.
    go install ./stdonly/stdonly.go
    
    # 'go test' should work with file arguments.
    go test -v ./stdonly/stdonly_test.go
    stdout 'stdonly was tested'
    
    # 'go vet' should work with file arguments.
    go vet ./stdonly/stdonly.go
    
    
    -- README.txt --
    There is no go.mod file in the working directory.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 15:34:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/gotoolchain_local.txt

    # This test uses the fake toolchain switch support in cmd/go/internal/toolchain.Switch
    # to exercise all the version selection logic without needing actual toolchains.
    # See gotoolchain_net.txt and gotoolchain_path.txt for tests of network and PATH toolchains.
    
    env TESTGO_VERSION=go1.500
    env TESTGO_VERSION_SWITCH=switch
    
    # GOTOOLCHAIN=auto runs default toolchain without a go.mod or go.work
    env GOTOOLCHAIN=auto
    go version
    stdout go1.500
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 25 21:19:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_require_exclude.txt

    stdout 'rsc.io/quote v1.5.1'
    
    -- x.go --
    package x
    import _ "rsc.io/quote"
    
    -- go.mod --
    module x
    
    go 1.13
    
    exclude rsc.io/sampler v1.99.99
    
    require rsc.io/sampler v1.99.99
    -- vendor/modules.txt --
    # rsc.io/sampler v1.99.99
    ## explicit
    -- go.moddrop --
    module x
    
    go 1.13
    
    exclude rsc.io/sampler v1.99.99
    -- go.mod2 --
    module x
    
    go 1.13
    
    exclude rsc.io/quote v1.5.1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 14 15:02:11 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_query_main.txt

    go list -m rsc.io/quote@upgrade
    stdout '^rsc.io/quote$'
    go list -m rsc.io/quote@patch
    stdout '^rsc.io/quote$'
    
    # 'go get' will not attempt to upgrade the main module to any specific version.
    # See also: mod_get_main.txt.
    ! go get rsc.io/quote@5d9f230b
    stderr '^go: can''t request version "5d9f230b" of the main module \(rsc.io/quote\)$'
    ! go get rsc.io/quote@v1.5.2
    stderr '^go: can''t request version "v1.5.2" of the main module \(rsc.io/quote\)$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 15 00:06:54 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_lazy_test_of_test_dep.txt

    # This file demonstrates the effect of lazy loading on the reproducibility of
    # tests (and tests of test dependencies) outside the main module.
    #
    # It is similar to the cases in mod_all.txt and mod_lazy_test_horizon.txt, but
    # focuses on the effect of "go test" on specific packages instead of the "all"
    # pattern.
    
    # The package import graph used in this test looks like:
    #
    # lazy ---- a
    #           |
    #           a_test ---- b
    #                       |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 08 19:32:28 UTC 2021
    - 5.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_all.txt

    cp stdout list-test-explicit.txt
    
    go list -test -f $PKGFMT all
    cmp stdout list-test-explicit.txt
    stdout -count=36 '^.'
    stdout '^example.com/a$'
    stdout '^example.com/b$'
    stdout '^example.com/c$'
    stdout '^example.com/d$'
    stdout '^example.com/main$'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 18:41:57 UTC 2021
    - 13.1K bytes
    - Viewed (0)
Back to top