Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 190 for customFile (0.16 sec)

  1. docs/en/docs/how-to/general.md

    To add metadata to your OpenAPI schema, including a license, version, contact, etc, read the docs for [Tutorial - Metadata and Docs URLs](../tutorial/metadata.md){.internal-link target=_blank}.
    
    ## OpenAPI Custom URL
    
    To customize the OpenAPI URL (or remove it), read the docs for [Tutorial - Metadata and Docs URLs](../tutorial/metadata.md#openapi-url){.internal-link target=_blank}.
    
    ## OpenAPI Docs URLs
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/CheckstylePluginTest.groovy

                test
                other
            }
    
            expect:
            that(project.tasks['check'], dependsOn(hasItems("checkstyleMain", "checkstyleTest", "checkstyleOther")))
        }
    
        def "can customize settings via extension"() {
            project.pluginManager.apply(JavaBasePlugin)
            project.sourceSets {
                main
                test
                other
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  3. platforms/jvm/war/src/integTest/groovy/org/gradle/api/plugins/WarPluginIntegrationTest.groovy

            """
    
            file("src/main/webapp/index.jsp") << "<p>hi</p>"
    
            when:
            succeeds "assemble"
    
            then:
            file("build/libs/test.war").exists();
        }
    
        def "can customize archive names using convention properties"() {
            given:
            file("settings.gradle") << "rootProject.name = 'test'"
            buildFile << """
                plugins {
                    id 'war'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 22 17:46:36 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. pilot/cmd/pilot-agent/options/agent.go

    	"istio.io/istio/pkg/bootstrap/platform"
    	istioagent "istio.io/istio/pkg/istio-agent"
    	"istio.io/istio/pkg/util/sets"
    	"istio.io/istio/pkg/wasm"
    )
    
    // Similar with ISTIO_META_, which is used to customize the node metadata - this customizes extra header.
    const xdsHeaderPrefix = "XDS_HEADER_"
    
    func NewAgentOptions(proxy *ProxyArgs, cfg *meshconfig.ProxyConfig, sds istioagent.SDSServiceFactory) *istioagent.AgentOptions {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

    | Allows configuring wtp facet information only if `eclipse-wtp` plugin was applied.
    |===
    
    
    [[sec:eclipse_customizing_the_generated_files]]
    == Customizing the generated files
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/attributes/Usage.java

     */
    
    package org.gradle.api.attributes;
    
    import org.gradle.api.Named;
    
    /**
     * Represents the usage of a configuration. Typical usages include compilation or runtime.
     * This interface allows the user to customize usages by implementing this interface.
     *
     * @since 3.4
     */
    public interface Usage extends Named {
        Attribute<Usage> USAGE_ATTRIBUTE = Attribute.of("org.gradle.usage", Usage.class);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/init_scripts.adoc

    // limitations under the License.
    
    [[init_scripts]]
    = Initialization Scripts
    
    Initialization scripts are scripts that run before the build script is executed.
    They allow you to customize the build environment or configure settings early in the build.
    
    Initialization scripts can be useful for setting up common configurations, such as repositories, plugins, or custom tasks, across multiple projects.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. pkg/kubelet/server/metrics/metrics.go

    		&metrics.HistogramOpts{
    			Subsystem: kubeletSubsystem,
    			Name:      "http_requests_duration_seconds",
    			Help:      "Duration in seconds to serve http requests",
    			// Use DefBuckets for now, will customize the buckets if necessary.
    			Buckets:        metrics.DefBuckets,
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"method", "path", "server_type", "long_running"},
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 19 14:33:37 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  9. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/PmdPluginTest.groovy

                main
                test
                other
            }
    
            expect:
            that(project.tasks['check'], dependsOn(hasItems("pmdMain", "pmdTest", "pmdOther")))
        }
    
        def "can customize settings via extension"() {
            project.pluginManager.apply(JavaBasePlugin)
            project.sourceSets {
                main
                test
                other
            }
    
            project.pmd {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 14:47:31 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  10. src/log/slog/example_custom_levels_test.go

    		Level: LevelTrace,
    
    		ReplaceAttr: func(groups []string, a slog.Attr) slog.Attr {
    			// Remove time from the output for predictable test output.
    			if a.Key == slog.TimeKey {
    				return slog.Attr{}
    			}
    
    			// Customize the name of the level key and the output string, including
    			// custom level values.
    			if a.Key == slog.LevelKey {
    				// Rename the level key from "level" to "sev".
    				a.Key = "sev"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 11 17:06:26 UTC 2023
    - 3K bytes
    - Viewed (0)
Back to top