- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 17 for requestType (0.09 seconds)
-
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 10 07:30:49 GMT 2025 - 23K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java
public ModelBuilderRequestBuilder trace(RequestTrace trace) { this.trace = trace; return this; } public ModelBuilderRequestBuilder requestType(RequestType requestType) { this.requestType = requestType; return this; } public ModelBuilderRequestBuilder locationTracking(boolean locationTracking) { this.locationTracking = locationTracking;
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 10 07:30:49 GMT 2025 - 16.3K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/ArtifactTransferEvent.java
*/ public void setRequestType(final int requestType) { switch (requestType) { case REQUEST_PUT: break; case REQUEST_GET: break; default: throw new IllegalArgumentException("Illegal request type: " + requestType); } this.requestType = requestType; } /**Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 7.7K bytes - Click Count (0) -
api/maven-api-core/src/test/java/org/apache/maven/api/services/RequestImplementationTest.java
DependencyResolverRequest request1 = builder.session(session) .requestType(DependencyResolverRequest.RequestType.COLLECT) .pathScope(PathScope.MAIN_COMPILE) .build(); DependencyResolverRequest request2 = builder.session(session) .requestType(DependencyResolverRequest.RequestType.COLLECT) .pathScope(PathScope.MAIN_COMPILE) .build();
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Sep 17 10:01:14 GMT 2025 - 4.8K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java
session, DependencyResolverRequest.RequestType.FLATTEN, project, scope)); } @Nonnull default DependencyResolverResult flatten(@Nonnull DependencyResolverRequest request) { if (request.getRequestType() != DependencyResolverRequest.RequestType.FLATTEN) { throw new IllegalArgumentException("requestType should be FLATTEN when calling flatten()"); }Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Oct 16 14:15:37 GMT 2024 - 9.4K bytes - Click Count (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaWorkRequest.java
/** * Type of RDMA work request */ public enum RequestType { /** Send operation */ SEND, /** Receive operation */ RECEIVE, /** RDMA read operation */ READ, /** RDMA write operation */ WRITE } private final long requestId; private final RequestType type; private final RdmaMemoryRegion memoryRegion;Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sun Aug 24 00:12:28 GMT 2025 - 3.2K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataResolutionResult.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 5.4K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/Resolution.java
* a dependency collection or resolution request. Whether a collection * or resolution request is performed is controlled by the {@link #pathScope()} * field, the injected field type and the {@link #requestType()}. * <p> * If the {@code requestType} is not set explicitly, it will be inferred * from the {@code pathScope} and the injected field type. If the type * is {@link org.apache.maven.api.Node Node} and {@code pathScope == ""},Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Jun 11 07:23:04 GMT 2024 - 3.1K bytes - Click Count (0) -
apache-maven/src/assembly/maven/conf/maven-user.properties
?"${maven.project.conf}/maven-user.properties" # # Maven Cache Configuration # # Controls caching behavior for different request types during Maven builds. # Format: RequestType { scope:SCOPE ref:REFERENCE_TYPE } # # SCOPE OPTIONS: # session - Cache for entire Maven session (all modules in multi-module build) # request - Cache only for current request + its child requestsCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Mon Sep 29 14:45:25 GMT 2025 - 2.8K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/PluginUpgradeStrategy.java
ModelBuilderRequest request = ModelBuilderRequest.builder() .session(session) .source(Sources.buildSource(tempPomPath)) .requestType(ModelBuilderRequest.RequestType.BUILD_EFFECTIVE) .recursive(false) // We only want this POM, not its modules .build(); ModelBuilderResult result = modelBuilder.newSession().build(request);
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Tue Nov 18 18:03:26 GMT 2025 - 37K bytes - Click Count (0)