Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for could (0.15 sec)

  1. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            ExecutorService createExecutor(int parallelism) {
                //
                // We need an executor that will not block.
                // We can't use work stealing, as we are building a graph
                // and this could lead to cycles where a thread waits for
                // a task to finish, then execute another one which waits
                // for the initial task...
                // In order to work around that problem, we override the
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu May 02 15:10:38 GMT 2024
    - 56.9K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

        public Artifact getArtifact() {
            return artifact;
        }
    
        public void setArtifact(Artifact artifact) {
            this.artifact = artifact;
        }
    
        // TODO I would like to get rid of this. jvz.
        public Model getModel() {
            return model;
        }
    
        /**
         * Returns the project corresponding to a declared parent.
         *
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        // to validate the properties. We also need a way to navigate from the Tex specification documents to
        // the test in question and vice versa. A little Eclipse plugin would do the trick.
        public void testThatExecutionsWithoutIdsAreMergedAndTheChildWins() throws Exception {
            PomTestWrapper tester = buildPom("micromailer");
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
Back to top