Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 3,036 for Configurer (0.22 sec)

  1. subprojects/core-api/src/main/java/org/gradle/caching/configuration/BuildCacheConfiguration.java

        /**
         * Configures a remote cache with the given type.
         * <p>
         * If a remote build cache has already been configured with a <b>different</b> type, this method replaces it.
         * </p>
         * <p>
         * If a remote build cache has already been configured with the <b>same</b>, this method configures it.
         * </p>
         * <p>
         * Storing ("push") in the remote build cache is disabled by default.
         * </p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 27 16:11:30 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  2. maven-core/src/site/apt/getting-to-container-configured-mojos.apt

    ~~ KIND, either express or implied.  See the License for the
    ~~ specific language governing permissions and limitations
    ~~ under the License.
    
      ---
      Getting to Plexus-configured Mojos
      ---
      John Casey
      ---
      2005-04-29
    
    Abstract
    
      We're moving toward integrating mojos as first-class plexus components, while
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 30 15:20:35 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/BuildCacheConfigurationExtensions.kt

        remote(T::class.java)
    
    
    /**
     * Configures a remote cache with the given type.
     *
     * If a remote build cache has already been configured with a **different** type, this method replaces it.
     *
     * If a remote build cache has already been configured with the **same**, this method configures it.
     *
     * Storing ("push") in the remote build cache is disabled by default.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  4. docs/en/docs/how-to/configure-swagger-ui.md

    # Configure Swagger UI
    
    You can configure some extra <a href="https://swagger.io/docs/open-source-tools/swagger-ui/usage/configuration" class="external-link" target="_blank">Swagger UI parameters</a>.
    
    To configure them, pass the `swagger_ui_parameters` argument when creating the `FastAPI()` app object or to the `get_swagger_ui_html()` function.
    
    `swagger_ui_parameters` receives a dictionary with the configurations passed to Swagger UI directly.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseModel.java

            this.wtp = wtp;
        }
    
        /**
         * Configures eclipse project information
         * <p>
         * For examples see docs for {@link EclipseProject}
         */
        public void project(@DelegatesTo(EclipseProject.class) Closure closure) {
            configure(closure, getProject());
        }
    
        /**
         * Configures eclipse project information
         * <p>
    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. subprojects/core/src/main/java/org/gradle/internal/build/BuildLifecycleController.java

        /**
         * Configures the build, if not already done.
         * This may fail with an error, if this build is loaded from cache rather than configured.
         *
         * <p>Note: You should not use this method as no thread safety is applied to the return value.
         *
         * @return The configured Gradle build instance.
         */
        GradleInternal getConfiguredBuild();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 19:05:29 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/TaskContainerExtensions.kt

            get() = container
    
        /**
         * Configures a task by name, without triggering its creation or configuration, failing if there is no such task.
         *
         * @see [TaskContainer.named]
         * @see [TaskProvider.configure]
         */
        operator fun String.invoke(configuration: Task.() -> Unit): TaskProvider<Task> =
            named(this).apply { configure(configuration) }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 22:09:44 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildMinimalConfigurationIntegrationTest.groovy

            }
            output.count('Configured buildB') == 1
            output.count('Configured buildC') == 1
    
            where:
            action      | buildArtifacts
            "resolving" | false
            "building"  | true
        }
    
        def "when configuration fails included build with #name substitutions is configured only once "() {
            given:
            dependency "org.test:buildB:1.0"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 01 20:36:42 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r40/PluginApplicationBuildProgressCrossVersionSpec.groovy

            def configureA = configureBuild.child("Configure project :a")
            configureA.child("Apply plugin org.gradle.help-tasks to project ':a'")
            configureA.children("Apply plugin'org.gradle.java' to project ':a'").empty
    
            def configureB = configureBuild.child("Configure project :b")
            configureB.child("Apply plugin org.gradle.help-tasks to project ':b'")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginExtension.java

         * @since 7.1
         */
        Manifest manifest();
    
        /**
         * Creates and configures a new instance of a {@link Manifest}. The given closure configures
         * the new manifest instance before it is returned.
         *
         * @param closure The closure to use to configure the manifest.
         * @since 7.1
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.4K bytes
    - Viewed (0)
Back to top