Searched refs:configurations (Results 1 - 6 of 6) sorted by relevance

/openjdk10/make/
H A DHelp.gmk86 $(info $(_) CONF= # Build all configurations (note, assignment is empty))
105 $(if $(all_confs), $(info Available configurations in $(build_dir):) $(foreach var,$(all_confs),$(info * $(var))),\
106 $(info No configurations were found in $(build_dir).) $(info Run 'bash configure' to create a configuration.))
110 print-configurations:
115 ALL_GLOBAL_TARGETS := help print-configurations
H A DInitSupport.gmk71 # Setup information about available configurations, if any.
225 $$(info Error: No configurations found for $$(topdir).)
239 $$(info Error: No configurations found matching CONF_NAME=$$(CONF_NAME).)
240 $$(info Available configurations in $$(build_dir):)
245 $$(info Available configurations in $$(build_dir):)
256 # If given CONF=, match all configurations
264 $$(info Error: No configurations found matching CONF=$$(CONF).)
265 $$(info Available configurations in $$(build_dir):)
275 $$(info Building these configurations (matching CONF=$$(CONF)):)
284 # No CONF or SPEC given, check the available configurations
[all...]
/openjdk10/jdk/make/src/classes/build/tools/jigsaw/
H A DGenGraphs.java90 Map<String, Configuration> configurations = new HashMap<>();
97 configurations.put(name, Configuration.empty()
106 configurations.put("jdk", Configuration.empty()
112 genGraphs.genDotFiles(configurations);
245 void genDotFiles(Map<String, Configuration> configurations) throws IOException { argument
246 ModuleDotGraph dotGraph = new ModuleDotGraph(configurations, spec);
/openjdk10/langtools/src/jdk.jdeps/share/classes/com/sun/tools/jdeps/
H A DModuleDotGraph.java59 private final Map<String, Configuration> configurations; field in class:ModuleDotGraph
69 public ModuleDotGraph(Map<String, Configuration> configurations, boolean apiOnly) { argument
70 this.configurations = configurations;
87 for (String mn : configurations.keySet()) {
89 genDotFile(path, mn, configurations.get(mn), attributes);
/openjdk10/jdk/src/java.base/share/classes/java/lang/module/
H A DConfiguration.java61 * configurations. </p>
75 * will often be the parent when creating new configurations. </p>
109 // parent configurations, in search order
224 * configurations
267 * configurations
371 * The list parent configurations in search order
375 * configurations
427 * all modules in the parent configurations, with {@link ModuleDescriptor#uses()
443 * The list parent configurations in search order
447 * configurations
579 Stream<Configuration> configurations() { method in class:Configuration
[all...]
H A DResolver.java251 .flatMap(Configuration::configurations)
501 // need "requires transitive" from the modules in parent configurations
508 .flatMap(Configuration::configurations)
571 // in parent configurations
589 // reads all modules in parent configurations
591 // configurations
593 parent.configurations()
808 * Find a module of the given name in the parent configurations

Completed in 158 milliseconds