- Sort Score
- Num 10 results
- Language All
Results 151 - 160 of 1,568 for configurationId (0.1 seconds)
-
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java
} // -- void removeExecution( Execution ) /** * Set configuration to pass to all goals run in this phase. * * @param configuration a configuration object. */ public void setConfiguration(Object configuration) { this.configuration = configuration; } // -- void setConfiguration( Object ) /** * Set the goals to execute within the phase.
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 3.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webconfig/ApiAdminWebconfigAction.java
.status(ApiResult.Status.OK) .result()); } /** * Retrieves a specific web configuration setting by ID. * * @param id the ID of the web configuration setting to retrieve * @return JSON response containing the web configuration setting */ // GET /api/admin/webconfig/setting/{id} @Execute public JsonResponse<ApiResult> get$setting(final String id) {
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 8.8K bytes - Click Count (0) -
api/maven-api-plugin/src/main/mdo/plugin.mdo
<description> Specifies that this parameter can be configured directly by the user (as in the case of POM-specified configuration). This is useful when you want to force the user to use common POM elements rather than plugin configurations, as in the case where you want to use the artifact's final name as a parameter. In
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:28:41 GMT 2025 - 24.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java
* The boost value for documents from this web configuration. */ @Required @ValidateTypeFailure public Float boost; /** * Whether this web configuration is available for crawling. */ @Required @Size(max = 5) public String available; /** * Permissions required to access documents from this configuration. */Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.9K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/MojoExecution.java
return configuration; } public void setConfiguration(org.codehaus.plexus.util.xml.Xpp3Dom configuration) { this.configuration = configuration; } public void setConfiguration(XmlNode configuration) { this.configuration = configuration != null ? new org.codehaus.plexus.util.xml.Xpp3Dom(configuration) : null; } public String identify() {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 6.2K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/project/AbstractMavenProjectTestCase.java
ProjectBuildingRequest configuration = newBuildingRequest(); configuration.setRemoteRepositories(Arrays.asList(new ArtifactRepository[] {})); configuration.setProcessPlugins(false); configuration.setResolveDependencies(true); try { return projectBuilder.build(pom, configuration).getProject(); } catch (Exception e) {
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 7.2K bytes - Click Count (0) -
impl/maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java
server.setUsername("jason"); server.setPassword("abc123"); Xpp3Dom configuration = new Xpp3Dom("configuration"); Xpp3Dom wagonProvider = new Xpp3Dom("wagonProvider"); wagonProvider.setValue("httpclient"); configuration.addChild(wagonProvider); server.setConfiguration(configuration); MavenExecutionRequest request = new DefaultMavenExecutionRequest();
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 19.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/configuration/internal/DefaultBeanConfigurator.java
Object configuration = request.getConfiguration(); if (configuration == null) { return; } PlexusConfiguration plexusConfig; if (configuration instanceof PlexusConfiguration plexusConfiguration) { plexusConfig = plexusConfiguration; } else if (configuration instanceof Xpp3Dom xpp3Dom) {Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 8.3K bytes - Click Count (0) -
src/main/java/jcifs/config/DelegatingConfiguration.java
import java.util.TimeZone; import jcifs.Configuration; import jcifs.DialectVersion; import jcifs.ResolverType; /** * Configuration implementation that delegates to another configuration instance. * Provides a wrapper mechanism for configuration objects with delegation pattern. * * @author mbechler */ public class DelegatingConfiguration implements Configuration { private final Configuration delegate;Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 24.1K bytes - Click Count (0) -
compat/maven-compat/src/main/resources/META-INF/maven/plugin-expressions/project.paramdoc.xml
<url>scp://host/path/to/repo</url> </snapshotRepository> </distributionManagement> ]]></configuration> <description> This is the ArtifactRepository used to deploy artifacts built by this Maven. </description> </expression> <expression> <syntax>project.artifact</syntax> <configuration> <![CDATA[ <groupId>project.group</groupId> <artifactId>project-artifact</artifactId>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 5.6K bytes - Click Count (0)