- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 636 for Extensions (0.04 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http1/Http1ExchangeCodec.kt
val extensions = socket.source.readUtf8LineStrict().trim() if (bytesRemainingInChunk < 0L || extensions.isNotEmpty() && !extensions.startsWith(";")) { throw ProtocolException( "expected chunk size and optional extensions" + " but was \"$bytesRemainingInChunk$extensions\"", ) } } catch (e: NumberFormatException) {
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 17.5K bytes - Viewed (7) -
impl/maven-cli/src/main/java/org/apache/maven/cling/extensions/LoadedCoreExtension.java
* under the License. */ package org.apache.maven.cling.extensions; import org.apache.maven.api.cli.extensions.CoreExtension; import org.apache.maven.extension.internal.CoreExtensionEntry; /** * Represents a core extension that has been selected to be loaded. * @param coreExtension The extension configuration entry with location tracking. * @param entry The loaded entry with descriptor. */
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Mar 13 12:50:59 UTC 2025 - 1.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/JodExtractor.java
* Gets the extractor for the specified file extension. * * @param ext the file extension * @return the extractor for the extension, or null if not found */ private Extractor getExtractor(final String ext) { return extractorMap.get(ext); } /** * Gets the output extension for the specified input extension. * * @param extension the input file extensionRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 10.4K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/SpiService.java
/** * Marker interface to indicate services that can be provided by plugins and extensions. * <p> * This interface serves as the base for all Service Provider Interface (SPI) components in Maven. * Classes implementing this interface can be discovered and loaded by Maven through the * Java ServiceLoader mechanism, allowing plugins and extensions to contribute functionality * to the Maven build process. * <p>
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 1.7K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CoreExtensionSelector.java
import org.apache.maven.api.cli.InvokerRequest; import org.apache.maven.api.cli.extensions.CoreExtension; /** * Core extension selector: selects which entries to load from {@link InvokerRequest#coreExtensions()}. * * @param <C> The context type. */ public interface CoreExtensionSelector<C extends LookupContext> { /** * Selects core extensions to be loaded from list of all sources detected. */ @NonnullRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Mar 13 12:50:59 UTC 2025 - 1.4K bytes - Viewed (0) -
pom.xml
</execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> </plugins> </build> <dependencies> <dependency>
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat Dec 20 04:15:34 UTC 2025 - 4.9K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/io/xpp3/CoreExtensionsXpp3Reader.java
if ("extension".equals(parser.getName())) { java.util.List<CoreExtension> extensions = coreExtensions.getExtensions(); if (extensions == null) { extensions = new java.util.ArrayList<CoreExtension>(); } extensions.add(parseCoreExtension(parser, strict));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 25.3K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/WebSocketHttpTest.kt
newWebSocket( Request .Builder() .url(webServer.url("/")) .header("Sec-WebSocket-Extensions", "permessage-deflate") .build(), ) clientListener.assertFailure( ProtocolException::class.java, "Request header not permitted: 'Sec-WebSocket-Extensions'", ) } @Test fun webSocketAndApplicationInterceptors() { val interceptedCount = AtomicInteger()
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Tue Nov 04 19:13:52 UTC 2025 - 35.5K bytes - Viewed (0) -
docs/en/docs/advanced/path-operation-advanced-configuration.md
/// tip This is a low level extension point. If you only need to declare additional responses, a more convenient way to do it is with [Additional Responses in OpenAPI](additional-responses.md){.internal-link target=_blank}. /// You can extend the OpenAPI schema for a *path operation* using the parameter `openapi_extra`. ### OpenAPI Extensions { #openapi-extensions }
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 20 15:55:38 UTC 2025 - 7.2K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/BaseParser.java
import org.apache.maven.api.cli.cisupport.CIInfo; import org.apache.maven.api.cli.extensions.CoreExtension; import org.apache.maven.api.cli.extensions.InputLocation; import org.apache.maven.api.cli.extensions.InputSource; import org.apache.maven.api.services.Interpolator; import org.apache.maven.cling.internal.extension.io.CoreExtensionsStaxReader; import org.apache.maven.cling.invoker.cisupport.CIDetectorHelper;
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 10 07:39:11 UTC 2025 - 25.5K bytes - Viewed (0)