Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,491 for ndocs (0.08 sec)

  1. .gitignore

    pom.xml.*
    release.properties
    local.properties
    
    .idea
    *.iml
    *.ipr
    *.iws
    *.log
    classes
    
    obj
    
    .DS_Store
    
    # Special Mkdocs files
    docs/4.x
    docs/changelog.md
    docs/contributing.md
    docs/index.md
    
    # jenv
    /.java-version
    /site/
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 10 11:52:12 UTC 2022
    - 337 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/java/application/kotlin/build.gradle.kts

    // tag::distribution-spec[]
    val createDocs by tasks.registering {
        val docs = layout.buildDirectory.dir("docs")
        outputs.dir(docs)
        doLast {
            docs.get().asFile.mkdirs()
            docs.get().file("readme.txt").asFile.writeText("Read me!")
        }
    }
    
    distributions {
        main {
            contents {
                from(createDocs) {
                    into("docs")
                }
            }
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. docs/metrics/prometheus/grafana/README.md

    ![Grafana](https://raw.githubusercontent.com/minio/minio/master/docs/metrics/prometheus/grafana/grafana-minio.png)
    
    Node level Replication metrics can be viewed in the Grafana dashboard using [json file here](https://raw.githubusercontent.com/minio/minio/master/docs/metrics/prometheus/grafana/replication/minio-replication-node.json)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:15:39 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/idea/model/IdeaModel.java

     * <p>
     * See the examples in docs for {@link IdeaModule} or {@link IdeaProject}.
     */
    public abstract class IdeaModel {
    
        private IdeaModule module;
        private IdeaProject project;
        private IdeaWorkspace workspace;
        private String targetVersion;
    
        /**
         * Configures IDEA module information. <p> For examples see docs for {@link IdeaModule}.
         */
        public IdeaModule getModule() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Aug 01 11:07:39 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseModel.java

     *
     *   project {
     *     //see docs for {@link EclipseProject}
     *   }
     *
     *   classpath {
     *     //see docs for {@link EclipseClasspath}
     *   }
     *
     *   wtp {
     *     //see docs for {@link EclipseWtp}
     *   }
     * }
     * </pre>
     *
     * More examples in docs for {@link EclipseProject}, {@link EclipseClasspath}, {@link EclipseWtp}
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  6. tests/test_local_docs.py

        body_content = html.body.decode()
        assert swagger_js_url in body_content
        assert swagger_css_url in body_content
        assert swagger_favicon_url in body_content
    
    
    def test_strings_in_custom_swagger():
        swagger_js_url = "swagger_fake_file.js"
        swagger_css_url = "swagger_fake_file.css"
        swagger_favicon_url = "swagger_fake_file.png"
        html = get_swagger_ui_html(
            openapi_url="/docs",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Dec 20 18:50:00 UTC 2020
    - 2.4K bytes
    - Viewed (0)
  7. fastapi/routing.py

                    It will be added to the generated OpenAPI (e.g. visible at `/docs`).
    
                    Read more about it in the
                    [FastAPI docs for Additional Responses in OpenAPI](https://fastapi.tiangolo.com/advanced/additional-responses/).
    
                    And in the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  8. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/LinkRendererTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package gradlebuild.docs.dsl.docbook
    
    import gradlebuild.docs.XmlSpecification
    import gradlebuild.docs.dsl.source.model.TypeMetaData
    import gradlebuild.docs.dsl.source.model.MethodMetaData
    import gradlebuild.docs.dsl.source.model.ClassMetaData
    
    class LinkRendererTest extends XmlSpecification {
        final DslDocModel model = Mock()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 4.9K bytes
    - Viewed (0)
  9. fastapi/applications.py

                    The default URL is `/docs`. You can disable it by setting it to `None`.
    
                    If `openapi_url` is set to `None`, this will be automatically disabled.
    
                    Read more in the
                    [FastAPI docs for Metadata and Docs URLs](https://fastapi.tiangolo.com/tutorial/metadata/#docs-urls).
    
                    **Example**
    
                    ```python
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  10. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/ExtractDslMetaDataTask.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package gradlebuild.docs.dsl.source
    
    import com.github.javaparser.JavaParser
    import gradlebuild.docs.DocGenerationException
    import gradlebuild.docs.model.ClassMetaDataRepository
    import gradlebuild.docs.model.SimpleClassMetaDataRepository
    import groovy.time.TimeCategory
    import groovy.time.TimeDuration
    import org.gradle.api.Action
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 12:45:57 UTC 2024
    - 4.4K bytes
    - Viewed (0)
Back to top