Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 280 for module_ (0.14 sec)

  1. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-jar.gradle.kts

     * of project dependencies. This optimizes module loading during runtime, as we will only load external
     * modules that are not loaded transitively by other project modules.
     *
     * We perform this filtering, since if we simply include all external dependencies, regardless of whether
     * they are already loaded transitively, there is a measurable performance impact during module-loading.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 01 08:59:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/types/AbstractAbbreviatedTypeTest.kt

     * the expansion-site module instead of the use-site module in these tests, as we want to check the `KaType` when it's built with an
     * expanded type from a library vs. from a source module. (Abbreviated types from libraries and from sources aren't necessarily constructed
     * in the same way.)
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

        fun ComponentMetadataHandler.declareCapabilityPreference(module: String) {
            withModule<CapabilityRule>(module) {
                params(name)
                params("${providedBy.size + 1}")
            }
        }
    
        /**
         * For all modules providing a capability, always use the preferred module, even if there's no conflict.
         * In other words, will forcefully upgrade all modules providing a capability to a selected module.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modcmd/edit.go

    }
    
    type replaceJSON struct {
    	Old module.Version
    	New module.Version
    }
    
    type retractJSON struct {
    	Low       string `json:",omitempty"`
    	High      string `json:",omitempty"`
    	Rationale string `json:",omitempty"`
    }
    
    // editPrintJSON prints the -json output.
    func editPrintJSON(modFile *modfile.File) {
    	var f fileJSON
    	if modFile.Module != nil {
    		f.Module = editModuleJSON{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:52:10 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r211/ToolingApiIdeaModelCrossVersionSpec.groovy

            ideaProject.javaLanguageSettings.languageLevel.isJava5()
            // modules
            ideaProject.modules.find { it.name == 'root' }.javaLanguageSettings == null
            ideaProject.modules.find { it.name == 'child1' }.javaLanguageSettings == null
            ideaProject.modules.find { it.name == 'child2' }.javaLanguageSettings == null
        }
    
        def "can retrieve project and module language level for multi project build"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_vendor_auto.txt

    stderr '^\texample.com/unused: is replaced in go.mod, but not marked as replaced in vendor/modules.txt'
    stderr '^\texample.com/version@v1.2.0: is replaced in go.mod, but not marked as replaced in vendor/modules.txt'
    stderr '^\tTo ignore the vendor directory, use -mod=readonly or -mod=mod.\n\tTo sync the vendor directory, run:\n\t\tgo mod vendor$'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r68/CompositeBuildModuleNamesCrossVersionSpec.groovy

            allProjects.rootIdeaProject.name == 'module-main'
            allProjects.rootIdeaProject.modules.collect { it.name } == ['module-main', 'module-main-module-b']
    
            allProjects.getIdeaProject('module-main').modules.collect { it.name } == ['module-main', 'module-main-module-b']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  8. guava-gwt/pom.xml

                .java files in c.g.c.collect.Collect, a module that the c.g.c.base test module inherits,
                and .java files in c.g.c.collect.testModule, one that it doesn't[*]. Consequently,
                c.g.c.base.testModule transitively pulls in .java files from both modules while reading
                the module description of only the prod module. And the prod module doesn't inherit all
                the modules that the test module classes use, so we get errors.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 15:00:55 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  9. pkg/wasm/cache_test.go

    				if err != nil {
    					t.Fatalf("failed to write initial wasm module file %v", err)
    				}
    				mkey := moduleKey{name: k.name, checksum: k.checksum}
    
    				cache.modules[mkey] = &cacheEntry{modulePath: filePath, last: initTime}
    				if m.referencingURLs != nil {
    					cache.modules[mkey].referencingURLs = m.referencingURLs.Copy()
    				} else {
    					cache.modules[mkey].referencingURLs = sets.New[string]()
    				}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_import_vendor.txt

    cp correct_modules.txt vendor/modules.txt
    go build ./vendor/foo.com/internal/bar/a
    
    # For go versions < 1.23, vendored packages that are missing in modules.txt should not result in an error.
    cp 122go.mod go.mod
    
    cp incorrect_modules.txt vendor/modules.txt
    
    # go version < 1.23 and incorrect_modules is missing foo.com/internal/bar/b so the build should not fail
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 15:21:14 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top