Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for GetRequest (0.15 sec)

  1. platforms/core-runtime/internal-instrumentation-processor/src/main/java/org/gradle/internal/instrumentation/processor/modelreader/api/CallInterceptionRequestReader.java

                private final CallInterceptionRequest request;
    
                public Success(CallInterceptionRequest request) {
                    this.request = request;
                }
    
                public CallInterceptionRequest getRequest() {
                    return request;
                }
            }
    
            class InvalidRequest implements Result {
                public final String reason;
    
                public InvalidRequest(String reason) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 02 15:44:14 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuildingEvent.java

            this.request = request;
            this.problems = problems;
        }
    
        @Override
        public Model getModel() {
            return model;
        }
    
        @Override
        public ModelBuildingRequest getRequest() {
            return request;
        }
    
        @Override
        public ModelProblemCollector getProblems() {
            return problems;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingEvent.java

        Model getModel();
    
        /**
         * Gets the model building request being processed.
         *
         * @return The model building request being processed, never {@code null}.
         */
        ModelBuildingRequest getRequest();
    
        /**
         * Gets the container used to collect problems that were encountered while processing the event.
         *
         * @return The container used to collect problems that were encountered, never {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/internal/SmbNegotiation.java

            this.response = response;
            this.negoReqBuffer = negoReqBuffer;
            this.negoRespBuffer = negoRespBuffer;
        }
    
    
        /**
         * @return the request
         */
        public SmbNegotiationRequest getRequest () {
            return this.request;
        }
    
    
        /**
         * @return the response
         */
        public SmbNegotiationResponse getResponse () {
            return this.response;
        }
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/relocation/UserPropertiesArtifactRelocationSource.java

            if (relocations != null) {
                Artifact original = artifactDescriptorResult.getRequest().getArtifact();
                Relocation relocation = relocations.getRelocation(original);
                if (relocation != null
                        && (isProjectContext(artifactDescriptorResult.getRequest().getRequestContext())
                                || relocation.global)) {
                    if (relocation.target == SENTINEL) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. platforms/software/resources-gcs/src/main/java/org/gradle/internal/resource/transport/gcp/gcs/GcsClient.java

            LOGGER.debug("Attempting to get gcs resource: [{}]", uri.toString());
    
            String path = cleanResourcePath(uri);
            try {
                Storage.Objects.Get getRequest = storage.objects().get(uri.getHost(), path);
                return getRequest.execute();
            } catch (GoogleJsonResponseException e) {
                // When an artifact is being published it is first checked whether it is available.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 11:17:20 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/relocation/UserPropertiesArtifactRelocationSource.java

            if (relocations != null) {
                Artifact original = artifactDescriptorResult.getRequest().getArtifact();
                Relocation relocation = relocations.getRelocation(original);
                if (relocation != null
                        && (isProjectContext(artifactDescriptorResult.getRequest().getRequestContext())
                                || relocation.global)) {
                    if (relocation.target == SENTINEL) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Dec 18 12:26:49 UTC 2023
    - 9K bytes
    - Viewed (0)
  8. maven-core/src/test/java/org/apache/maven/internal/impl/DefaultSessionTest.java

            DefaultMavenExecutionRequest mer = new DefaultMavenExecutionRequest();
            MavenSession ms = new MavenSession(null, rss, mer, null);
            ms.getRequest().setRootDirectory(Paths.get("myRootDirectory"));
            DefaultSession session =
                    new DefaultSession(ms, mock(RepositorySystem.class), Collections.emptyList(), null, null, null);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jan 25 13:58:24 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/cache/ResolutionControl.java

     */
    public interface ResolutionControl<A, B> {
        /**
         * Returns the query object that was requested in this resolution.
         * @return the request object
         */
        A getRequest();
    
        /**
         * Returns the cached result file or null if the result has not been cached.
         * @return the cached result
         */
        @Nullable
        B getCachedResult();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/toolchain/DefaultToolchainManagerPrivate.java

            } else {
                List<ToolchainModel> availableToolchains =
                        org.apache.maven.toolchain.model.ToolchainModel.toolchainModelToApiV4(
                                session.getRequest().getToolchains().get(type));
    
                if (availableToolchains != null) {
                    for (ToolchainModel toolchainModel : availableToolchains) {
                        org.apache.maven.toolchain.model.ToolchainModel tm =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top