- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 631 for extentions (0.1 sec)
-
src/test/java/jcifs/smb/SmbSessionImplSecurityTest.java
assertTrue(endLatch.await(30, TimeUnit.SECONDS), "All threads should complete within timeout"); executor.shutdown(); // Then - Verify no exceptions occurred if (!exceptions.isEmpty()) { fail("Concurrent operations caused exceptions: " + exceptions.get(0)); } assertEquals(threadCount * opsPerThread, successCount.get(), "All operations should succeed"); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11K 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 Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 1.7K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/package-info.java
* <li>{@link org.apache.maven.api.cli.Options} - Represents Maven configuration options</li> * <li>{@link org.apache.maven.api.cli.extensions.CoreExtensions} - Manages Maven core extensions</li> * </ul> * * <p>Core extensions can be configured through {@code .mvn/extensions.xml} in the project base directory * to enhance Maven's capabilities during build execution.</p> * * @since 4.0.0 */
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Mar 04 14:17:18 UTC 2025 - 1.9K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbPipeInputStreamTest.java
verify(fd, never()).markClosed(); } @Test @DisplayName("available() wraps SmbException to IOException") void available_wrapsException() throws Exception { // Verify exceptions from th.send are converted to IOException via seToIoe SmbPipeInputStream stream = newStreamWithMinimalStubs(true); when(handle.ensureOpen()).thenReturn(fd); when(fd.getTree()).thenReturn(tree);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/RealWebSocket.kt
return } // Apply the extensions. If they're unacceptable initiate a graceful shut down. // TODO(jwilson): Listeners should get onFailure() instead of onClosing() + onClosed(1010). val extensions = WebSocketExtensions.parse(response.headers) this@RealWebSocket.extensions = extensions if (!extensions.isValid()) { synchronized(this@RealWebSocket) {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 21.6K bytes - Viewed (0) -
src/test/resources/plugin/repo2/fess-ds-atlassian/12.2.0-SNAPSHOT/maven-metadata.xml
</snapshot> <lastUpdated>20180814210714</lastUpdated> <snapshotVersions> <snapshotVersion> <extension>jar</extension> <value>12.2.0-20180814.210714-10</value> <updated>20180814210714</updated> </snapshotVersion> <snapshotVersion> <extension>pom</extension> <value>12.2.0-20180814.210714-10</value> <updated>20180814210714</updated> </snapshotVersion>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 15 02:16:52 UTC 2019 - 1.2K bytes - Viewed (0) -
api/maven-api-annotations/src/main/java/org/apache/maven/api/annotations/Consumer.java
import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * A type implemented by, or extended by maven plugins or extensions. * Maven plugins or extensions may provide implementations of those types which will be used by maven. * <p> * A type can be marked {@link Consumer} or {@link Provider} but not both. A type is assumed to be
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Dec 10 21:43:27 UTC 2024 - 1.8K bytes - Viewed (0) -
pom.xml
</archive> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>6.0.0</version> <extensions>true</extensions> <configuration> <instructions> <Bundle-Version>${osgi.version}</Bundle-Version> <Bundle-License>LGPL</Bundle-License> <Bundle-Vendor>CodeLibs</Bundle-Vendor>
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 12.1K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/CoreExtensions.java
import org.apache.maven.api.cli.extensions.CoreExtension; import static java.util.Objects.requireNonNull; /** * Represents the list of core extensions configured at one source. The list is validated (are GA unique), but no * other logic than that is applied. * * @since 4.0.0 * @param source The source file of core extensions, is never {@code null}.
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Mar 13 12:50:59 UTC 2025 - 1.9K bytes - Viewed (0) -
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 Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 17.5K bytes - Viewed (0)