Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 2,190 for moduleB (0.15 sec)

  1. src/cmd/go/testdata/mod/example.com_nest_sub_v1.0.0.txt

    Written by hand.
    Test case for nested modules without an explicit relationship.
    This is nested below the top-level module.
    
    -- .mod --
    module example.com/nest/sub
    -- .info --
    {"Version": "v1.0.0"}
    -- go.mod --
    module example.com/nest/sub
    -- y/y.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 19:29:47 UTC 2019
    - 261 bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/JavaPathType.java

         * depending on whether {@link #CLASSES} or {@link #MODULES} is present.
         *
         * @param moduleName name of the module on which to apply the path
         * @return an identification of the patch-module path for the given module.
         *
         * @see Modular#moduleName()
         */
        @Nonnull
        public static Modular patchModule(@Nonnull String moduleName) {
            return PATCH_MODULE.new Modular(moduleName);
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/idea/IdeaProject.java

        /**
         * Returns the modules of this IDEA project. Most projects have at least one module.
         * Alias for {@link #getModules()}.
         *
         * @return The modules of this IDEA project.
         * @since 1.0-milestone-5
         */
        @Override
        DomainObjectSet<? extends IdeaModule> getChildren();
    
        /**
         * Returns the modules of this IDEA project. Most projects have at least one module.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. maven-model-builder/src/test/resources/poms/inheritance/tricky-flat-artifactId-urls-parent.xml

      <name>Model urls inheritance test parent</name>
      <description>Flat directory structure case: module = ../child-artifact-id + child directory path != child-artifact-id</description>
    
      <modules>
        <module>../child-artifact-id</module><!-- use child artifact id, even if different from directory -->
      </modules>
    
      <!-- 5 urls in the pom will be inherited with path added -->
      <url>http://www.apache.org/path/to/parent/</url>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  5. tensorflow/api_template.__init__.py

    """
    Top-level module of TensorFlow. By convention, we refer to this module as
    `tf` instead of `tensorflow`, following the common practice of importing
    TensorFlow via the command `import tensorflow as tf`.
    
    The primary function of this module is to import all of the public TensorFlow
    interfaces into a single place. The interfaces themselves are located in
    sub-modules, as described below.
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 06:27:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_invalid_path_plus.txt

    # The '+' character should be disallowed in module paths, but allowed in package
    # paths within valid modules.
    
    # 'go list' accepts package paths with pluses.
    cp go.mod.orig go.mod
    go get example.net/cmd
    go list example.net/cmd/x++
    
    # 'go list -m' rejects module paths with pluses.
    ! go list -versions -m 'example.net/bad++'
    stderr '^go: malformed module path "example.net/bad\+\+": invalid char ''\+''$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 821 bytes
    - Viewed (0)
  7. hack/update-vendor.sh

    # Phase 4: copy root go.mod to staging dirs and rewrite
    
    kube::log::status "go.mod: propagate to staging modules" >&11
    for repo in $(kube::util::list_staging_repos); do
      (
        cd "staging/src/k8s.io/${repo}"
    
        echo "=== propagating to ${repo}"
        # copy root go.mod, changing module name
        sed "s#module k8s.io/kubernetes#module k8s.io/${repo}#" \
            < "${KUBE_ROOT}/go.mod" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:08 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_symlink.txt

    env GO111MODULE=on
    [!symlink] skip
    
    # 'go get' should resolve modules of imported packages.
    go get
    go list -deps -f '{{.Module}}' .
    stdout golang.org/x/text
    
    go get ./subpkg
    go list -deps -f '{{.Module}}' ./subpkg
    stdout golang.org/x/text
    
    # Create a copy of the module using symlinks in src/links.
    mkdir links
    symlink links/go.mod -> $GOPATH/src/go.mod
    symlink links/go.sum -> $GOPATH/src/go.sum
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_replace_main_module.txt

    # Ensure that replaces of the main module in workspace modules
    # are ignored, and replaces in the go.work file are disallowed.
    # This tests against an issue where requirements of the
    # main module were being ignored because the main module
    # was replaced in a transitive dependency with another
    # version.
    
    go list example.com/dep
    
    cp replace_main_module.go.work go.work
    ! go list example.com/dep
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 20 19:10:29 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/experimental/tac/transforms/target_annotation.cc

      TargetAnnotationPass(const TargetAnnotationPass& copy)
          : TacFunctionPass(copy.module_) {}
      explicit TargetAnnotationPass(llvm::ArrayRef<std::string> device_specs)
          : TacFunctionPass(nullptr) {
        device_specs_flag_ = device_specs;
      }
    
      explicit TargetAnnotationPass(const TacModule* module)
          : TacFunctionPass(module) {}
    
     private:
      void runOnFunction() override;
      void SetTargetAnnotation(Operation* op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 19:32:06 UTC 2023
    - 5.9K bytes
    - Viewed (0)
Back to top