Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for Typed (0.04 sec)

  1. 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>
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Jan 30 23:28:59 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  2. fastapi/py.typed

    Steve B <******@****.***> 1557567827 +0200
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat May 11 09:43:47 UTC 2019
    - Viewed (0)
  3. impl/maven-core/src/main/java/org/apache/maven/session/scope/internal/SessionScope.java

            return "org.apache.maven.api.di.Typed".equals(annotationType.getName())
                    || "org.eclipse.sisu.Typed".equals(annotationType.getName())
                    || "javax.enterprise.inject.Typed".equals(annotationType.getName())
                    || "jakarta.enterprise.inject.Typed".equals(annotationType.getName());
        }
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Jun 06 14:28:57 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  4. 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.
         *
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jan 10 12:55:54 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. impl/maven-cli/src/main/java/org/apache/maven/cling/props/MavenProperties.java

                boolean typed = false;
                if (maybeTyped && property[1].length() >= 2) {
                    typed = property[1].matches(
                            "\\s*[TILFDXSCBilfdxscb]?(\\[[\\S\\s]*\\]|\\([\\S\\s]*\\)|\\{[\\S\\s]*\\}|\"[\\S\\s]*\")\\s*");
                }
                if (this.typed == null) {
                    this.typed = typed;
                } else {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Thu Oct 16 09:03:48 UTC 2025
    - 38.5K bytes
    - Viewed (0)
  6. compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java

                boolean typed = false;
                if (maybeTyped && property[1].length() >= 2) {
                    typed = property[1].matches(
                            "\\s*[TILFDXSCBilfdxscb]?(\\[[\\S\\s]*\\]|\\([\\S\\s]*\\)|\\{[\\S\\s]*\\}|\"[\\S\\s]*\")\\s*");
                }
                if (this.typed == null) {
                    this.typed = typed;
                } else {
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Jul 23 17:27:08 UTC 2025
    - 38.4K bytes
    - Viewed (0)
  7. 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
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  8. 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)
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 31 10:58:52 UTC 2025
    - 11K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultArtifactManager.java

    import org.apache.maven.project.MavenProject;
    import org.eclipse.sisu.Typed;
    
    import static java.util.Objects.requireNonNull;
    
    /**
     * This implementation of {@code ArtifactManager} is explicitly bound to
     * both {@code ArtifactManager} and {@code Service} interfaces so that it can be retrieved using
     * {@link InternalSession#getAllServices()}.
     */
    @Named
    @Typed({ArtifactManager.class, Service.class})
    @SessionScoped
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 16:01:38 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/util/DocumentUtil.java

    import org.lastaflute.web.util.LaRequestUtil;
    
    import jakarta.servlet.http.HttpServletRequest;
    
    /**
     * Utility class for document data manipulation and type conversion.
     * This class provides static methods for extracting typed values from document maps,
     * URL encoding, and other document-related operations. It's designed as a final
     * utility class with only static methods.
     *
     */
    public final class DocumentUtil {
    
        /**
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.2K bytes
    - Viewed (0)
Back to top