Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,615 for moduleB (0.22 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/artifacts/Module.java

    import org.gradle.api.artifacts.component.ProjectComponentIdentifier;
    
    import javax.annotation.Nullable;
    
    /**
     * <p>A {@code Module} represents the meta-information about a project which should be used when publishing the
     * module.</p>
     */
    public interface Module {
        String DEFAULT_STATUS = "integration";
    
        @Nullable
        ProjectComponentIdentifier getProjectId();
    
        String getGroup();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 16 01:39:01 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/DependenciesMetadataAdapterTest.groovy

            dependenciesMetadata[0].selector.version == "1.0"
        }
    
        def "add via map id propagate to the underlying dependency list"() {
            when:
            adapter.add group: "org.gradle.test", name: "module1", version: "1.0"
    
            then:
            dependenciesMetadata.size() == 1
            dependenciesMetadata[0].selector.group == "org.gradle.test"
            dependenciesMetadata[0].selector.module == "module1"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. maven-model-builder/src/test/resources/poms/validation/duplicate-module.xml

    -->
    
    <project>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>aid</artifactId>
      <groupId>gid</groupId>
      <version>0.1</version>
      <packaging>pom</packaging>
    
      <modules>
        <module>child</module>
        <module>child</module>
      </modules>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Oct 24 14:53:54 UTC 2009
    - 1015 bytes
    - Viewed (0)
  4. platforms/ide/ide/src/integTest/groovy/org/gradle/plugins/ide/idea/IdeaDependencySubstitutionIntegrationTest.groovy

        void "transitive external dependency substituted with project dependency"() {
            mavenRepo.module("org.gradle", "module1").dependsOnModules("module2").publish()
            mavenRepo.module("org.gradle", "module2").publish()
    
            createDirs("project1", "project2")
            runTask("idea", "include 'project1', 'project2'", """
    allprojects {
        apply plugin: "java"
        apply plugin: "idea"
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. okhttp-coroutines/Module.md

    # Module okhttp-coroutines
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 06 15:31:31 UTC 2022
    - 55 bytes
    - Viewed (0)
  6. okhttp/Module.md

    # Module okhttp
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Apr 02 11:27:49 UTC 2019
    - 74 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyHttpRepoResolveIntegrationTest.groovy

            def repo1 = server.getRemoteIvyRepo("/repo1")
            def repo2 = server.getRemoteIvyRepo("/repo2")
            def module1 = repo1.module('group', 'projectA').publish()
            def module2 = repo2.module('group', 'projectA').publish()
    
            and:
            buildFile << """
                repositories {
                    ivy {
                        url "${repo1.uri}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  8. maven-model-builder/src/test/resources/poms/inheritance/module-path-not-artifactId-parent.xml

      <groupId>inheritance</groupId>
      <artifactId>parent</artifactId>
      <version>11-SNAPSHOT</version>
    
      <name>Model inheritance test parent: module path != artifactId</name>
    
      <modules>
        <module>child</module>
      </modules>
    
      <!-- 5 URLs in the pom will be inherited with path added -->
      <url>http://www.apache.org/</url>
      <scm>
        <connection>scm:my-scm:http://domain.org/base</connection>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Nov 07 15:16:39 UTC 2019
    - 1.7K bytes
    - Viewed (0)
  9. tensorflow/cc/experimental/libtf/module.cc

    See the License for the specific language governing permissions and
    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/cc/experimental/libtf/module.h"
    
    #include <string>
    
    #include "tensorflow/core/platform/errors.h"
    #include "tensorflow/core/protobuf/saved_object_graph.pb.h"
    namespace tf {
    namespace libtf {
    namespace impl {
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 02 20:02:30 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/modules.txt

    ## explicit; go 1.21
    golang.org/x/build/relnote
    # golang.org/x/mod v0.18.0
    ## explicit; go 1.18
    golang.org/x/mod/internal/lazyregexp
    golang.org/x/mod/modfile
    golang.org/x/mod/module
    golang.org/x/mod/semver
    golang.org/x/mod/sumdb
    golang.org/x/mod/sumdb/dirhash
    golang.org/x/mod/sumdb/note
    golang.org/x/mod/sumdb/tlog
    golang.org/x/mod/zip
    # golang.org/x/sync v0.7.0
    ## explicit; go 1.18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top