Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Dag (0.25 sec)

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

         * </ul>
         * @throws DuplicateProjectException if any projects are duplicated by id
         */
        // MAVENAPI FIXME: the DAG used is NOT only used to represent the dependency relation,
        // but also for <parent>, <build><plugin>, <reports>. We need multiple DAG's
        // since a DAG can only handle 1 type of relationship properly.
        // Use case:  This is detected as a cycle:
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 06:02:04 GMT 2023
    - 10.3K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelTransformerContextBuilder.java

     * This is an inner class, as it must be able to call readRawModel()
     *
     * @since 4.0.0
     */
    class DefaultModelTransformerContextBuilder implements ModelTransformerContextBuilder {
        private final Graph dag = new Graph();
        private final DefaultModelBuilder defaultModelBuilder;
        private final DefaultModelTransformerContext context;
    
        private final Map<String, Set<ModelSource>> mappedSources = new ConcurrentHashMap<>(64);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/util/concurrent/Service.java

     * before the {@link Service} reaches the {@linkplain State#RUNNING RUNNING} state. The set of legal
     * transitions form a <a href="http://en.wikipedia.org/wiki/Directed_acyclic_graph">DAG</a>,
     * therefore every method of the listener will be called at most once. N.B. The {@link State#FAILED}
     * and {@link State#TERMINATED} states are terminal states, once a service enters either of these
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Apr 04 09:45:04 GMT 2023
    - 10.7K bytes
    - Viewed (0)
Back to top