Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for dependente (0.06 sec)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/validation/DefaultModelValidator.java

            // packaging type.
            for (Dependency dependency : dependencies) {
                String key = dependency.getGroupId() + ":" + dependency.getArtifactId() + ":" + dependency.getVersion()
                        + (dependency.getClassifier() != null ? ":" + dependency.getClassifier() : EMPTY);
                String mKey = m.getGroupId() + ":" + m.getArtifactId() + ":" + m.getVersion();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 03 15:06:05 UTC 2025
    - 66.8K bytes
    - Viewed (0)
  2. pom.xml

    		</dependency>
    		<dependency>
    			<groupId>org.apache.logging.log4j</groupId>
    			<artifactId>log4j-api</artifactId>
    			<version>${log4j.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.apache.logging.log4j</groupId>
    			<artifactId>log4j-core</artifactId>
    			<version>${log4j.version}</version>
    		</dependency>
    		<dependency>
    			<groupId>org.apache.logging.log4j</groupId>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 49.4K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            for (Iterator<Dependency> it = depMgmt.getDependencies().iterator(); it.hasNext(); ) {
                Dependency dependency = it.next();
    
                if (!"pom".equals(dependency.getType()) || !"import".equals(dependency.getScope())) {
                    continue;
                }
    
                it.remove();
    
                String groupId = dependency.getGroupId();
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sun Mar 30 23:08:08 UTC 2025
    - 55.3K bytes
    - Viewed (0)
  4. fastapi/param_functions.py

        ] = None,
        *,
        use_cache: Annotated[
            bool,
            Doc(
                """
                By default, after a dependency is called the first time in a request, if
                the dependency is declared again for the rest of the request (for example
                if the dependency is needed by several dependencies), the value will be
                re-used for the rest of the request.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 63K bytes
    - Viewed (0)
  5. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                    Dependency dependency = new Dependency();
    
                    dependency.setArtifactId(a.getArtifactId());
                    dependency.setGroupId(a.getGroupId());
                    dependency.setVersion(a.getVersion());
                    dependency.setScope(a.getScope());
                    dependency.setType(a.getType());
                    dependency.setClassifier(a.getClassifier());
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
  6. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java

             * - For FAIL_FAST: Sets ReactorBuildStatus to halted, which causes executePlan to only process after:* steps
             * - For FAIL_AT_END: Blacklists the project and its dependents, which causes executePlan to skip them
             * - For FAIL_NEVER: Does nothing special, allowing all projects to continue building
             * <p>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 06:12:36 UTC 2025
    - 55.1K bytes
    - Viewed (0)
  7. impl/maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        /* MNG-4005: postponed to 3.1
        public void testValidationErrorUponNonUniqueDependencyKey()
            throws Exception
        {
            try
            {
                buildPom( "unique-dependency-key/deps" );
                fail( "Non-unique dependency keys did not cause validation error" );
            }
            catch ( ProjectBuildingException e )
            {
                // expected
            }
        }
    
        @Test
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 94.8K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_3x.md

        constant is included for completeness.
     *  New: Upgrade to Okio 1.14.0.
    
         ```xml
         <dependency>
           <groupId>com.squareup.okio</groupId>
           <artifactId>okio</artifactId>
           <version>1.14.0</version>
         </dependency>
    
         com.squareup.okio:okio:1.14.0
         ```
    
     *  Fix: Handle `HTTP/1.1 100 Continue` status lines, even on requests that did
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

                        Map<String, Artifact> tmp = new HashMap<>();
                        for (Dependency d : dependencyManagement.getDependencies()) {
                            Artifact artifact =
                                    repositorySystem.createDependencyArtifact(new org.apache.maven.model.Dependency(d));
                            if (artifact != null) {
                                tmp.put(d.getManagementKey(), artifact);
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 17:20:31 UTC 2025
    - 51.8K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        throw new InvalidObjectException("Use SerializationProxy");
      }
    
      /**
       * The actual object that gets serialized. Unfortunately, readResolve() doesn't get called when a
       * circular dependency is present, so the proxy must be able to behave as the map itself.
       */
      abstract static class AbstractSerializationProxy<K, V> extends ForwardingConcurrentMap<K, V>
          implements Serializable {
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 22 18:35:44 UTC 2025
    - 89.9K bytes
    - Viewed (0)
Back to top