Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,938 for Package (0.56 sec)

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

    # but fail for a non-package subdirectory of a module.
    
    ! go get example.net/missing/subdir@v0.1.0
    stderr '^go: module example.net/missing@v0.1.0 found \(replaced by ./missing\), but does not contain package example.net/missing/subdir$'
    
    go get example.net/missing@v0.1.0
    
    
    # Getting the subdirectory should continue to fail even if the corresponding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_e.txt

    )
    -- untidy_test.go --
    package untidy_test
    
    import _ "example.net/directtestnotfound"
    -- m/go.mod --
    module example.net/m
    go 1.16
    -- m/m.go --
    package m
    
    import _ "example.net/indirectnotfound"
    -- m/m_test.go --
    package m_test
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_get_deprecated.txt

    	example.com/undeprecated v1.0.0
    	local v0.0.0
    )
    
    replace local v0.0.0 => ./local
    -- use/nothing/nothing.go --
    package nothing
    -- use/a/a.go --
    package a
    
    import _ "example.com/deprecated/a"
    -- use/b/b.go --
    package b
    
    import _ "local/use"
    -- use/undeprecated/undeprecated.go --
    package undeprecated
    
    import _ "example.com/undeprecated"
    -- local/go.mod --
    module local
    
    go 1.17
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_go_file.txt

    ! go get test
    ! stderr 'arguments must be package or module paths'
    ! stderr 'exists as a file, but ''go get'' requires package arguments'
    
    # argument has .go suffix and has version
    ! go get test.go@v1.0.0
    ! stderr 'arguments must be package or module paths'
    ! stderr 'exists as a file, but ''go get'' requires package arguments'
    
    # argument has .go suffix, is a file and exists
    ! go get test.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:08 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  5. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/packages/KotlinPackageProviderFactory.kt

    /**
     * [KotlinPackageProviderMerger] allows merging multiple [KotlinPackageProvider]s into a more efficient package provider.
     *
     * Package providers should not be naively merged by combining scopes and calling [createPackageProvider], because there may be additional
     * package providers which do not operate based on scopes (e.g. resolve extension package providers).
     */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:57:40 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/cgo_bad_directives.txt

    -- go.mod --
    module x
    
    go 1.16
    -- 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"
    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/mod_get_split.txt

    ! stdout '^example.net/split/nested'
    
    
    # If we request a version for which the package only exists in one particular module,
    # we should add that one particular module but not resolve import ambiguities.
    #
    # In particular, if the module that previously provided the package has a
    # matching version, but does not itself match the pattern and contains no
    # matching packages, we should not change its version. (We should *not* downgrade
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/list_load_err.txt

    module m
    
    go 1.14
    
    -- want/want.go --
    package want
    
    -- scan/scan.go --
    // scan error
    ʕ◔ϖ◔ʔ
    
    -- scan/good.go --
    package scan
    
    import _ "m/want"
    
    -- multi/a.go --
    package a
    
    -- multi/b.go --
    package b
    
    import _ "m/want"
    
    -- constraint/constraint.go --
    // +build !!nope
    
    package constraint
    
    -- constraint/good.go --
    package constraint
    
    import _ "m/want"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 21:46:33 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/list_test_cycle.txt

    cmp stderr wanterr.txt
    
    -- wanterr.txt --
    go: can't load test package: package example/p
    	imports example/q
    	imports example/r
    	imports example/p: import cycle not allowed in test
    -- go.mod --
    module example
    go 1.20
    -- p/p.go --
    package p
    -- p/p_test.go --
    package p
    import "example/q"
    -- q/q.go --
    package q
    import "example/r"
    -- r/r.go --
    package r
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 19:18:23 UTC 2023
    - 644 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_get_ambiguous_import.txt

    	example.net/m v0.2.0 => ./m2
    	example.net/m/p v1.0.0 => ./p0
    )
    -- importer.go --
    package importer
    import _ "example.net/m/p"
    -- m1/go.mod --
    module example.net/m
    
    go 1.16
    -- m1/p/p.go --
    package p
    -- m2/go.mod --
    module example.net/m
    
    go 1.16
    -- m2/README.txt --
    Package p has been moved to module …/m/p.
    Module …/m/p does not require any version of module …/m.
    
    -- p0/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top