Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 676 for scope3 (0.05 sec)

  1. compat/maven-model-builder/src/test/java/org/apache/maven/model/validation/DefaultModelValidatorTest.java

            SimpleProblemCollector result = validate("bad-dependency-scope.xml");
    
            assertViolations(result, 0, 0, 2);
    
            assertTrue(result.getWarnings().get(0).contains("test:f"));
            // Check that the import scope error message is more helpful
            assertTrue(result.getWarnings()
                    .get(0)
                    .contains("has scope 'import'. The 'import' scope is only valid in <dependencyManagement> sections"));
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 33.9K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScope.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.execution.scope.internal;
    
    import java.util.Collection;
    import java.util.IdentityHashMap;
    
    import com.google.inject.Key;
    import com.google.inject.Provider;
    import com.google.inject.Scope;
    import com.google.inject.name.Named;
    import org.apache.maven.execution.MojoExecutionEvent;
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  3. docs/pt/docs/tutorial/dependencies/dependencies-with-yield.md

    ### `scope` para subdependências { #scope-for-sub-dependencies }
    
    Quando você declara uma dependência com `scope="request"` (o padrão), qualquer subdependência também precisa ter `scope` igual a `"request"`.
    
    Mas uma dependência com `scope` igual a `"function"` pode ter dependências com `scope` igual a `"function"` e com `scope` igual a `"request"`.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 14.2K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/dependencies/dependencies-with-yield.md

    If not specified and the dependency has `yield`, it will have a `scope` of `"request"` by default.
    
    ### `scope` for sub-dependencies { #scope-for-sub-dependencies }
    
    When you declare a dependency with a `scope="request"` (the default), any sub-dependency needs to also have a `scope` of `"request"`.
    
    But a dependency with `scope` of `"function"` can have dependencies with `scope` of `"function"` and `scope` of `"request"`.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/rank/fusion/RankFusionProcessor.java

    /**
     * RankFusionProcessor manages multiple search engines and combines their results using rank fusion algorithms.
     * This processor supports searching with multiple searchers concurrently and merging their results based on
     * ranking scores to provide more comprehensive and accurate search results.
     *
     * The processor maintains a pool of searchers and an executor service for concurrent operations.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 27.5K bytes
    - Viewed (0)
  6. impl/maven-core/src/test/java/org/apache/maven/project/AbstractMavenProjectTestCase.java

            DefaultSession s = new DefaultSession(session, null, null, null, null, null);
            SessionScope scope = container.lookup(SessionScope.class);
            scope.enter();
            scope.seed(Session.class, s);
            scope.seed(InternalMavenSession.class, s);
    
            repoSession.setCache(new DefaultRepositoryCache());
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jan 10 08:42:00 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  7. cmd/signature-v4-parser_test.go

    		t.Errorf("Test %d: service mismatch:Expected \"%s\", got \"%s\"", testNum, expectedCredentials.scope.service, actualCredential.scope.service)
    	}
    
    	if expectedCredentials.scope.request != actualCredential.scope.request {
    		t.Errorf("Test %d: scope request mismatch:Expected \"%s\", got \"%s\"", testNum, expectedCredentials.scope.request, actualCredential.scope.request)
    	}
    }
    
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Oct 10 18:57:35 UTC 2025
    - 27.8K bytes
    - Viewed (0)
  8. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/PomBuilder.java

                    xml.append("            <version>").append(dependency.version).append("</version>\n");
                    if (dependency.scope != null) {
                        xml.append("            <scope>").append(dependency.scope).append("</scope>\n");
                    }
                    xml.append("        </dependency>\n");
                }
                xml.append("    </dependencies>\n");
            }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Tue Nov 18 18:03:26 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  9. impl/maven-core/src/test/projects/plugin-manager/project-contributing-system-scope-plugin-dep/pom.xml

            <dependencies>
              <dependency>
                <groupId>org.apache.maven.its.mng3586</groupId>
                <artifactId>tools</artifactId>
                <version>1.5.0</version>
                <scope>system</scope>
                <systemPath>${basedir}/tools.jar</systemPath>
              </dependency>
            </dependencies>
            <executions>
              <execution>
                <id>load</id>
                <phase>validate</phase>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/conflict/AbstractConflictResolverTest.java

        }
    
        protected Artifact createArtifact(String id, String version, String scope)
                throws InvalidVersionSpecificationException {
            return createArtifact(id, version, scope, null, false);
        }
    
        protected Artifact createArtifact(String id, String version, String scope, String inheritedScope, boolean optional)
                throws InvalidVersionSpecificationException {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Mar 26 19:31:34 UTC 2025
    - 4.3K bytes
    - Viewed (0)
Back to top