- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 42 for Typed (0.01 seconds)
-
api/maven-api-di/src/main/java/org/apache/maven/api/di/Typed.java
* interfaces or extended classes. * <p> * Example usage: * <pre> * {@literal @}Typed(ServiceImpl.class) * public class ServiceImpl implements Service { * // Implementation * } * </pre> * * @since 4.0.0 */ @Target({FIELD, METHOD, TYPE}) @Retention(RUNTIME) @Documented public @interface Typed { /** * Specifies the types that should be considered for dependency injection. * <p>
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Jan 30 23:28:59 GMT 2025 - 2.5K bytes - Click Count (0) -
cmd/typed-errors.go
Taran Pelkey <******@****.***> 1744754791 -0400
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Wed Apr 16 07:34:24 GMT 2025 - 5.9K bytes - Click Count (1) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/Lookup.java
/** * Performs a lookup for given typed component. * * @param type The component type. * @return The component. * @param <T> The component type. * @throws LookupException if no such component or there is some provisioning related issue. */ @Nonnull <T> T lookup(Class<T> type); /** * Performs a lookup for given typed component. *Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jan 10 12:55:54 GMT 2024 - 3.3K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/toolchain/ToolchainManagerFactory.java
this.logger = logger; } @Provides @Typed({ToolchainManager.class, ToolchainManagerPrivate.class}) @Named // qualifier is required for SiduDIBridge to work DefaultToolchainManagerV3 v3Manager() { return new DefaultToolchainManagerV3(); } @Provides @Priority(10) @Typed(org.apache.maven.api.services.ToolchainManager.class)Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Oct 31 10:58:52 GMT 2025 - 11K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/props/MavenProperties.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Thu Oct 16 09:03:48 GMT 2025 - 38.5K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 38.4K bytes - Click Count (0) -
internal/grid/trace.go
// Should match SingleHandler.Call checks. switch typed := v.(type) { case *MSS: trace.Path += typed.ToQuery() case map[string]string: m := MSS(typed) trace.Path += m.ToQuery() case *URLValues: trace.Path += typed.Values().Encode() case *NoPayload, *Bytes: trace.Path = fmt.Sprintf("%s?payload=%T", trace.Path, typed) case string: trace.Path = fmt.Sprintf("%s?%s", trace.Path, typed)Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sat Jun 01 05:17:37 GMT 2024 - 4.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScope.java
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 2.2K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProcessor.java
import java.io.Reader; import java.util.Map; import org.apache.maven.model.Model; import org.apache.maven.model.io.ModelReader; import org.apache.maven.model.locator.ModelLocator; import org.eclipse.sisu.Typed; /** * * Note: uses @Typed to limit the types it is available for injection to just ModelProcessor. * * This is because the ModelProcessor interface extends ModelLocator and ModelReader. If we
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 3.8K bytes - Click Count (0) -
internal/grid/README.md
the operation would become deadlocked if the channels are full. ### Typed handlers Typed handlers are handlers that have a specific type for the request and response payloads. ```go // Create a typed handler. handler := func(ctx context.Context, p *Payload, in <-chan *Req, out chan<- *Resp) *RemoteErr {Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Oct 10 18:57:03 GMT 2025 - 9.4K bytes - Click Count (0)