Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 5,244 for txt2 (0.63 sec)

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

    rm t/x.txt
    ! go build m/use
    stderr '^x.go:5:12: pattern [*]t: cannot embed directory t: contains no embeddable files$'
    
    # all still ignores .git and symlinks
    cp x.go3 x.go
    ! go build -x
    stderr '^x.go:5:12: pattern all:t: cannot embed directory t: contains no embeddable files$'
    
    # all finds dot files and underscore files
    cp x.txt t/.x.txt
    go build -x
    rm t/.x.txt
    cp x.txt t/_x.txt
    go build -x
    
    -- x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 18:03:59 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. pkg/volume/util/atomic_writer_test.go

    					"bar/zib////zib/zab.txt": {Mode: 0644, Data: []byte("bar/zib/zab.txt")},
    				},
    				{
    					"foo/bar.txt":      {Mode: 0644, Data: []byte("foo/bar2")},
    					"bar/zab.txt":      {Mode: 0644, Data: []byte("bar/zab.txt2")},
    					"foo/blaz/bar.txt": {Mode: 0644, Data: []byte("foo/blaz/bar2")},
    					"bar/zib/zab.txt":  {Mode: 0644, Data: []byte("bar/zib/zab.txt2")},
    					"add/new/keys.txt": {Mode: 0644, Data: []byte("addNewKeys")},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 09:02:45 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. src/go/doc/comment/testdata/text2.txt

    Russ Cox <******@****.***> 1648990796 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:41 UTC 2022
    - 937 bytes
    - Viewed (0)
  4. fess-crawler-lasta/src/test/resources/test/text2.txt

    Shinsuke Sugaya <******@****.***> 1444529815 +0900
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 6 bytes
    - Viewed (0)
  5. fess-crawler/src/test/resources/test/text2.txt

    Shinsuke Sugaya <******@****.***> 1444529815 +0900
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 6 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cgo_bad_directives.txt

    -- x_gc.go.txt --
    package x
    
    //go:cgo_ldflag "-fplugin=foo.so"
    
    import "C"
    -- cgo_yy.go.txt --
    package x
    
    //go:cgo_ldflag "-fplugin=foo.so"
    
    import "C"
    -- x.go.txt --
    package x
    -- y_fplugin.go.txt --
    package x
    // #cgo CFLAGS: -fplugin=foo.so
    import "C"
    -- y_lbar_fplugin.go.txt --
    package x
    // #cgo CFLAGS: -Ibar -fplugin=foo.so
    import "C"
    -- y_pkgconfig_dash_foo.txt --
    package x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/work_vendor_modules_txt_consistent.txt

    go work vendor
    cmp modules.txt.want vendor/modules.txt
    go list example.com/a example.com/b
    
    # Module required in go.mod but not marked explicit in modules.txt
    cp modules.txt.required_but_not_explicit vendor/modules.txt
    ! go list example.com/a example.com/b
    cmpenv stderr required_but_not_explicit_error.txt
    
    # Replacement in go.mod but no replacement in modules.txt
    cp modules.txt.missing_replacement vendor/modules.txt
    ! go list example.com/a example.com/b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 01:59:23 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_vendor_embed.txt

    go mod vendor
    cmp vendor/example.com/a/samedir_embed.txt a/samedir_embed.txt
    cmp vendor/example.com/a/subdir/embed.txt a/subdir/embed.txt
    cmp vendor/example.com/a/subdir/test/embed.txt a/subdir/test/embed.txt
    cmp vendor/example.com/a/subdir/test/xtest/embed.txt a/subdir/test/xtest/embed.txt
    
    cd broken_no_matching_files
    ! go mod vendor
    stderr '^go: resolving embeds in example.com/brokendep: pattern foo.txt: no matching files found$'
    go mod vendor -e
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:14:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_import_vendor.txt

    cp correct_modules.txt vendor/modules.txt
    go build ./vendor/foo.com/internal/bar/a
    
    # For go versions < 1.23, vendored packages that are missing in modules.txt should not result in an error.
    cp 122go.mod go.mod
    
    cp incorrect_modules.txt vendor/modules.txt
    
    # go version < 1.23 and incorrect_modules is missing foo.com/internal/bar/b so the build should not fail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_cache_inputs.txt

    exec ./mkold$GOEXE 50s testcache/script.sh
    go test testcache -run=Exec
    ! stdout '\(cached\)'
    go test testcache -run=Exec
    stdout '\(cached\)'
    
    -- testcache/file.txt --
    xx
    -- 4x.txt --
    xxxx
    -- 6x.txt --
    xxxxxx
    -- 2y.txt --
    yy
    -- $WORK/external.txt --
    This file is outside of GOPATH.
    -- testcache/script.sh --
    #!/bin/sh
    exit 0
    -- testcache/testcache_test.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 22:23:53 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top