Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 545 for Here (0.03 sec)

  1. platforms/documentation/docs/src/snippets/java/javaGradlePlugin/kotlin/src/main/java/org/gradle/sample/SimplePlugin.java

    package org.gradle.sample;
    
    import org.gradle.api.Plugin;
    import org.gradle.api.Project;
    
    public class SimplePlugin implements Plugin<Project> {
        public void apply(Project project) {
            // Add plugin implementation here
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 236 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/composite-builds/plugin-dev/groovy/settings.gradle

    rootProject.name = 'consumer'
    
    include 'my-greeting-app'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 137 bytes
    - Viewed (0)
  3. 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)
  4. platforms/documentation/docs/src/samples/templates/java-android-application/app/proguard-rules.pro

    # Add project specific ProGuard rules here.
    # You can control the set of applied configuration files using the
    # proguardFiles setting in build.gradle.
    #
    # For more details, see
    #   http://developer.android.com/guide/developing/tools/proguard.html
    
    # If your project uses WebView with JS, uncomment the following
    # and specify the fully qualified class name to the JavaScript interface
    # class:
    #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 751 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/maven-publish/publish-artifact/groovy/build.gradle

        type 'rpm'
        builtBy 'rpm'
    }
    // end::custom-artifact[]
    
    tasks.register('rpm') {
        outputs.file rpmFile
        doLast {
            // produce real RPM here
            rpmFile.get().asFile << 'file contents'
        }
    }
    
    // tag::custom-artifact-publication[]
    publishing {
        publications {
            maven(MavenPublication) {
                artifact rpmArtifact
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 933 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/kotlinDsl/androidSingleBuild/kotlin/proguard-rules.pro

    # Add project specific ProGuard rules here.
    # You can control the set of applied configuration files using the
    # proguardFiles setting in build.gradle.
    #
    # For more details, see
    #   http://developer.android.com/guide/developing/tools/proguard.html
    
    # If your project uses WebView with JS, uncomment the following
    # and specify the fully qualified class name to the JavaScript interface
    # class:
    #-keepclassmembers class fqcn.of.javascript.interface.for.webview {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 751 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/tutorial/stopExecutionException/groovy/build.gradle

    def compile = tasks.register('compile') {
        doLast {
            println 'We are doing the compile.'
        }
    }
    
    compile.configure {
        doFirst {
            // Here you would put arbitrary conditions in real life.
            if (true) {
                throw new StopExecutionException()
            }
        }
    }
    tasks.register('myTask') {
        dependsOn('compile')
        doLast {
            println 'I am not affected'
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 401 bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/workerApi/md5ClassloaderIsolation/groovy/src/feynman.txt

    I was born not knowing and have had only a little time to change that here and there....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86 bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/workerApi/md5CustomTask/groovy/src/feynman.txt

    I was born not knowing and have had only a little time to change that here and there....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86 bytes
    - Viewed (0)
  10. platforms/native/language-native/src/integTest/groovy/org/gradle/language/c/CLanguageIntegrationTest.groovy

                                cCompiler.args '-frandom-seed="here is the \\'random\\' seed"'
                                // TODO:DAZ Find something that works here (for all our CI machines)
                                // linker.args '-Wl,-client_name,"a \\'client\\' name"'
                            } else {
                                cCompiler.args '-frandom-seed="here is the \\'random\\' seed"'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 7.7K bytes
    - Viewed (0)
Back to top