Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 596 for REQUEST (0.18 sec)

  1. maven-core/src/test/java/org/apache/maven/configuration/DefaultBeanConfiguratorTest.java

            DefaultBeanConfigurationRequest request = new DefaultBeanConfigurationRequest();
            request.setBean(bean).setConfiguration(config);
            request.setValuePreprocessor(preprocessor).setPathTranslator(translator);
    
            configurator.configureBean(request);
    
            assertEquals(new File("base/test").getAbsoluteFile(), bean.file);
        }
    
        @Test
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

    // requests, testing the request's verb and the target resource. A
    // ResourcePolicyRule matches a resource request if and only if: (a)
    // at least one member of verbs matches the request, (b) at least one
    // member of apiGroups matches the request, (c) at least one member of
    // resources matches the request, and (d) either (d1) the request does
    // not specify a namespace (i.e., `Namespace==""`) and clusterScope is
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.4K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

    // requests, testing the request's verb and the target resource. A
    // ResourcePolicyRule matches a resource request if and only if: (a)
    // at least one member of verbs matches the request, (b) at least one
    // member of apiGroups matches the request, (c) at least one member of
    // resources matches the request, and (d) either (d1) the request does
    // not specify a namespace (i.e., `Namespace==""`) and clusterScope is
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/DefaultArtifactDescriptorReader.java

        private Model loadPom(
                RepositorySystemSession session, ArtifactDescriptorRequest request, ArtifactDescriptorResult result)
                throws ArtifactDescriptorException {
            RequestTrace trace = RequestTrace.newChild(request.getTrace(), request);
    
            LinkedHashSet<String> visited = new LinkedHashSet<>();
            for (Artifact a = request.getArtifact(); ; ) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/repository/TestRepositorySystem.java

            ArtifactResolutionResult result = new ArtifactResolutionResult();
    
            if (request.isResolveRoot()) {
                try {
                    resolve(request.getArtifact(), request);
                    result.addArtifact(request.getArtifact());
                } catch (IOException e) {
                    result.addMissingArtifact(request.getArtifact());
                }
            }
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

                throws Exception {
            MavenExecutionRequest request = createMavenExecutionRequest(pom);
    
            ProjectBuildingRequest configuration = new DefaultProjectBuildingRequest()
                    .setLocalRepository(request.getLocalRepository())
                    .setRemoteRepositories(request.getRemoteRepositories())
                    .setPluginArtifactRepositories(request.getPluginArtifactRepositories())
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 11.7K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultArtifactDeployer.java

        @Override
        public void deploy(@Nonnull ArtifactDeployerRequest request) {
            nonNull(request, "request");
            InternalSession session = InternalSession.from(request.getSession());
            Collection<Artifact> artifacts = nonNull(request.getArtifacts(), "request.artifacts");
            RemoteRepository repository = nonNull(request.getRepository(), "request.repository");
            try {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 2.4K bytes
    - Viewed (0)
  8. common-protos/k8s.io/api/admission/v1/generated.proto

    message AdmissionRequest {
      // UID is an identifier for the individual request/response. It allows us to distinguish instances of requests which are
      // otherwise identical (parallel requests, requests when earlier requests did not modify etc)
      // The UID is meant to track the round trip (request/response) between the KAS and the WebHook, not the user request.
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 8.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            BuildSession(ProjectBuildingRequest request, boolean localProjects) {
                this.request = request;
                this.session =
                        RepositoryUtils.overlay(request.getLocalRepository(), request.getRepositorySession(), repoSystem);
                InternalSession.from(session);
                this.repositories = RepositoryUtils.toRepos(request.getRemoteRepositories());
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

            ModelBuilderRequestBuilder(ModelBuilderRequest request) {
                this.session = request.getSession();
                this.validationLevel = request.getValidationLevel();
                this.locationTracking = request.isLocationTracking();
                this.twoPhaseBuilding = request.isTwoPhaseBuilding();
                this.source = request.getSource();
                this.projectBuild = request.isProjectBuild();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 17.1K bytes
    - Viewed (0)
Back to top