Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 190 for customFile (0.24 sec)

  1. platforms/documentation/docs/src/samples/templates/java-android-application/app/src/main/res/values/styles.xml

    <resources>
    
        <!-- Base application theme. -->
        <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
            <!-- Customize your theme here. -->
            <item name="colorPrimary">@color/colorPrimary</item>
            <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
            <item name="colorAccent">@color/colorAccent</item>
        </style>
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 383 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/core-plugins/checkstyle_plugin.adoc

    .Customizing the HTML report
    ====
    include::sample[dir="snippets/codeQuality/codeQuality/kotlin",files="build.gradle.kts[tags=customize-checkstyle-report]"]
    include::sample[dir="snippets/codeQuality/codeQuality/groovy",files="build.gradle[tags=customize-checkstyle-report]"]
    ====
    
    https://github.com/checkstyle/contribution/tree/master/xsl[View a sample Checkstyle stylesheet.]
    
    [[sec:enable_checkstyle_sarif]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 16:44:32 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tasks/customTaskWithProperty/groovy/build.gradle

        }
    
        @TaskAction
        def greet() {
            println greeting.get()
        }
    }
    
    // Use the default greeting
    tasks.register('hello', GreetingTask)
    
    // Customize the greeting
    tasks.register('greeting',GreetingTask) {
        greeting = 'greetings from GreetingTask'
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 491 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/tasks/customTaskWithProperty/kotlin/build.gradle.kts

        }
    
        @TaskAction
        fun greet() {
            println(greeting.get())
        }
    }
    
    // Use the default greeting
    tasks.register<GreetingTask>("hello")
    
    // Customize the greeting
    tasks.register<GreetingTask>("greeting") {
        greeting = "greetings from GreetingTask"
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 483 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/ivy-publish/customize-identity/groovy/settings.gradle

    rootProject.name = 'ivy-customize-identity'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 44 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    .customizing the publication identity
    ====
    include::sample[dir="snippets/ivy-publish/customize-identity/kotlin",files="build.gradle.kts[tags=customize-identity]"]
    include::sample[dir="snippets/ivy-publish/customize-identity/groovy",files="build.gradle[tags=customize-identity]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/apis/kubeadm/v1beta3/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: Thu Jan 05 13:30:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/samples/readme-templates/library-body.adoc.template

    You can customize the project layout if you wish link:{userManualPath}/java_plugin.html#sec:changing_java_project_layout[as described in the user manual].
    
    Congratulations, you have just completed the first step of creating a ${language.raw} ${componentType.raw}!
    You can now customize this to your own project needs.
    
    == Customize the library JAR
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/ivy-publish/customize-identity/kotlin/settings.gradle.kts

    rootProject.name = "ivy-customize-identity"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 44 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/maven-publish/customize-identity/groovy/settings.gradle

    rootProject.name = 'maven-customize-identity'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 64 bytes
    - Viewed (0)
Back to top