Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 54 for moduleB (0.2 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

            originalResult.rootIdeaProject.modules.name == ['buildA']
    
            def moduleA = originalResult.rootIdeaProject.modules[0]
            moduleA.dependencies.each {
                assert it instanceof IdeaModuleDependency
            }
            moduleA.dependencies.targetModuleName == ['buildB-b1', 'buildA-buildC', 'buildD-b1']
    
            originalResult.getIdeaProject('buildB').modules.name == ['buildB', 'buildB-b1', 'b2']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.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
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. pkg/ctrlz/ctrlz.go

    	baseLayout = template.Must(baseLayout.Parse("{{ define \"instance\" }}" + instance + "{{ end }}"))
    	_ = augmentLayout(baseLayout, "templates/modules/header.html")
    	_ = augmentLayout(baseLayout, "templates/modules/sidebar.html")
    	_ = augmentLayout(baseLayout, "templates/modules/last-refresh.html")
    	mainLayout := augmentLayout(template.Must(baseLayout.Clone()), "templates/layouts/main.html")
    
    	router := mux.NewRouter()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 21:22:53 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

    import gradlebuild.integrationtests.createTestTask
    import gradlebuild.integrationtests.setSystemPropertiesOfTestJVM
    
    plugins {
        java
        id("gradlebuild.module-identity")
        id("gradlebuild.dependency-modules")
    }
    
    val sourceSet = addSourceSet(TestType.CROSSVERSION)
    addDependenciesAndConfigurations(TestType.CROSSVERSION.prefix)
    createQuickFeedbackTasks()
    createAggregateTasks(sourceSet)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Mojo.java

         * @return requires a project
         */
        boolean projectRequired() default true;
    
        /**
         * if the Mojo uses the Maven project and its child modules.
         * @return uses the Maven project and its child modules
         */
        boolean aggregator() default false;
    
        /**
         * does this Mojo need to be online to be executed?
         * @return need to be online
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/process/internal/worker/child/WorkerProcessClassPathProvider.java

            if (name.equals("MINIMUM_WORKER_RUNTIME")) {
                ClassPath classpath = ClassPath.EMPTY;
                for (String module : RUNTIME_MODULES) {
                    classpath = classpath.plus(moduleRegistry.getModule(module).getImplementationClasspath());
                }
                for (String externalModule : RUNTIME_EXTERNAL_MODULES) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/help/helpdoc.go

    listed in the GOPATH environment variable.
    (See 'go help gopath-get' and 'go help gopath'.)
    
    When using modules, downloaded packages are stored in the module cache.
    See https://golang.org/ref/mod#module-cache.
    
    When using modules, an additional variant of the go-import meta tag is
    recognized and is preferred over those listing version control systems.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  8. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishHttpIntegTest.groovy

            module.rootMetaData.md5.expectPut()
            module.pom.expectPut()
            module.pom.sha1.expectPut()
            module.pom.sha256.expectPutBroken()
            module.pom.sha512.expectPutBroken()
            module.pom.md5.expectPut()
            module.moduleMetadata.expectPut()
            module.moduleMetadata.sha1.expectPut()
            module.moduleMetadata.sha256.expectPutBroken()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

         */
        private String deprecated;
    
        /**
         * Flags this Mojo to run it in a multi-module way, i.e. aggregate the build with the set of projects listed as
         * modules. By default, no need to aggregate the Maven project and its child modules
         */
        private boolean aggregator = false;
    
        // ----------------------------------------------------------------------
        //
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  10. settings.gradle.kts

            uses.add(platform)
        }
    
        fun module(platformName: String, moduleConfiguration: ArchitectureModuleBuilder.() -> Unit) {
            val module = ArchitectureModuleBuilder(platformName)
            modules.add(module)
            module.moduleConfiguration()
        }
    
        override fun build(): Platform {
            return Platform(name, id, uses.map { it.id }, modules.map { it.build() })
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top