Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for Kuper (0.14 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelInterpolator.java

             * @param prefix the prefix.
             * @param root the root of the graph.
             */
            public PrefixedObjectValueSource(String prefix, Object root) {
                super(new PrefixedValueSourceWrapper(new ObjectBasedValueSource(root), prefix));
            }
    
            /**
             * Wrap the specified root object, allowing the specified list of expression
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 20K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

            @Override
            public Thread getOwner() {
                return super.getOwner();
            }
        }
    
        static class OwnerReentrantReadWriteLock extends ReentrantReadWriteLock {
            @Override
            public Thread getOwner() {
                return super.getOwner();
            }
        }
    
        private static void warn(String msg) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 20.7K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/PluginParameterExpressionEvaluator.java

            String basedir = null;
    
            if (project != null) {
                File projectFile = project.getBasedir();
    
                // this should always be the case for non-super POM instances...
                if (projectFile != null) {
                    basedir = projectFile.getAbsolutePath();
                }
            }
    
            if (basedir == null) {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Oct 17 17:55:08 GMT 2023
    - 16.7K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/apiv4-repo/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3-sources.jar

    example: * <pre>assertThat("myValue", allOf(startsWith("my"), containsString("Val")))</pre> */ @Factory public static <T> Matcher<T> allOf(Matcher<? super T> first, Matcher<? super T> second, Matcher<? super T> third, Matcher<? super T> fourth, Matcher<? super T> fifth, Matcher<? super T> sixth) { List<Matcher<? super T>> matchers = new ArrayList<Matcher<? super T>>(6); matchers.add(first); matchers.add(second); matchers.add(third); matchers.add(fourth); matchers.add(fifth); matchers.add(sixth); return...
    Archive
    - Registered: Sun Apr 14 03:35:08 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 31.9K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/artifact/resolver/ArtifactResolverTest.java

        @BeforeEach
        @Override
        public void setUp() throws Exception {
            super.setUp();
    
            projectArtifact = createLocalArtifact("project", "3.0");
        }
    
        @Override
        protected DefaultRepositorySystemSession initRepoSession() throws Exception {
            DefaultRepositorySystemSession session = super.initRepoSession();
            session.setWorkspaceReader(new TestMavenWorkspaceReader());
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 10.1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/multithreaded/ThreadOutputMuxer.java

            projectBuildThreadLocal.remove();
        }
    
        private class ThreadBoundPrintStream extends PrintStream {
    
            ThreadBoundPrintStream(PrintStream systemOutStream) {
                super(systemOutStream);
            }
    
            private PrintStream getOutputStreamForCurrentThread() {
                return getThreadBoundPrintStream();
            }
    
            @Override
            public void println() {
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Sep 06 08:39:32 GMT 2023
    - 12.8K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ModelBuilderRequest.java

                        Object listener,
                        ModelBuilderResult interimResult,
                        ModelTransformerContextBuilder transformerContextBuilder) {
                    super(session);
                    this.validationLevel = validationLevel;
                    this.locationTracking = locationTracking;
                    this.twoPhaseBuilding = twoPhaseBuilding;
                    this.source = source;
    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)
  8. maven-core/src/main/java/org/apache/maven/execution/MavenSession.java

            return request.getReactorFailureBehavior();
        }
    
        @Override
        public MavenSession clone() {
            try {
                MavenSession clone = (MavenSession) super.clone();
                // the default must become the current project of the thread that clones this
                MavenProject current = getCurrentProject();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Mar 25 10:50:01 GMT 2024
    - 16.6K bytes
    - Viewed (0)
  9. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/ApiRunner.java

                    List<RemoteRepository> repositories,
                    List<org.eclipse.aether.repository.RemoteRepository> resolverRepositories,
                    Lookup lookup) {
                super(session, repositorySystem, repositories, resolverRepositories, lookup);
                systemProperties = System.getenv().entrySet().stream()
                        .collect(Collectors.toMap(e -> "env." + e.getKey(), e -> e.getValue()));
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 17.1K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenModelMerger.java

         */
        public static final String ARTIFACT_ID = "artifact-id";
    
        public MavenModelMerger() {
            super(false);
        }
    
        @Override
        public Model merge(Model target, Model source, boolean sourceDominant, Map<?, ?> hints) {
            return super.merge(target, source, sourceDominant, hints);
        }
    
        @Override
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 22.8K bytes
    - Viewed (0)
Back to top