Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for Google (0.21 sec)

  1. apache-maven/src/main/appended-resources/META-INF/LICENSE.vm

    #*    *##elseif ( $project.url.startsWith( "https://github.com/google/guava/" ) )
    #*      *##set ( $project.url = 'https://github.com/google/guava/' )
    #*    *##elseif ( $project.url.startsWith( "https://github.com/google/guice/" ) )
    #*      *##set ( $project.url = 'https://github.com/google/guice/' )
    #*    *##end
    #*    *###
    #*    *### Classworlds is in boot directory, not in lib
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Sep 13 20:57:31 GMT 2021
    - 3.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.java

    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.util.function.Supplier;
    import java.util.stream.Collectors;
    
    import com.google.inject.AbstractModule;
    import com.google.inject.binder.AnnotatedBindingBuilder;
    import com.google.inject.name.Names;
    import org.apache.maven.api.services.MavenException;
    import org.apache.maven.di.Injector;
    import org.apache.maven.di.Key;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 8K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScopeModule.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.session.scope.internal;
    
    import javax.inject.Inject;
    import javax.inject.Named;
    
    import com.google.inject.AbstractModule;
    import org.apache.maven.SessionScoped;
    import org.apache.maven.api.Session;
    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.internal.impl.InternalMavenSession;
    
    /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 2.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScope.java

    import java.util.HashMap;
    import java.util.IdentityHashMap;
    import java.util.LinkedList;
    import java.util.Map;
    
    import com.google.inject.Key;
    import com.google.inject.OutOfScopeException;
    import com.google.inject.Provider;
    import com.google.inject.Scope;
    import com.google.inject.util.Providers;
    import org.apache.maven.execution.MojoExecutionEvent;
    import org.apache.maven.execution.MojoExecutionListener;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 5.2K bytes
    - Viewed (0)
  5. maven-core/src/main/java/org/apache/maven/plugin/internal/PluginConfigurationModule.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.plugin.internal;
    
    import com.google.inject.Binder;
    import com.google.inject.Module;
    import com.google.inject.name.Names;
    import org.apache.maven.api.model.Plugin;
    import org.apache.maven.api.xml.XmlNode;
    import org.apache.maven.internal.xml.XmlNodeImpl;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 07:14:56 GMT 2023
    - 2K bytes
    - Viewed (0)
  6. maven-core/src/test/java/org/apache/maven/session/scope/SessionScopeProxyTest.java

     * under the License.
     */
    package org.apache.maven.session.scope;
    
    import javax.inject.Inject;
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import com.google.inject.OutOfScopeException;
    import org.apache.maven.SessionScoped;
    import org.apache.maven.api.Session;
    import org.apache.maven.session.scope.internal.SessionScope;
    import org.codehaus.plexus.PlexusContainer;
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 12:52:20 GMT 2024
    - 4.2K bytes
    - Viewed (0)
  7. apache-maven/src/main/appended-resources/META-INF/NOTICE.vm

    ## under the License.
    ##
    This software bundles the following NOTICE files from third party library providers:
    
    META-INF/NOTICE in archive lib/guice-5.1.0.jar
    Google Guice - Core Library
    Copyright 2006-2022 Google, Inc.
    This product includes software developed at
    The Apache Software Foundation (http://www.apache.org/).
    
    META-INF/NOTICE in archive lib/plexus-utils-3.2.1.jar
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sat Sep 10 19:27:25 GMT 2022
    - 5.5K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/execution/scope/MojoExecutionScoped.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.execution.scope;
    
    import java.lang.annotation.Retention;
    import java.lang.annotation.Target;
    
    import com.google.inject.ScopeAnnotation;
    
    import static java.lang.annotation.ElementType.TYPE;
    import static java.lang.annotation.RetentionPolicy.RUNTIME;
    
    /**
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 1.3K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/execution/scope/internal/MojoExecutionScopeTest.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.execution.scope.internal;
    
    import java.util.concurrent.atomic.AtomicInteger;
    
    import com.google.inject.Key;
    import org.apache.maven.execution.MojoExecutionEvent;
    import org.apache.maven.execution.scope.WeakMojoExecutionListener;
    import org.apache.maven.plugin.MojoExecutionException;
    import org.junit.jupiter.api.Test;
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 3.6K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/execution/DefaultMavenExecutionRequestPopulator.java

            //      <host>proxy.somewhere.com</host>
            //      <port>8080</port>
            //      <username>proxyuser</username>
            //      <password>somepassword</password>
            //      <nonProxyHosts>www.google.com|*.somewhere.com</nonProxyHosts>
            //    </proxy>
            //  </proxies>
    
            for (Proxy proxy : settings.getProxies()) {
                if (!proxy.isActive()) {
                    continue;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Jun 19 15:04:04 GMT 2023
    - 8.1K bytes
    - Viewed (0)
Back to top