awesome-repositories.com
ब्लॉग
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेसMCP सर्वर
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 रिपॉजिटरी

Awesome GitHub RepositoriesAnnotation Processing Workflows

Management of the execution sequence and phase-based deferral in annotation processing pipelines.

Distinct from Data Annotation Workflows: Distinct from data labeling workflows; this is about the internal execution order of a compiler plugin.

Explore 3 awesome GitHub repositories matching software engineering & architecture · Annotation Processing Workflows. Refine with filters or upvote what's useful.

Awesome Annotation Processing Workflows GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • google/autogoogle का अवतार

    google/auto

    10,545GitHub पर देखें↗

    This project is a Java annotation processing framework and source code generator designed to automate repetitive boilerplate and reduce manual coding errors. It functions as a toolkit for building custom annotation processors that produce source code, metadata, and type definitions during the compilation process. The framework specifically automates the creation of immutable value types with built-in equality and hashing logic, as well as the generation of factory implementations for dependency injection. It also handles the automated production of service provider configuration files to enab

    Organizes processing actions into discrete steps and manages the deferral of invalid elements to later phases.

    Java
    GitHub पर देखें↗10,545
  • phpdocumentor/phpdocumentorphpDocumentor का अवतार

    phpDocumentor/phpDocumentor

    4,332GitHub पर देखें↗

    phpDocumentor एक PHP API दस्तावेज़ीकरण जनरेटर और सोर्स कोड एनालाइज़र है जो PHP फाइलों और DocBlocks को संरचित HTML API संदर्भों में बदल देता है। यह एक स्टेटिक साइट जनरेटर और एक स्वचालित दस्तावेज़ीकरण टूल के रूप में कार्य करता है जिसे कोड परिवर्तनों के साथ तकनीकी दस्तावेज़ीकरण को सिंक्रनाइज़ करने के लिए डिज़ाइन किया गया है। यह प्रोजेक्ट UML डायग्राम जनरेटर के रूप में कार्य करके खुद को अलग करता है, जो सोर्स विश्लेषण के आधार पर PlantUML के माध्यम से क्लास और आर्किटेक्चरल ग्राफ तैयार करता है। यह तकनीकी मैनुअल लेखन का भी समर्थन करता है, जो स्वचालित रूप से उत्पन्न API संदर्भों के साथ मार्कडाउन और ReStructuredText में हस्तलिखित गाइड प्रस्तुत करता है। यह टूल सोर्स कोड विश्लेषण के लिए व्यापक क्षमताएं प्रदान करता है, जिसमें एब्स्ट्रैक्ट सिंटैक्स ट्री का निर्माण, मेटाडेटा टैगिंग और दस्तावेज़ीकरण विरासत का प्रबंधन शामिल है। इसमें कोड आर्किटेक्चर, तत्व दृश्यता नियंत्रण और वर्शन्ड दस्तावेज़ीकरण प्रबंधन के लिए विज़ुअलाइज़ेशन टूल शामिल हैं। बिल्ड्स को निरंतर एकीकरण पाइपलाइनों के भीतर निर्माण को स्वचालित करने के लिए XML कॉन्फ़िगरेशन फाइलों के माध्यम से प्रबंधित किया जा सकता है।

    Extracts specialized tags and namespaced annotations from source code to define metadata.

    PHPdocblockdocblocksgraphviz
    GitHub पर देखें↗4,332
  • roboguice/roboguiceroboguice का अवतार

    roboguice/roboguice

    3,722GitHub पर देखें↗

    RoboGuice is a dependency injection library based on Google Guice, specifically designed for Android applications. It functions as an annotation-processed dependency injection container that automates the delivery of system services and application dependencies into Android components to reduce boilerplate code. The project uses annotation processing to optimize application startup times and initialization. By utilizing compile-time bytecode generation, it reduces the overhead typically associated with runtime reflection during the initialization of the dependency container. The framework ma

    Implements a DI container that is initialized via annotation processing to optimize startup time.

    Java
    GitHub पर देखें↗3,722
  1. Home
  2. Software Engineering & Architecture
  3. Annotation Processing Workflows

सब-टैग एक्सप्लोर करें

  • DI Container GenerationUsing annotation processing to generate the internal structure and wiring of a dependency injection container. **Distinct from Annotation Processing Workflows:** Focuses on generating the DI container itself, rather than general execution sequences in a pipeline.
  • DocBlock Annotation ProcessingExtraction of specialized metadata tags from source code comments to define application behavior. **Distinct from Annotation Processing Workflows:** Distinct from compiler-level annotation processing: focuses on documentation tags in DocBlocks.