- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 49 for registering (0.05 seconds)
-
build-logic/build.gradle.kts
tasks.register("check") { dependsOn(subprojects.map { "${it.name}:check" }) } tasks.register("test") { dependsOn(subprojects.map { "${it.name}:test" }) } val clean by tasks.registering { val buildLogicPropertiesFile = layout.projectDirectory.file("gradle.properties") val rootPropertiesFile = layout.projectDirectory.file("../gradle.properties") doLast {
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Mar 14 02:17:00 GMT 2025 - 1.2K bytes - Click Count (0) -
src/test/java/jcifs/internal/witness/WitnessRegistrationTest.java
assertEquals(WitnessRegistrationState.REGISTERING, registration.getState()); registration.setState(WitnessRegistrationState.REGISTERED); assertEquals(WitnessRegistrationState.REGISTERED, registration.getState()); registration.setState(WitnessRegistrationState.UNREGISTERING); assertEquals(WitnessRegistrationState.UNREGISTERING, registration.getState());
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 23 09:06:40 GMT 2025 - 5.1K bytes - Click Count (0) -
src/main/java/jcifs/internal/witness/WitnessRegistration.java
*/ public enum WitnessRegistrationState { /** Registration is in progress */ REGISTERING, /** Registration is active and confirmed */ REGISTERED, /** Unregistration is in progress */ UNREGISTERING, /** Registration has failed */ FAILED, /** Registration has expired due to timeout */ EXPIRED }Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Mon Aug 25 14:34:10 GMT 2025 - 6.7K bytes - Click Count (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts
} // publish plugin to local repository for integration testing ----------------- // See AbstractPluginTest val localRepository = layout.buildDirectory.dir("repository") val publishPluginsToTestRepository by tasks.registering { dependsOn("publishPluginMavenPublicationToTestRepository") val repoDir = localRepository // Prevent capturing the Gradle script instance for configuration cache compatibility
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Jul 02 12:28:02 GMT 2025 - 6.1K bytes - Click Count (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/LanguageProvider.java
import org.apache.maven.api.Language; import org.apache.maven.api.annotations.Consumer; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.di.Named; /** * Service provider interface for registering custom {@link Language} implementations. * <p> * This interface allows plugins and extensions to define and register additional programming languagesCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Apr 03 13:33:59 GMT 2025 - 1.9K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/ProjectScope.java
* (i.e. the <i>main</i> artifact) or the ones that will be used when building <i>tests</i>). * <p> * This extensible enum has two defined values, {@link #MAIN} and {@link #TEST}, * but can be extended by registering a {@code org.apache.maven.api.spi.ProjectScopeProvider}. * <p> * Implementation must have {@code equals()} and {@code hashCode()} implemented, so implementations of this interface * can be used as keys. *
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Mon Feb 05 09:42:51 GMT 2024 - 1.8K bytes - Click Count (0) -
tests/test_dependency_paramless.py
): # This is an incorrect way of using it, this is not checking if the scopes are # provided by the token, only if the endpoint is requesting them, but the test # here is just to check if FastAPI is indeed registering and passing the scopes # correctly when using Security with parameterless dependencies. if "a" not in security_scopes.scopes or "b" not in security_scopes.scopes:Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Wed Dec 17 21:25:59 GMT 2025 - 2.3K bytes - Click Count (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/ProjectScopeProvider.java
import org.apache.maven.api.ProjectScope; import org.apache.maven.api.annotations.Consumer; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.di.Named; /** * Service provider interface for registering custom {@link ProjectScope} implementations. * <p> * This interface allows plugins and extensions to define and register additional project scopesCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Apr 03 13:33:59 GMT 2025 - 2K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Language.java
import static org.apache.maven.api.ExtensibleEnums.language; /** * Language. * <p> * This extensible enum has two defined values, {@link #NONE} and {@link #JAVA_FAMILY}, * but can be extended by registering a {@code org.apache.maven.api.spi.LanguageProvider}. * <p> * Implementation must have {@code equals()} and {@code hashCode()} implemented, so implementations of this interface * can be used as keys. * * @since 4.0.0Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Jan 30 12:22:39 GMT 2025 - 2.2K bytes - Click Count (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/PackagingProvider.java
import org.apache.maven.api.Packaging; import org.apache.maven.api.annotations.Consumer; import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.di.Named; /** * Service provider interface for registering custom {@link Packaging} implementations. * <p> * This interface allows plugins and extensions to define and register additional packaging typesCreated: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Apr 03 13:33:59 GMT 2025 - 2K bytes - Click Count (0)