Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 5,244 for txt2 (0.24 sec)

  1. src/cmd/go/testdata/script/list_issue_59905.txt

    # Expect no panic
    go list -f '{{if .DepsErrors}}{{.DepsErrors}}{{end}}' -export -e -deps
    cmpenv stdout wanterr_59905
    
    # Expect no panic (Issue 61816)
    cp level1b_61816.txt level1b/pkg.go
    go list -f '{{if .DepsErrors}}{{.DepsErrors}}{{end}}' -export -e -deps
    cmpenv stdout wanterr_61816
    
    -- wanterr_59905 --
    [# test/main/level1a
    level1a${/}pkg.go:5:2: level2x redeclared in this block
    	level1a${/}pkg.go:4:2: other declaration of level2x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 17:34:46 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/work_vendor_prune_all.txt

    # This test exercises that vendoring works properly using the workspace in the
    # the work_prune test case.
    
    go work vendor
    cmp vendor/modules.txt modules.txt.want
    go list -f '{{with .Module}}{{.Path}}@{{.Version}}{{end}}' all
    cmp stdout want_versions
    
    go list -f '{{.Dir}}' example.com/q
    stdout $GOPATH[\\/]src[\\/]vendor[\\/]example.com[\\/]q
    go list -f '{{.Dir}}' example.com/b
    stdout $GOPATH[\\/]src[\\/]vendor[\\/]example.com[\\/]b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 01:59:23 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/list_overlay.txt

    go list -overlay overlay.json -f '{{.GoFiles}}' ./dir3 # overlay removes that file
    
    # Walking through an overlay
    go list -overlay overlay.json ./...
    cmp stdout want-list.txt
    
    # TODO(#39958): assembly files, C files, files that require cgo preprocessing
    
    -- want-list.txt --
    m
    m/dir
    m/dir2
    m/dir3
    -- go.mod --
    // TODO(#39958): Support and test overlays including go.mod itself (especially if mod=readonly)
    module m
    
    go 1.16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 12 21:13:04 UTC 2020
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/init_text_file_to_import_invalid.mlir

      %cst = arith.constant dense<"vocab_file_does_not_exist.txt"> : tensor<!tf_type.string>
      %0 = "tf.HashTableV2"() {container = "", device = "", key_dtype = !tf_type.string, shared_name = "hash_table_/tmp/vocab.txt_-2_-1", use_node_name_sharing = false, value_dtype = i64} : () -> tensor<!tf_type.resource>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 12:06:33 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/work_use_issue50958.txt

    go work use -r .
    cmp go.work go.work.want
    
    -- go.mod --
    module example
    go 1.18
    -- go.work --
    go 1.18
    
    use sub
    -- go.work.want --
    go 1.18
    
    use .
    -- sub/README.txt --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 03 05:53:37 UTC 2022
    - 215 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_symlink_dotgo.txt

    go list -f '{{range .GoFiles}}{{.}}{{"\n"}}{{end}}' .
    stdout 'p\.go$'
    ! stdout 'dir\.go$'
    
    -- go.mod --
    module example.com
    go 1.15
    -- p.go --
    package p
    -- dir/README.txt --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 25 03:29:25 UTC 2020
    - 372 bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/version.txt

    ! go version -v
    stderr 'with arguments'
    
    # Check that 'go version' succeed even when it does not contain Go build info.
    # It should print an error if the file has a known Go binary extension.
    #
    go version empty.txt
    ! stdout .
    ! stderr .
    go version empty.exe
    stderr 'could not read Go build info'
    go version empty.so
    stderr 'could not read Go build info'
    go version empty.dll
    stderr 'could not read Go build info'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 14:52:04 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_perm.txt

    # go list should work in ordinary conditions.
    go list ./...
    ! stdout _data
    
    # skip in conditions where chmod 0 may not work.
    # plan9 should be fine, but copied from list_perm.txt unchanged.
    [root] skip
    [GOOS:windows] skip
    [GOOS:plan9] skip
    
    # go list should work with unreadable _data directory.
    chmod 0 _data
    go list ./...
    ! stdout _data
    
    -- go.mod --
    module m
    
    -- x.go --
    package m
    
    -- _data/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 412 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/vendor_import.txt

    # Imports
    env GO111MODULE=off
    
    # Pass -e to permit errors (e.g. bad.go, invalid.go)
    go list -f  '{{.ImportPath}} {{.Imports}}' -e 'vend/...' 'vend/vendor/...' 'vend/x/vendor/...'
    cmp stdout want_vendor_imports.txt
    
    -- want_vendor_imports.txt --
    vend [vend/vendor/p r]
    vend/dir1 []
    vend/hello [fmt vend/vendor/strings]
    vend/subdir [vend/vendor/p r]
    vend/x [vend/x/vendor/p vend/vendor/q vend/x/vendor/r vend/dir1 vend/vendor/vend/dir1/dir2]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 22 21:14:01 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/main/resources/fess_indices/fess/ckb-iq/stopwords.txt

    # https://github.com/apache/lucene-solr/blob/master/lucene/analysis/common/src/resources/org/apache/lucene/analysis/ckb/stopwords.txt
    و
    کە
    ی
    کرد
    ئەوەی
    سەر
    دوو
    هەروەها
    لەو
    دەکات
    چەند
    هەر
    ئەو
    ئەم
    من
    ئێمە
    تۆ
    ئێوە
    ئەو
    ئەوان
    بە
    پێ
    بەبێ
    بەدەم
    بەلای
    بەپێی
    بەرلە
    بەرەوی
    بەرەوە
    بەردەم
    بێ
    بێجگە
    بۆ
    دە
    تێ
    دەگەڵ
    دوای
    جگە
    لە
    لێ
    لەبەر
    لەبەینی
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 721 bytes
    - Viewed (0)
Back to top