Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 2,190 for ModuleC (0.19 sec)

  1. platforms/documentation/docs/src/snippets/testing/patch-module/kotlin/src/main/java/module-info.java

    module org.gradle.sample {
        exports org.gradle.sample;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 60 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_outside.txt

    
    # 'go clean' should skip the current directory if it isn't in a module.
    go clean -n
    ! stdout .
    ! stderr .
    
    # 'go mod graph' should fail, since there's no module graph.
    ! go mod graph
    stderr '^go: go.mod file not found in current directory or any parent directory; see ''go help modules''$'
    
    # 'go mod why' should fail, since there is no main module to depend on anything.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 15:34:40 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/KtStaticModuleDependentsProvider.kt

    }
    
    private inline fun buildDependentsMap(
        modules: List<KtModule>,
        getDependencies: (KtModule) -> Sequence<KtModule>,
    ): Map<KtModule, MutableSet<KtModule>> = buildMap<KtModule, MutableSet<KtModule>> {
        for (module in modules) {
            for (dependency in getDependencies(module)) {
                // `module` should not be part of its own dependents, per the contract of `KotlinModuleDependentsProvider`.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Mar 18 21:14:36 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_verify_work.txt

    # main modules from the build list incorrectly, leading to the workspace
    # modules being checked for correct sums. Specifically this would happen when
    # the module name sorted after the virtual 'go' version module name because
    # it could not get chopped off when we removed the MainModules.Len() modules
    # at the beginning of the build list and we would remove the go module instead.
    
    go mod verify
    
    -- go.work --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 16:56:35 UTC 2024
    - 724 bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/work_vendor_modules_txt_consistent.txt

    go work vendor
    cmp modules.txt.want vendor/modules.txt
    go list example.com/a example.com/b
    
    # Module required in go.mod but not marked explicit in modules.txt
    cp modules.txt.required_but_not_explicit vendor/modules.txt
    ! go list example.com/a example.com/b
    cmpenv stderr required_but_not_explicit_error.txt
    
    # Replacement in go.mod but no replacement in modules.txt
    cp modules.txt.missing_replacement vendor/modules.txt
    ! go list example.com/a example.com/b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 01:59:23 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. hack/update-internal-modules.sh

    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # These are "internal" modules.  For various reasons, we want them to be
    # decoupled from their parent modules.
    MODULES=()                                                                                                                                                                   
    kube::util::read-array MODULES < <(
        git ls-files -cmo --exclude-standard -- ':!:vendor/*' ':(glob)*/**/go.work' \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:38:25 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/MavenRepository.groovy

            def artifactDir = new File(rootDir, "${groupId.replace('.', '/')}/$artifactId/$version")
            def module = new MavenModule(artifactDir, groupId, artifactId, version as String)
            module.mavenJarCreator = mavenJarCreator
            modules << module
            return module
        }
    
        void publish() {
            modules.each {
                it.publish()
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 1.6K bytes
    - Viewed (0)
  8. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/Project.java

            Preconditions.checkNotNull(moduleManager);
            Node modules = findFirstChildNamed(moduleManager, "modules");
            if (modules == null) {
                modules = moduleManager.appendNode("modules");
            }
            return modules;
        }
    
        private Node findCompilerConfiguration() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  9. platforms/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/idea/IdeaModelBuilderTest.groovy

            ideaProject.modules.find { it.name == 'test-project' }.javaLanguageSettings.jdk == null
            ideaProject.modules.find { it.name == 'child1' }.javaLanguageSettings.jdk == null
            ideaProject.modules.find { it.name == 'child2' }.javaLanguageSettings.jdk == null
        }
    
        def "synched module bytecode level marked as inherited"() {
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 09 11:38:46 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/LazyDownloadsIntegrationTest.groovy

    import org.gradle.integtests.fixtures.AbstractHttpDependencyResolutionTest
    
    class LazyDownloadsIntegrationTest extends AbstractHttpDependencyResolutionTest {
        def module = mavenHttpRepo.module("test", "test", "1.0").publish()
        def module2 = mavenHttpRepo.module("test", "test2", "1.0").publish()
    
        def setup() {
            createDirs("child")
            settingsFile << "include 'child'"
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
Back to top