- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 259 for slope (0.03 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/WarningResolutionListener.java
@Override public void omitForCycle(Artifact omitted) {} @Override public void updateScopeCurrentPom(Artifact artifact, String scope) {} @Override public void updateScope(Artifact artifact, String scope) {} @Override public void manageArtifact(Artifact artifact, Artifact replacement) {} @Override public void selectVersionFromRange(Artifact artifact) {}
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.1K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/AbstractMavenProjectTestCase.java
import org.apache.maven.repository.internal.MavenRepositorySystemUtils; import org.apache.maven.session.scope.internal.SessionScope; import org.codehaus.plexus.PlexusContainer; import org.codehaus.plexus.testing.PlexusTest; import org.eclipse.aether.DefaultRepositorySystemSession; import org.eclipse.aether.internal.impl.scope.ScopeManagerImpl; import org.junit.jupiter.api.BeforeEach; import static org.junit.jupiter.api.Assertions.fail;
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 20:01:00 UTC 2025 - 7.2K bytes - Viewed (0) -
guava-testlib/README.md
To add a dependency on Guava testlib using Maven, use the following: ```xml <dependency> <groupId>com.google.guava</groupId> <artifactId>guava-testlib</artifactId> <version>33.4.8-jre</version> <scope>test</scope> </dependency> ``` To add a dependency using Gradle: ```gradle dependencies { test 'com.google.guava:guava-testlib:33.4.8-jre' } ``` ## Links
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 18:38:35 UTC 2025 - 1.7K bytes - Viewed (0) -
api/maven-api-plugin/pom.xml
<artifactId>maven-api-xml</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.codehaus.modello</groupId> <artifactId>modello-maven-plugin</artifactId> <executions>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun Jun 29 22:37:39 UTC 2025 - 3.8K bytes - Viewed (0) -
docs/es/docs/how-to/custom-request-and-route.md
/// note | Detalles técnicos Un `Request` tiene un atributo `request.scope`, que es simplemente un `dict` de Python que contiene los metadatos relacionados con el request. Un `Request` también tiene un `request.receive`, que es una función para "recibir" el cuerpo del request. El `dict` `scope` y la función `receive` son ambos parte de la especificación ASGI.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 4.7K bytes - Viewed (0) -
pom.xml
<version>1.3.5</version> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.13.2</version> <scope>test</scope> </dependency> </dependencies>
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 03:01:32 UTC 2025 - 4.9K bytes - Viewed (0) -
integration-tests/gradle/gradlew.bat
@rem ########################################################################## @rem @rem Gradle startup script for Windows @rem @rem ########################################################################## @rem Set local scope for the variables with windows NT shell if "%OS%"=="Windows_NT" setlocal set DIRNAME=%~dp0 if "%DIRNAME%"=="" set DIRNAME=. @rem This is normally unused set APP_BASE_NAME=%~n0 set APP_HOME=%DIRNAME%
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 21 19:14:29 UTC 2025 - 2.8K bytes - Viewed (0) -
docs/pt/docs/how-to/custom-request-and-route.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 4.7K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java
artifact.setDependencyTrail(dependencyTrail); } /** {@inheritDoc} */ @Override public void setScope(String scope) { artifact.setScope(scope); } /** {@inheritDoc} */ @Override public VersionRange getVersionRange() { return artifact.getVersionRange(); } /** {@inheritDoc} */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 9.9K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/artifact/resolver/filter/ScopeArtifactFilterTest.java
import static org.junit.jupiter.api.Assertions.assertTrue; /** * Tests {@link ScopeArtifactFilter}. * */ class ScopeArtifactFilterTest { private Artifact newArtifact(String scope) { return new DefaultArtifact("g", "a", "1.0", scope, "jar", "", null); } @Test void testIncludeCompile() { ScopeArtifactFilter filter = new ScopeArtifactFilter(Artifact.SCOPE_COMPILE);
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 3.8K bytes - Viewed (0)