Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,316 for Portal (0.28 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/provider/PrecompiledScriptPluginsSupport.kt

    import org.gradle.api.provider.Provider
    
    import java.io.File
    
    
    /**
     * Protocol between `:kotlin-dsl-plugins` and `:kotlin-dsl-provider-plugins`.
     *
     * `:kotlin-dsl-plugins` is published to the plugin portal.
     * `:kotlin-dsl-provider-plugins` is shipped with the distribution.
     *
     * This needs to be cross-version compatible.
     */
    interface PrecompiledScriptPluginsSupport {
    
        fun enableOn(target: Target): Boolean
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_separate_openapi_schemas/test_tutorial002_py310.py

    @needs_py310
    def test_read_items(client: TestClient) -> None:
        response = client.get("/items/")
        assert response.status_code == 200, response.text
        assert response.json() == [
            {
                "name": "Portal Gun",
                "description": "Device to travel through the multi-rick-verse",
            },
            {"name": "Plumbus", "description": None},
        ]
    
    
    @needs_py310
    @needs_pydanticv2
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Aug 25 19:10:22 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/plugins/readme.xml

                </para>
            </listitem>
            <listitem>
                <para>
                    The <filename>consuming</filename> directory contains an example of resolving plugins from custom repositories instead the Gradle Plugin Portal.
                </para>
            </listitem>
        </itemizedlist>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/use/internal/DefaultPluginArtifactRepositories.java

        public DefaultPluginArtifactRepositories(Factory<DependencyResolutionServices> factory, RepositoryHandlerInternal sharedRepositories) {
            // Create a copy of the shared repository container, so that mutations (eg adding the portal repo) are not reflected in the shared container
            dependencyResolutionServices = factory.create();
            this.sharedRepositories = sharedRepositories;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:03 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/repository/RepositoryOrderingIntegrationSpec.groovy

                    id 'base'
                }
    
                apply plugin: 'my-plugin'
            """.stripIndent()
    
            when:
            fails "tasks"
    
            then: "searched buildscript repository then plugin portal"
            failure.assertHasCause("Could not resolve all artifacts for configuration ':classpath'.")
            failure.assertHasCause """
                Could not find my:plugin:1.0.
                Searched in the following locations:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 21 11:30:21 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-development/src/main/java/org/gradle/plugin/devel/PluginDeclaration.java

         *
         * <p>Tags are used when publishing this plugin to repositories that support tagging plugins,
         * for example the <a href="http://plugins.gradle.org">Gradle Plugin Portal</a>.
         *
         * @since 7.6
         */
        @Incubating
        public abstract SetProperty<String> getTags();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/core-plugins/java_gradle_plugin.adoc

    * Configure the <<plugins.adoc#sec:plugin_markers,Plugin Marker Artifact>> publications (Maven or Ivy) for each plugin.
    * Publish each plugin to the Gradle Plugin Portal (see <<publishing_gradle_plugins.adoc#publishing_portal,Publishing Plugins to Gradle Plugin Portal>> for details), but only if the link:https://plugins.gradle.org/docs/publish-plugin[Plugin Publishing Plugin] has also been applied.
    
    [[sec:gradle_plugin_dev_interactions]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  8. tests/test_tutorial/test_separate_openapi_schemas/test_tutorial001.py

    
    def test_read_items(client: TestClient) -> None:
        response = client.get("/items/")
        assert response.status_code == 200, response.text
        assert response.json() == [
            {
                "name": "Portal Gun",
                "description": "Device to travel through the multi-rick-verse",
            },
            {"name": "Plumbus", "description": None},
        ]
    
    
    @needs_pydanticv2
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_separate_openapi_schemas/test_tutorial001_py39.py

    @needs_py39
    def test_read_items(client: TestClient) -> None:
        response = client.get("/items/")
        assert response.status_code == 200, response.text
        assert response.json() == [
            {
                "name": "Portal Gun",
                "description": "Device to travel through the multi-rick-verse",
            },
            {"name": "Plumbus", "description": None},
        ]
    
    
    @needs_py39
    @needs_pydanticv2
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/running-builds/tutorial/part7_gradle_refs.adoc

    - Gradle's https://docs.gradle.org/current/kotlin-dsl/index.html[Kotlin DSL]
    
    To find plugins:
    
    - Gradle <<plugin_reference#plugin_reference,Core Plugins>>
    - Gradle link:https://plugins.gradle.org/[Plugin Portal]
    
    To view all Gradle releases:
    
    - https://gradle.org/releases/[Gradle Releases]
    - http://gradle.org/docs/current/release-notes[Release Notes]
    
    For Gradle support:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 22:40:17 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top