- Sort Score
- Result 10 results
- Languages All
Results 1721 - 1730 of 2,331 for Klasse (0.04 sec)
-
android/guava-tests/test/com/google/common/collect/ImmutableCollectionTest.java
import junit.framework.TestCase; import org.jspecify.annotations.NullUnmarked; /** * Tests for {@code ImmutableCollection}. * * @author Louis Wasserman */ @NullUnmarked public class ImmutableCollectionTest extends TestCase { public void testCapacityExpansion() { assertEquals(1, ImmutableCollection.Builder.expandedCapacity(0, 1)); assertEquals(2, ImmutableCollection.Builder.expandedCapacity(0, 2));Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 1.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnsh/ShellParser.java
*/ package org.apache.maven.cling.invoker.mvnsh; import org.apache.commons.cli.ParseException; import org.apache.maven.api.cli.Options; import org.apache.maven.cling.invoker.BaseParser; public class ShellParser extends BaseParser { @Override protected Options parseCliOptions(LocalContext context) { try { return CommonsCliShellOptions.parse(context.parserRequest.args().toArray(new String[0]));Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jun 11 13:14:09 UTC 2025 - 1.4K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/logging/impl/UnsupportedSlf4jBindingConfiguration.java
import java.util.Map; import java.util.Set; import org.apache.maven.cling.logging.BaseSlf4jConfiguration; /** * Pseudo-configuration for unsupported SLF4J binding. * * @since 3.2.4 */ public class UnsupportedSlf4jBindingConfiguration extends BaseSlf4jConfiguration { /** * @deprecated the arguments are ignored. Use the no-args constructor. */ @DeprecatedRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 08 08:49:11 UTC 2024 - 1.4K bytes - Viewed (0) -
impl/maven-cli/src/main/resources/META-INF/maven/slf4j-configuration.properties
# specific language governing permissions and limitations # under the License. # key = Slf4j effective logger factory implementation # value = corresponding o.a.m.cli.logging.Slf4jConfiguration class org.slf4j.impl.SimpleLoggerFactory=org.apache.maven.cling.logging.impl.MavenSimpleConfiguration org.apache.maven.slf4j.MavenLoggerFactory=org.apache.maven.cling.logging.impl.MavenSimpleConfiguration
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 08 08:49:11 UTC 2024 - 1.3K bytes - Viewed (0) -
compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultModelCacheFactory.java
/** * Default implementation of {@link ModelCacheFactory}. * * @deprecated since 4.0.0, use {@code maven-api-impl} jar instead */ @Singleton @Named @Deprecated(since = "4.0.0") public class DefaultModelCacheFactory implements ModelCacheFactory { @Override public ModelCache createCache(RepositorySystemSession session) { return DefaultModelCache.newInstance(session); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/MavenExecutionException.java
* under the License. */ package org.apache.maven; import java.io.File; import org.apache.maven.project.ProjectBuildingException; /** */ public class MavenExecutionException extends Exception { private File pomFile; public MavenExecutionException(String message, File pomFile) { super(message); this.pomFile = pomFile; }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/InvalidPluginDescriptorException.java
* specific language governing permissions and limitations * under the License. */ package org.apache.maven.plugin; import java.util.List; /** * InvalidPluginDescriptorException */ public class InvalidPluginDescriptorException extends Exception { public InvalidPluginDescriptorException(String message, List<String> errors) { super(toMessage(message, errors)); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/PluginIncompatibleException.java
* under the License. */ package org.apache.maven.plugin; import org.apache.maven.model.Plugin; /** * Signals a plugin which is not compatible with the current Maven runtime. */ public class PluginIncompatibleException extends PluginManagerException { public PluginIncompatibleException(Plugin plugin, String message) { this(plugin, message, null); }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
impl/maven-core/src/test/java/org/apache/maven/RepositoryUtilsTest.java
package org.apache.maven; import org.apache.maven.artifact.Artifact; import org.eclipse.aether.graph.Dependency; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertNull; class RepositoryUtilsTest { @Test void testToArtifactMethodsReturnNullWhenInputParameterIsNull() { assertNull(RepositoryUtils.toArtifact((Dependency) null));Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 28 09:44:37 UTC 2025 - 1.3K bytes - Viewed (0) -
tests/test_security_openid_connect.py
from fastapi.security.open_id_connect_url import OpenIdConnect from fastapi.testclient import TestClient from pydantic import BaseModel app = FastAPI() oid = OpenIdConnect(openIdConnectUrl="/openid") class User(BaseModel): username: str def get_current_user(oauth_header: str = Security(oid)): user = User(username=oauth_header) return user @app.get("/users/me")
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Nov 24 19:03:06 UTC 2025 - 2.3K bytes - Viewed (0)