Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for httpConfiguration (0.28 sec)

  1. maven-core/src/test/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactoryTest.java

            Xpp3Dom httpConfiguration = new Xpp3Dom("httpConfiguration");
            Xpp3Dom all = new Xpp3Dom("all");
            Xpp3Dom readTimeoutConfiguration = new Xpp3Dom("readTimeout");
            readTimeoutConfiguration.setValue("3000");
    
            all.addChild(readTimeoutConfiguration);
            httpConfiguration.addChild(all);
            configuration.addChild(httpConfiguration);
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Mar 27 14:46:12 GMT 2024
    - 19.3K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

                    } else {
                        // fallback configuration name
                        PlexusConfiguration httpConfiguration = config.getChild("httpConfiguration", false);
                        if (httpConfiguration != null) {
                            PlexusConfiguration httpConfigurationAll = httpConfiguration.getChild("all", false);
                            if (httpConfigurationAll != null) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 27.5K bytes
    - Viewed (0)
Back to top