Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for Pending (1.3 sec)

  1. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

                            master.put(key, element);
    
                            if (!pending.isEmpty()) {
                                predecessors.put(key, pending);
                                pending = new ArrayList<>();
                            }
                        } else {
                            pending.add(element);
                        }
                    }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultProfileInjector.java

                            master.put(key, existing);
                            if (!pending.isEmpty()) {
                                predecessors.put(key, pending);
                                pending = new ArrayList<>();
                            }
                        } else {
                            pending.add(element);
                        }
                    }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultInheritanceAssembler.java

                            master.put(key, element);
    
                            if (!pending.isEmpty()) {
                                predecessors.put(key, pending);
                                pending = new ArrayList<>();
                            }
                        } else {
                            pending.add(element);
                        }
                    }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  4. maven-di/src/main/java/org/apache/maven/di/impl/Binding.java

        }
    
        public static <T> Binding<T> toInstance(T instance) {
            return new BindingToInstance<>(instance);
        }
    
        public static <R> Binding<R> to(Key<R> originalKey, TupleConstructorN<R> constructor, Class<?>[] types) {
            return Binding.to(
                    originalKey, constructor, Stream.of(types).map(Key::of).toArray(Key<?>[]::new));
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. maven-di/src/main/java/org/apache/maven/di/impl/ReflectionUtils.java

        }
    
        public static <T> @Nullable Binding<T> generateImplicitBinding(Key<T> key) {
            Binding<T> binding = generateConstructorBinding(key);
            if (binding != null) {
                Annotation scope = scopeOf(key.getRawType());
                if (scope != null) {
                    binding = binding.scope(scope);
                }
                binding = binding.initializeWith(generateInjectingInitializer(key));
            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Feb 09 17:13:31 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. maven-core/src/main/mdo/extension.mdo

                <multiplicity>*</multiplicity>
              </association>
              <description><![CDATA[Restricts the classes/resources from the current artifact's CoreExtension class realm that are exposed. Values ending with ".*" expose all classes/resources which are directly contained in the given package in binary form. 
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/ChecksumAlgorithmService.java

             */
            @Nonnull
            String getName();
    
            /**
             * Returns the file extension to be used for given checksum file (without leading dot), never {@code null}. The
             * extension should be file and URL path friendly, and may differ from algorithm name.
             * The checksum extension SHOULD NOT contain dot (".") character.
             * Example: "sha1".
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Dec 21 08:05:10 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  8. api/maven-api-metadata/src/main/mdo/metadata.mdo

            </field>
            <field>
              <name>version</name>
              <version>1.0.0+</version>
              <type>String</type>
              <description>The base version (i.e. ending in {@code -SNAPSHOT}) when this directory represents a "groupId/artifactId/version" for a SNAPSHOT.</description>
            </field>
            <field xdoc.separator="blank">
              <name>plugins</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelProcessor.java

     * into itself leading to a stack overflow.
     *
     * A side effect of using @Typed is that it translates to explicit bindings in the container.
     * So instead of binding the component under a 'wildcard' key it is now bound with an explicit
     * key. Since this is a default component this will be a plain binding of ModelProcessor to
     * this implementation type, ie. no hint/name.
     *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            }
    
            eventSpyDispatcher.onEvent(toolchainsRequest);
    
            slf4jLogger.debug(
                    "Reading global toolchains from '{}'",
                    getLocation(toolchainsRequest.getGlobalToolchainsSource(), globalToolchainsFile));
            slf4jLogger.debug(
                    "Reading user toolchains from '{}'",
                    getLocation(toolchainsRequest.getUserToolchainsSource(), userToolchainsFile));
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top