Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 3,032 for additional (0.17 sec)

  1. subprojects/diagnostics/src/test/groovy/org/gradle/api/reporting/components/internal/ComponentReportRendererTest.groovy

            renderer.completeProject(project)
            renderer.complete()
    
            then:
            output.value.contains("""{header}Additional source sets
    ----------------------{normal}
    <source set>
        No source directories
    
    """)
        }
    
        def "renders additional binaries"() {
            def binary1 = Stub(BinarySpec)
            def binary2 = Stub(BinarySpec)
            def component = Stub(ComponentSpec) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 10 12:50:23 UTC 2020
    - 4.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/templates/spring-boot-web-application/HELP.md

    * [Official Gradle documentation](https://docs.gradle.org)
    * [Spring Boot Gradle Plugin Reference Guide](https://docs.spring.io/spring-boot/docs/2.2.1.RELEASE/gradle-plugin/reference/html/)
    
    ### Additional Links
    These additional references should also help you:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 469 bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/kubeconfig.go

    	Kubeconfig file utilities.
    	`)
    
    	userKubeconfigLongDesc = cmdutil.LongDesc(`
    	Output a kubeconfig file for an additional user.
    	`)
    
    	userKubeconfigExample = cmdutil.Examples(`
    	# Output a kubeconfig file for an additional user named foo
    	kubeadm kubeconfig user --client-name=foo
    
    	# Output a kubeconfig file for an additional user named foo using a kubeadm config file bar
    	kubeadm kubeconfig user --client-name=foo --config=bar
    	`)
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  4. tests/integration/pilot/README.md

    this is the only image available in the pre-submit stage. Using additional images are only possible in
    post-submit tests as shown in the [next section](#scenario-2-supporting-additional-os-images ).
    A complete list of supported additional images can be found in [`vm_test.go`](https://github.com/istio/istio/blob/master/tests/integration/pilot/vm_test.go).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 07 21:28:34 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/ComponentMetadataHandler.java

         *
         * <p>In addition, the rule can declare additional (read-only) parameters, which may provide extra details
         * about the component. The order of these additional parameters is not significant.
         *
         * <p>The following additional parameter types are supported:
         * <ul>
         *     <li>{@link org.gradle.api.artifacts.ivy.IvyModuleDescriptor} - additional Ivy-specific
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  6. dbflute_fess/dfprop/databaseInfoMap.dfprop

            #  you should specify the list of included object types as adding.
            #    e.g. Synonym of Oracle --> list:{TABLE ; VIEW ; SYNONYM}
            #  This is only for the main schema. Additional schemas are unconcerned.
            #  However ReplaceSchema and Sql2Entity task also uses this.
            #  But you can set ReplaceSchema-original setting in its own dfprop.
            #
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Oct 31 23:35:14 UTC 2015
    - 7.3K bytes
    - Viewed (0)
  7. tests/test_additional_responses_bad.py

    import pytest
    from fastapi import FastAPI
    from fastapi.testclient import TestClient
    
    app = FastAPI()
    
    
    @app.get("/a", responses={"hello": {"description": "Not a valid additional response"}})
    async def a():
        pass  # pragma: no cover
    
    
    openapi_schema = {
        "openapi": "3.1.0",
        "info": {"title": "FastAPI", "version": "0.1.0"},
        "paths": {
            "/a": {
                "get": {
                    "responses": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/main/kotlin/com.myorg.service-conventions.gradle.kts

    // Define conventions for service projects this organization.
    // Service projects need to use the organization's Java conventions and pass some additional checks
    
    // tag::plugins[]
    plugins {
        id("com.myorg.java-conventions")
    }
    // end::plugins[]
    
    testing {
        suites {
            val test by getting(JvmTestSuite::class) {
                useJUnitJupiter("5.7.1")
            }
    
            val integrationTest by registering(JvmTestSuite::class) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/main/kotlin/com.myorg.service-conventions.gradle.kts

    // Define conventions for service projects this organization.
    // Service projects need to use the organization's Java conventions and pass some additional checks
    
    // tag::plugins[]
    plugins {
        id("com.myorg.java-conventions")
    }
    // end::plugins[]
    
    val integrationTest by sourceSets.creating
    
    configurations[integrationTest.implementationConfigurationName].extendsFrom(configurations.testImplementation.get())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ContentFilterableExtensions.kt

    import org.gradle.api.file.ContentFilterable
    
    import java.io.FilterReader
    import kotlin.reflect.KClass
    
    
    /**
     * Adds a content filter to be used during the copy.
     * Multiple calls add additional filters to the filter chain.
     * Each filter should implement [FilterReader].
     * Import `org.apache.tools.ant.filters.*` for access to all the standard Ant filters.
     *
     * Examples:
     *
     * ```
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top