Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for Somani (0.17 sec)

  1. maven-artifact/src/main/java/org/apache/maven/repository/Proxy.java

         */
        private String nonProxyHosts;
    
        /**
         * For NTLM proxies, specifies the NTLM host.
         */
        private String ntlmHost;
    
        /**
         * For NTLM proxies, specifies the NTLM domain.
         */
        private String ntlmDomain;
    
        /**
         * Return proxy server host name.
         *
         * @return proxy server host name
         */
        public String getHost() {
            return host;
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 22 13:26:01 GMT 2022
    - 4K bytes
    - Viewed (0)
  2. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

                            p.setPassword(authCtx.get(AuthenticationContext.PASSWORD));
                            p.setNtlmDomain(authCtx.get(AuthenticationContext.NTLM_DOMAIN));
                            p.setNtlmHost(authCtx.get(AuthenticationContext.NTLM_WORKSTATION));
                            authCtx.close();
                        }
                        return p;
                    }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
  3. apache-maven/src/main/appended-resources/licenses/unrecognized-aopalliance-1.0.txt

    Public Domain...
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Sep 10 19:27:25 GMT 2022
    - 13 bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/model/plugin/DefaultLifecycleBindingsInjector.java

                        .build(Build.newBuilder().plugins(plugins).build())
                        .build();
                model.update(merger.merge(model.getDelegate(), lifecycleModel));
            }
        }
    
        /**
         *  The domain-specific model merger for lifecycle bindings
         */
        protected static class LifecycleBindingsMerger extends MavenModelMerger {
    
            private static final String PLUGIN_MANAGEMENT = "plugin-management";
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.9K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/bridge/MavenRepositorySystem.java

                            p.setPassword(authCtx.get(AuthenticationContext.PASSWORD));
                            p.setNtlmDomain(authCtx.get(AuthenticationContext.NTLM_DOMAIN));
                            p.setNtlmHost(authCtx.get(AuthenticationContext.NTLM_WORKSTATION));
                            authCtx.close();
                        }
                        return p;
                    }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Feb 17 18:40:11 GMT 2024
    - 32.6K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

    import org.apache.maven.api.model.RepositoryBase;
    import org.apache.maven.api.model.Scm;
    import org.apache.maven.api.model.Site;
    import org.apache.maven.model.v4.MavenMerger;
    
    /**
     * The domain-specific model merger for the Maven POM, overriding generic code from parent class when necessary with
     * more adapted algorithms.
     *
     */
    public class MavenModelMerger extends MavenMerger {
    
        /**
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 22.8K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/internal/aether/LegacyRepositorySystemSessionExtender.java

                        p.setUserName(authCtx.get(AuthenticationContext.USERNAME));
                        p.setPassword(authCtx.get(AuthenticationContext.PASSWORD));
                        p.setNtlmDomain(authCtx.get(AuthenticationContext.NTLM_DOMAIN));
                        p.setNtlmHost(authCtx.get(AuthenticationContext.NTLM_WORKSTATION));
                        authCtx.close();
                    }
                    return p;
                }
            }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultLifecycleBindingsInjector.java

            String id = base;
            for (int index = 1; existingIds.contains(id); index++) {
                id = base + '-' + index;
            }
            return id;
        }
    
        /**
         *  The domain-specific model merger for lifecycle bindings
         */
        protected static class LifecycleBindingsMerger extends MavenModelMerger {
    
            private static final String PLUGIN_MANAGEMENT = "plugin-management";
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 8.6K bytes
    - Viewed (0)
  9. maven-compat/src/main/java/org/apache/maven/repository/metadata/DefaultGraphConflictResolver.java

                            // );
                        }
                    } else {
                        // System.out.println("+++>"+v.getMd().toDomainString()+" still has "+edge.toString() );
                        // fill in domain md with actual version data
                        ArtifactMetadata md = v.getMd();
                        ArtifactMetadata newMd = new ArtifactMetadata(
                                md.getGroupId(),
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Sep 06 11:28:54 GMT 2023
    - 8.2K bytes
    - Viewed (0)
Back to top