Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 464 for Modules (0.18 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

         * This method returns one of the values specified in the given collection.
         * This method does not handle the patch-module paths, because the patches
         * depend on which modules have been previously added on the module-paths.
         *
         * <p>If the dependency can be a constituent of both the class-path and the module-path,
         * then the path type is determined by checking if the dependency is modular.</p>
         *
    Java
    - Registered: Sun Mar 24 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 5.2K bytes
    - Viewed (0)
  2. maven-compat/src/test/resources/inheritance-repo/t12scm/p0/pom.xml

      <scm>
        <connection>scm:svn:http://host/p0</connection>
        <developerConnection>scm:svn:https://host/p0</developerConnection>
        <url>http://host/viewer?path=/p0</url>
      </scm>
    
      <modules>
        <module>modules/p1</module>
      </modules>
    
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Nov 23 12:04:30 GMT 2014
    - 412 bytes
    - Viewed (0)
  3. maven-core/src/test/resources/projects/transform/after.pom

              <configuration>
                <modules>
                  <module>
                    <test>test</test>
                  </module>
                  <jarModule>
                    <groupId>artifactGroupId</groupId>
                    <artifactId>artifactId</artifactId>
                    <uri>APP-INF/lib/anotherName-1.2.3.jar</uri>
                  </jarModule>
                </modules>
              </configuration>
            </plugin>
    Plain Text
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Thu Sep 14 07:51:37 GMT 2023
    - 2.4K bytes
    - Viewed (0)
  4. .gitignore

    !**/testData/**/*.iml
    .idea/artifacts
    .idea/remote-targets.xml
    .idea/libraries/Gradle*.xml
    .idea/libraries/Maven*.xml
    .idea/modules
    .idea/runConfigurations/JPS_*.xml
    .idea/runConfigurations/_JPS_*.xml
    .idea/runConfigurations/PILL_*.xml
    .idea/runConfigurations/_FP_*.xml
    .idea/runConfigurations/_MT_*.xml
    .idea/libraries
    .idea/modules.xml
    .idea/gradle.xml
    .idea/compiler.xml
    .idea/inspectionProfiles/profiles_settings.xml
    .idea/.name
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Feb 21 15:38:02 GMT 2024
    - 1.2K bytes
    - Viewed (0)
  5. maven-core/src/test/projects/lifecycle-listener/lifecycle-participant-reactor-dependency-injection/pom.xml

      <groupId>lifecycle-participant-reactor-dependency-injection</groupId>
      <artifactId>parent</artifactId>
      <version>1.0</version>
      <packaging>pom</packaging>
    
      <modules>
        <module>module-a</module>
        <module>module-b</module>
      </modules>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jan 29 12:40:19 GMT 2014
    - 305 bytes
    - Viewed (0)
  6. architecture/standards/0004-use-a-platform-architecture.md

    ## Decision
    
    Organize the Gradle code base into a set of coarse-grained "architecture modules".
    An architecture module is responsible for providing a coherent set of features and:
    
    - Provides a set of APIs and services for use from outside the module.
    - Has a private implementation.
    - Is owned by a single team. A team may own multiple architecture modules.
    
    The modules are arranged into several different "Gradle platforms".
    Plain Text
    - Registered: Wed Apr 24 11:36:11 GMT 2024
    - Last Modified: Sun Feb 25 22:19:29 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  7. src/README.vendor

    library packages begin with a dotless path element.
    
    The module requirements of std and cmd do not influence version
    selection in other modules. They are only considered when running
    module commands like 'go get' and 'go mod vendor' from a directory
    in GOROOT/src.
    
    Maintaining vendor directories
    ==============================
    
    Before updating vendor directories, ensure that module mode is enabled.
    Plain Text
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Tue Apr 02 02:20:05 GMT 2024
    - 2.2K bytes
    - Viewed (0)
  8. tensorflow/api_template_v1.__init__.py

    setattr(_current_module, "keras", _KerasLazyLoader(globals(), mode="v1"))
    _module_dir = _module_util.get_parent_dir_for_name("keras._tf_keras.keras")
    _current_module.__path__ = [_module_dir] + _current_module.__path__
    if _tf_uses_legacy_keras:
      _module_dir = _module_util.get_parent_dir_for_name("tf_keras.api._v1.keras")
    else:
      _module_dir = _module_util.get_parent_dir_for_name("keras.api._v1.keras")
    Python
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Tue Jan 23 02:14:00 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  9. maven-core/src/test/resources-project-builder/profile-module/pom.xml

      <version>1.0</version>
      <packaging>pom</packaging>
      <modules>
        <module>module-2</module>
        <module>module-1</module>
        <module>module-3</module>
      </modules>
      <profiles>
        <profile>
          <id>a</id>
          <properties>
            <b>test-prop</b>
          </properties>
          <modules>
            <module>module-1</module>
            <module>module-4</module>
          </modules>
        </profile>
      </profiles>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 29 05:20:38 GMT 2009
    - 521 bytes
    - Viewed (0)
  10. maven-core/src/test/resources/projects/modelsource/pom.xml

      <modelVersion>4.0.0</modelVersion>
      <groupId>test.readparent</groupId>
      <artifactId>local-parent</artifactId>
      <packaging>pom</packaging>
      <version>1.0</version>
    
      <modules>
        <module>module</module>
      </modules>
    
    XML
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Sat Nov 09 12:45:14 GMT 2019
    - 442 bytes
    - Viewed (0)
Back to top