Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,726 for reject (9.43 sec)

  1. guava-tests/test/com/google/common/reflect/TypesTest.java

    import com.google.common.testing.NullPointerTester.Visibility;
    import com.google.common.testing.SerializableTester;
    import java.lang.reflect.GenericArrayType;
    import java.lang.reflect.GenericDeclaration;
    import java.lang.reflect.ParameterizedType;
    import java.lang.reflect.Type;
    import java.lang.reflect.TypeVariable;
    import java.lang.reflect.WildcardType;
    import java.util.Arrays;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 14.8K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/AbstractCoreMavenComponentTestCase.java

    @PlexusTest
    public abstract class AbstractCoreMavenComponentTestCase {
    
        @Inject
        protected PlexusContainer container;
    
        @Inject
        protected RepositorySystem repositorySystem;
    
        @Inject
        protected MavenRepositorySystem mavenRepositorySystem;
    
        @Inject
        protected org.apache.maven.project.ProjectBuilder projectBuilder;
    
        protected abstract String getProjectsDirectory();
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 11.7K bytes
    - Viewed (1)
  3. maven-compat/src/main/java/org/apache/maven/project/artifact/DefaultMavenMetadataCache.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.project.artifact;
    
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.io.File;
    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.LinkedHashMap;
    import java.util.LinkedHashSet;
    import java.util.List;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Jun 15 14:24:56 GMT 2023
    - 11.8K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/graph/DefaultGraphBuilder.java

    import org.apache.maven.project.CycleDetectedException;
    import org.apache.maven.project.DuplicateProjectException;
    import org.apache.maven.project.MavenProject;
    import org.apache.maven.project.ProjectBuildingException;
    import org.apache.maven.project.collector.MultiModuleCollectionStrategy;
    import org.apache.maven.project.collector.PomlessCollectionStrategy;
    import org.apache.maven.project.collector.RequestPomCollectionStrategy;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Dec 05 09:23:26 GMT 2023
    - 18.5K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/lifecycle/LifecycleExecutorTest.java

                    "beforeProjectExecution project-basic", //
                    "beforeProjectLifecycleExecution project-basic", //
                    "beforeMojoExecution project-basic:default-resources", //
                    "afterMojoExecutionSuccess project-basic:default-resources", //
                    "beforeMojoExecution project-basic:default-compile", //
                    "afterMojoExecutionSuccess project-basic:default-compile", //
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Jan 09 20:57:17 GMT 2024
    - 24.7K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.lifecycle.internal.builder;
    
    import javax.inject.Inject;
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.util.List;
    import java.util.Set;
    import java.util.stream.Collectors;
    
    import org.apache.maven.artifact.Artifact;
    import org.apache.maven.execution.BuildFailure;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 10.2K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/plugin/DefaultBuildPluginManager.java

     * under the License.
     */
    package org.apache.maven.plugin;
    
    import javax.inject.Inject;
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.io.ByteArrayOutputStream;
    import java.io.PrintStream;
    import java.util.List;
    
    import org.apache.maven.api.Project;
    import org.apache.maven.api.plugin.MojoException;
    import org.apache.maven.execution.MavenSession;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  8. maven-compat/src/main/java/org/apache/maven/project/artifact/MavenMetadataSource.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.project.artifact;
    
    import javax.inject.Inject;
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.io.File;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Collection;
    import java.util.Collections;
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 30.3K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/plugin/PluginManagerTest.java

        @Test
        void testThatPluginDependencyThatHasSystemScopeIsResolved() throws Exception {
            MavenSession session = createMavenSession(getProject("project-contributing-system-scope-plugin-dep"));
            MavenProject project = session.getCurrentProject();
            Plugin plugin = project.getPlugin("org.apache.maven.its.plugins:maven-it-plugin");
    
            RepositoryRequest repositoryRequest = new DefaultRepositoryRequest();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sat Apr 15 17:24:20 GMT 2023
    - 13.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/collect/ImmutableMapTest.java

        tester.testAllPublicInstanceMethods(ImmutableMap.of());
        tester.testAllPublicInstanceMethods(ImmutableMap.of("one", 1));
        tester.testAllPublicInstanceMethods(ImmutableMap.of("one", 1, "two", 2, "three", 3));
      }
    
      private static <K, V> void assertMapEquals(Map<K, V> map, Object... alternatingKeysAndValues) {
        Map<Object, Object> expected = new LinkedHashMap<>();
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Apr 30 14:39:16 GMT 2024
    - 37.3K bytes
    - Viewed (0)
Back to top