Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 3,036 for Configurer (0.16 sec)

  1. docs/zh/docs/how-to/configure-swagger-ui.md

    Lucas-lyh <******@****.***> 1714944853 +0800
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun May 05 21:34:13 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-ingress/NOTES.txt

    # Port and basic host configuration
    
    In order to configure the Service object, the install/upgrade needs to provide a list of all ports.
    In the past, this was done when installing/upgrading full istio, and involved some duplication - ports configured
    both in upgrade, Gateway and VirtualService.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 15 21:29:06 UTC 2020
    - 2K bytes
    - Viewed (0)
  3. platforms/software/publish/src/main/java/org/gradle/api/publish/PublishingExtension.java

         * for information on how this can be used for publishing to Ivy repositories.
         *
         * @param configure The action to configure the container of repositories with.
         */
        void repositories(Action<? super RepositoryHandler> configure);
    
        /**
         * The publications of the project.
         * <p>
         * See {@link #publications(org.gradle.api.Action)} for more information.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemOperations.java

         * The given action is used to configure a {@link DeleteSpec}, which is then used to delete the files.
         *
         * @param action Action to configure the DeleteSpec
         * @return {@link WorkResult} that can be used to check if delete did any work.
         */
        WorkResult delete(Action<? super DeleteSpec> action);
    
        /**
         * Creates and configures file access permissions. Differs from directory permissions due to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenSessionBuilderSupplier.java

         * Maven-based resolution. In more detail, this method configures settings relevant for the processing of dependency
         * graphs, most other settings remain at their generic default value. Use the various setters to further configure
         * the session with authentication, mirror, proxy and other information required for your environment. At least,
         * local repository manager needs to be configured to make session be able to create session instance.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/MavenSessionBuilderSupplier.java

         * Maven-based resolution. In more detail, this method configures settings relevant for the processing of dependency
         * graphs, most other settings remain at their generic default value. Use the various setters to further configure
         * the session with authentication, mirror, proxy and other information required for your environment. At least,
         * local repository manager needs to be configured to make session be able to create session instance.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/providers/mapProperty/kotlin/build.gradle.kts

            }
        }
    }
    
    // Some values to be configured later
    var b = 0
    var c = 0
    
    tasks.register<Generator>("generate") {
        properties.put("a", 1)
        // Values have not been configured yet
        properties.put("b", providers.provider { b })
        properties.putAll(providers.provider { mapOf("c" to c, "d" to c + 1) })
    }
    
    // Configure the values. There is no need to reconfigure the task
    b = 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 646 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/providers/mapProperty/groovy/build.gradle

            }
        }
    }
    
    // Some values to be configured later
    def b = 0
    def c = 0
    
    tasks.register('generate', Generator) {
        properties.put("a", 1)
        // Values have not been configured yet
        properties.put("b", providers.provider { b })
        properties.putAll(providers.provider { [c: c, d: c + 1] })
    }
    
    // Configure the values. There is no need to reconfigure the task
    b = 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 629 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    In Gradle, source code directories are represented using the concept of <<java_plugin.adoc#source_sets,source sets>>.
    A source set is configured to point to one or more directories containing source code.
    When you define a source set, Gradle automatically sets up compilation tasks for the specified directories.
    
    A pre-configured source set can be created with one line of build script code.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/plugins/mappingExtensions/kotlin/app/build.gradle.kts

            println("Input parameter: $inputParameter")
        }
    }
    
    // Plugin class that configures the extension and task
    class MyPlugin : Plugin<Project> {
        override fun apply(project: Project) {
            // Create and configure the extension
            val extension = project.extensions.create("myExtension", MyExtension::class.java)
            // Create and configure the custom task
            project.tasks.register("myTask", MyCustomTask::class.java) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 21 04:16:05 UTC 2024
    - 923 bytes
    - Viewed (0)
Back to top