Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 45 for customFile (0.17 sec)

  1. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/kotlin/build.gradle.kts

    // tag::enable-checkstyle-sarif-report[]
    // tag::customize-checkstyle-report[]
    tasks.withType<Checkstyle>().configureEach {
        reports {
    // end::customize-checkstyle-report[]
            sarif.required = true
    // end::enable-checkstyle-sarif-report[]
    // tag::customize-checkstyle-report[]
            xml.required = false
            html.required = true
            html.stylesheet = resources.text.fromFile("config/xsl/checkstyle-custom.xsl")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 14 14:22:49 UTC 2024
    - 2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/codeQuality/codeQuality/groovy/build.gradle

    }
    // end::specify-groovy-version[]
    
    // tag::customize-checkstyle-memory[]
    tasks.withType(Checkstyle) {
        minHeapSize = "200m"
        maxHeapSize = "1g"
    }
    // end::customize-checkstyle-memory[]
    
    // tag::enable-checkstyle-sarif-report[]
    checkstyle {
        toolVersion = '10.3.3'
    }
    // end::enable-checkstyle-sarif-report[]
    
    // tag::enable-checkstyle-sarif-report[]
    // tag::customize-checkstyle-report[]
    tasks.withType(Checkstyle) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Apr 14 14:22:49 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    // pod subnet or services subnet.
    //
    // - Etcd configurations; use it e.g. to customize the local etcd or to configure the API server
    // for using an external etcd cluster.
    //
    // - kube-apiserver, kube-scheduler, kube-controller-manager configurations; use it to customize control-plane
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. docker/Dockerfile.distroless

    COPY --from=distroless_source /home/nonroot /home/nonroot
    RUN echo istio-proxy:x:1337: >> /home/etc/group
    RUN echo istio-proxy:x:1337:1337:istio-proxy:/nonexistent:/sbin/nologin >> /home/etc/passwd
    
    # Customize distroless with the following:
    # - password file
    # - groups file
    # - /home/nonroot directory
    FROM distroless_source
    COPY --from=ubuntu_source /home/etc/passwd /etc/passwd
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 00:17:51 UTC 2024
    - 828 bytes
    - Viewed (0)
  5. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcPluginIntegrationTest.groovy

            succeeds 'check'
    
            then:
            executed(":codenarcMain")
            executed(":codenarcTest")
            executed(":codenarcOther")
            notExecuted(":codenarcCustom")
        }
    
        def "can customize per-source-set tasks via extension"() {
            given:
            buildFile << '''
                sourceSets {
                    other {
                        groovy
                    }
                }
                codenarc {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/overview/about_manual.adoc

    <<getting_started_eng.adoc#introduction,Running Gradle Builds>> :: Learn Gradle basics and how to use Gradle to build your project.
    <<build_lifecycle.adoc#build_lifecycle,Authoring Gradle Builds>> :: Develop tasks and plugins to customize your build.
    <<building_java_projects.adoc#building_java_projects,Authoring JVM Builds>> :: Use Gradle with your Java project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 07:52:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. cmd/kubeadm/app/apis/kubeadm/v1beta3/types.go

    type DNSAddOnType string
    
    // DNS defines the DNS addon that should be used in the cluster
    type DNS struct {
    	// ImageMeta allows to customize the image used for the DNS component
    	ImageMeta `json:",inline"`
    }
    
    // ImageMeta allows to customize the image used for components that are not
    // originated from the Kubernetes/Kubernetes release process
    type ImageMeta struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/logging.adoc

    [[sec:changing_what_gradle_logs]]
    == Changing what Gradle logs
    
    [WARNING]
    ====
    The <<configuration_cache.adoc#config_cache,configuration cache>> limits the ability to customize Gradle's logging UI.
    The custom logger can only implement <<configuration_cache.adoc#config_cache:requirements:build_listeners,supported listener interfaces>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 18:32:47 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top