Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for Flock (0.19 sec)

  1. maven-core/src/main/java/org/apache/maven/lifecycle/internal/MojoExecutor.java

         * by concurrently running mojo executions. To prevent race conditions, an aggregating execution will block
         * all other executions until finished.
         * We also lock on a given project to forbid a forked lifecycle to be executed concurrently with the project.
         * TODO: ideally, the builder should take care of the ordering in a smarter way
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 20.7K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/lifecycle/DefaultLifecycleExecutor.java

        public void execute(MavenSession session) {
            lifecycleStarter.execute(session);
        }
    
        // These methods deal with construction intact Plugin object that look like they come from a standard
        // <plugin/> block in a Maven POM. We have to do some wiggling to pull the sources of information
        // together and this really shows the problem of constructing a sensible default configuration but
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Feb 28 23:31:09 GMT 2024
    - 7K bytes
    - Viewed (0)
  3. maven-compat/src/main/java/org/apache/maven/repository/legacy/LegacyRepositorySystem.java

                url = "file://" + url.substring("file:".length());
            }
    
            // So now we have an url of the form file://<path>
    
            // We want to eliminate any relative path nonsense and lock down the path so we
            // need to fully resolve it before any submodules use the path. This can happen
            // when you are using a custom settings.xml that contains a relative path entry
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Sep 14 11:48:15 GMT 2023
    - 31.6K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    pository.exception.ComponentLifecycleEx; } org/codehaus/plexus/component/manager/ClassicSingletonComp.class package org.codehaus.plexus.component.manager; public synchronized class ClassicSingletonComp extends AbstractComponentMan { private Object lock; private java.util.Map singletonMap; public void ClassicSingletonComp(); public void release(Object) throws org.codehaus.plexus.component.repository.exception.ComponentLifecycleEx; public void dispose() throws org.codehaus.plexus.component.reposit...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 205.7K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    pository.exception.ComponentLifecycleEx; } org/codehaus/plexus/component/manager/ClassicSingletonComp.class package org.codehaus.plexus.component.manager; public synchronized class ClassicSingletonComp extends AbstractComponentMan { private Object lock; private java.util.Map singletonMap; public void ClassicSingletonComp(); public void release(Object) throws org.codehaus.plexus.component.repository.exception.ComponentLifecycleEx; public void dispose() throws org.codehaus.plexus.component.reposit...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 233.3K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-32/plexus-container-default-1.0-alpha-32.jar

    pository.exception.ComponentLifecycleEx; } org/codehaus/plexus/component/manager/ClassicSingletonComp.class package org.codehaus.plexus.component.manager; public synchronized class ClassicSingletonComp extends AbstractComponentMan { private Object lock; private java.util.Map singletonMap; public void ClassicSingletonComp(); public void release(Object) throws org.codehaus.plexus.component.repository.exception.ComponentLifecycleEx; public void dispose() throws org.codehaus.plexus.component.reposit...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 233.3K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                }
                this.parentCache = new ConcurrentHashMap<>();
            }
    
            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
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    pository.exception.ComponentLifecycleEx; } org/codehaus/plexus/component/manager/ClassicSingletonComp.class package org.codehaus.plexus.component.manager; public synchronized class ClassicSingletonComp extends AbstractComponentMan { private Object lock; private java.util.Map singletonMap; public void ClassicSingletonComp(); public void release(Object) throws org.codehaus.plexus.component.repository.exception.ComponentLifecycleEx; public void dispose() throws org.codehaus.plexus.component.reposit...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 205.7K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScope.java

            return () -> {
                LinkedList<ScopeState> stack = values.get();
                if (stack == null || stack.isEmpty()) {
                    throw new OutOfScopeException("Cannot access " + key + " outside of a scoping block");
                }
    
                ScopeState state = stack.getFirst();
    
                Provider<?> seeded = state.seeded.get(key);
    
                if (seeded != null) {
                    return (T) seeded.get();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Mon Dec 26 15:12:32 GMT 2022
    - 5.2K bytes
    - Viewed (0)
  10. maven-compat/src/main/java/org/apache/maven/artifact/repository/metadata/AbstractRepositoryMetadata.java

            if (metadataFile.length() == 0) {
                if (!metadataFile.delete()) {
                    // sleep for 10ms just in case this is windows holding a file lock
                    try {
                        Thread.sleep(10);
                    } catch (InterruptedException e) {
                        // ignore
                    }
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 7K bytes
    - Viewed (0)
Back to top