Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 735 for moduleB (0.16 sec)

  1. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinGlobalSourceModuleStateModificationListener.kt

         *
         * The module structure and source code of all source [KtModule]s in the project should be considered modified when this event is
         * received. This includes source files being moved or removed, and source modules possibly being removed. Thus, all caches related to
         * source module structure and source code should be invalidated.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  2. architecture/build-state-model.md

    ## Composition by architecture modules
    
    Each [architecture module and platform](platforms.md) can contribute code to any of the elements.
    Not every module contributes to every element.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:49 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r28/ToolingApiIdeaModelCrossVersionSpec.groovy

            then:
            def allNames = project.modules*.name
            allNames.unique().size() == 6
    
            IdeaModule impl = project.modules.find { it.name == 'root-impl' }
            IdeaModule contribImpl = project.modules.find { it.name == 'contrib-impl' }
    
            impl.dependencies[0].targetModuleName == 'root-api'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. tensorflow/api_template_v1.__init__.py

    _API_MODULE = _sys.modules[__name__].bitwise  # pylint: disable=undefined-variable
    _current_module = _sys.modules[__name__]
    _tf_api_dir = _os.path.dirname(_os.path.dirname(_API_MODULE.__file__))
    if not hasattr(_current_module, "__path__"):
      __path__ = [_tf_api_dir]
    elif _tf_api_dir not in __path__:
      __path__.append(_tf_api_dir)
    
    # Hook external TensorFlow modules.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 23 02:14:00 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/coderepo.go

    			// Right now we return "missing go.mod", which is a little confusing.
    			return nil, &module.ModuleError{
    				Path: r.modPath,
    				Err: &module.InvalidVersionError{
    					Version: v,
    					Err:     notExistError{err: err},
    				},
    			}
    		}
    
    		invalidf := func(format string, args ...any) error {
    			return &module.ModuleError{
    				Path: r.modPath,
    				Err: &module.InvalidVersionError{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/capabilities/CapabilitiesConflictResolutionIntegrationTest.groovy

            then:
    
            resolve.expectGraph {
                root(":", ":test:") {
                    module('org:testB:1.0:runtimeAlt').byConflictResolution("On capability org:testB we want runtimeAlt with 'special'")
                    module('org:testB:1.0:runtimeAlt')
                    module('org:testB:1.0:runtimeOptional')
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 07:37:10 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/buildlist.go

    	// requirements of those root modules, and the transitive requirements of only
    	// the root modules that do not support pruning.
    	//
    	// If workspace, the graph includes only the workspace modules, the explicit
    	// requirements of the workspace modules, and the transitive requirements of
    	// the workspace modules that do not support pruning.
    	pruning modPruning
    
    	// rootModules is the set of root modules of the graph, sorted and capped to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

            def a1 = mavenHttpRepo.module('org.foo', 'a')
            def b1 = mavenHttpRepo.module('org.foo', 'b')
            def b2 = mavenHttpRepo.module('org.foo', 'b', '2.0')
            def c1 = mavenHttpRepo.module('org.foo', 'c')
            def d1 = mavenHttpRepo.module('org.foo', 'd')
            def e1 = mavenHttpRepo.module('org.foo', 'e')
            def f1 = mavenHttpRepo.module('org.foo', 'f')
    
            a1.dependsOn(c1).publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  9. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/klibSourceFileProvider/AbstractGetKlibSourceFileNameTest.kt

            val mainModule = testServices.ktTestModuleStructure.mainModules
                .let { modules -> if (modules.size == 1) modules.first() else fail("Expected single main module. Found $modules") }
    
            val libraryModule = mainModule.ktModule as? KtLibraryModule
                ?: fail("Expected main module '${mainModule.ktModule}' to be '${KtLibraryModule::class.simpleName}'")
    
            val actual = StringBuilder()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                    // This is a performance optimization. Most modules do not declare capabilities. So, instead of systematically registering
                    // an implicit capability for each module that we see, we only consider modules which _declare_ capabilities. If they do,
                    // then we try to find a module which provides the same capability. It that module has been found, then we register it.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top