Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 97 for customFile (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. releasenotes/notes/bootstrap-histogram-buckets.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 13 21:29:54 UTC 2023
    - 221 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/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)
  8. platforms/documentation/docs/src/samples/templates/java-android-application/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)
  9. samples/guide/src/main/java/okhttp3/recipes/CustomCipherSuites.java

        // Configure cipher suites to demonstrate how to customize which cipher suites will be used for
        // an OkHttp request. In order to be selected a cipher suite must be included in both OkHttp's
        // connection spec and in the SSLSocket's enabled cipher suites array. Most applications should
        // not customize the cipher suites list.
        List<CipherSuite> customCipherSuites = asList(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Mar 14 21:57:42 UTC 2019
    - 6.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs-asciidoctor-extensions-base/src/test/groovy/org/gradle/docs/asciidoctor/GuidesContributeIncludeProcessorTest.groovy

        }
    
        def "can use guide-name attribute on contribute block to customize the issue and repository urls"() {
            given:
            String asciidocContent = """
                |= Doctitle
                |
                |include::contribute[guide-name="creating-build-scans"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top