Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 2,190 for moduleB (0.1 sec)

  1. src/cmd/go/internal/list/list.go

    module and then dependencies sorted by module path.
    A pattern containing "..." specifies the active modules whose
    module paths match the pattern.
    A query of the form path@version specifies the result of that query,
    which is not limited to active modules.
    See 'go help modules' for more about module queries.
    
    The template function "module" takes a single string argument
    that must be a module path or query and returns the specified
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 16:56:39 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/verify_no_outside_compilation_markers_pass_test.cc

      }
    
      mlir::LogicalResult Run() { return pm_->run(module_.get()); }
    
     private:
      MLIRContext context_;
      OwningOpRef<ModuleOp> module_;
      std::unique_ptr<mlir::PassManager> pm_;
    };
    
    TEST_F(VerifyNoOutsideCompilationMarkersPassTest, PassesValidOps) {
      static constexpr char kMlirModuleStr[] = R"(
      module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 268 : i32}} {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_e.txt

    go mod vendor -e
    stderr -count=2 'no required module provides package'
    stderr '^go: example.com/untidy imports\n\texample.net/m: module example.net/m provides package example.net/m and is replaced but not required; to add it:\n\tgo get example.net/m@v0.1.0$'
    exists vendor/modules.txt
    ! exists vendor/example.net
    
    go mod edit -require example.net/m@v0.1.0
    go mod vendor -e
    stderr -count=3 'no required module provides package'
    exists vendor/modules.txt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_download_partial.txt

    # NOTE: the message "directory $dir outside main module or its selected dependencies"
    # is reported for directories not in the main module, active modules in the
    # module cache, or local replacements. In this case, the directory is in the
    # right place, but it's incomplete, so 'go list' acts as if it's not an
    # active module.
    ! go list $GOPATH/pkg/mod/rsc.io/quote@v1.5.2
    stderr 'outside main module or its selected dependencies'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 10 19:08:19 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_off.txt

    stderr 'go: modules disabled by GO111MODULE=off; see ''go help modules'''
    ! go mod graph
    stderr 'go: modules disabled by GO111MODULE=off; see ''go help modules'''
    ! go mod verify
    stderr 'go: modules disabled by GO111MODULE=off; see ''go help modules'''
    ! go mod download
    stderr 'go: modules disabled by GO111MODULE=off; see ''go help modules'''
    
    -- sample.go --
    package sample
    
    func main() {}
    
    -- go.mod --
    module sample
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 15 12:46:25 UTC 2020
    - 1K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerWithSupplierIntegrationTest.groovy

            void expectGetMetadata(String group, String module) {
                String id = "$group:$module"
                server.expectGet("/repo/${group.replace('.', '/')}/$module/metadata.json", files[id])
            }
    
            @Override
            void expectRefresh(String group, String module) {
                String id = "$group:$module"
                server.expectHead("/repo/${group.replace('.', '/')}/$module/metadata.json", files[id])
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/work_sync_toolchain.txt

    go work sync
    cat go.work
    grep '^go 1.50$' go.work
    ! grep toolchain go.work
    
    # work sync with newer modules should update go 1.21 -> 1.22.1 and toolchain -> go1.22.9 in go.work
    env TESTGO_VERSION=go1.21
    env TESTGO_VERSION_SWITCH=switch
    go work edit -go=1.21
    grep '^go 1.21$' go.work
    ! grep toolchain go.work
    env GOTOOLCHAIN=local
    ! go work sync
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Jun 03 21:13:11 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_sum_lookup.txt

    # hashes for downloaded modules.
    # Verifies golang.org/issue/36260.
    # TODO(golang.org/issue/26603): use 'go mod tidy -e' when implemented.
    go list -e -mod=mod -tags=ignore ./noexist
    ! exists go.sum
    
    # When an import is resolved successfully, we should only save hashes for
    # the module that provides the package, not for other modules looked up.
    # Verifies golang.org/issue/31580.
    go get ./exist
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 859 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features-external/common/repo/org/gradle/demo/producer/1.0/producer-1.0.module.md5

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 32 bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyResolveIntegrationTest.groovy

            dep.getArtifact(name: 'test-extra').expectGet()
            module2.ivy.expectGet()
            module2.jar.expectGet()
    
            then:
            succeeds "checkDeps"
            resolve.expectGraph {
                root(":", ":test:") {
                    module("org.gradle:test:1.45") {
                        artifact(name: "test-extra")
                        module("org.gradle:other:preview-1")
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 13:59:13 UTC 2024
    - 12.5K bytes
    - Viewed (0)
Back to top