Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for moduleB (0.48 sec)

  1. 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)
  2. src/cmd/go/internal/modload/init.go

    	// slash. For most modules, pathPrefix is just version.Path, but the
    	// standard-library module "std" has an empty prefix.
    	pathPrefix map[module.Version]string
    
    	// inGorootSrc caches whether modRoot is within GOROOT/src.
    	// The "std" module is special within GOROOT/src, but not otherwise.
    	inGorootSrc map[module.Version]bool
    
    	modFiles map[module.Version]*modfile.File
    
    	modContainingCWD module.Version
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modget/get.go

    // selected version of a module (or of the module containing a package),
    // whether a pattern denotes a package or module may change as updates are
    // applied (see the example in mod_get_patchmod.txt).
    //
    // There are a few other ambiguous cases to resolve, too. A package can exist in
    // two different modules at the same version: for example, the package
    // example.com/foo might be found in module example.com and also in module
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    [[sec:java_testing_modular_patching]]
    === Whitebox test execution with module patching
    
    Another approach for whitebox testing is to stay in the module world by _patching_ the tests into the module under test.
    This way, module boundaries stay in place, but the tests themselves become part of the module under test and can then access the module's internals.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

     public:
      explicit QuantizationSummary(ModuleOp module)
          : module_(module), symbol_table_(module) {}
    
      void Print() {
        llvm::StringMap<OpCountItem> func_count_map;
        int32_t total_quantized_func_count = 0, float_output_func_count = 0,
                quantize_func_count = 0, dequantize_func_count = 0,
                weight_only_count = 0;
    
        module_.walk([&](Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/load.go

    	}
    }
    
    // preloadRootModules loads the module requirements needed to identify the
    // selected version of each module providing a package in rootPkgs,
    // adding new root modules to the module graph if needed.
    func (ld *loader) preloadRootModules(ctx context.Context, rootPkgs []string) (changedBuildList bool) {
    	needc := make(chan map[module.Version]bool, 1)
    	needc <- map[module.Version]bool{}
    	for _, path := range rootPkgs {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

                                "modules.module[" + i + "]",
                                null,
                                "specifies duplicate child module " + module,
                                m.getLocation("modules"));
                    }
                }
    
                Severity errOn30 = getSeverity(request, ModelBuildingRequest.VALIDATION_LEVEL_MAVEN_3_0);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat May 18 14:09:22 UTC 2024
    - 76K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/DependenciesAttributesIntegrationTest.groovy

            given:
            repository {
                def modules = ['direct', 'transitive', 'leaf']
                modules.eachWithIndex { module, idx ->
                    ['A', 'B'].each { appendix ->
                        "org:${module}${appendix}:1.0" {
                            if (idx < modules.size() - 1) {
                                dependsOn("org:${modules[idx + 1]}${appendix}:1.0")
                            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 02:13:52 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/alignment/AlignmentIntegrationTest.groovy

            when:
            expectAlignment {
                module('xml') alignsTo('1.0') byVirtualPlatform()
                module('core') alignsTo('1.0')
                module('json') tries('1.1')
                module('foo') group('org2') alignsTo('1.0')
                module('bar') group('org3') alignsTo('1.0')
                module('a') group('org4') tries('1.0') alignsTo('1.1')
                module('b') group('org4') alignsTo('1.1')
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 59.6K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                moduleAdjustments = new HashMap<>();
    
                List<String> modules = getModules();
                if (modules != null) {
                    for (String modulePath : modules) {
                        String moduleName = modulePath;
    
                        if (moduleName.endsWith("/") || moduleName.endsWith("\\")) {
                            moduleName = moduleName.substring(0, moduleName.length() - 1);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
Back to top