Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 151 for Change (0.34 sec)

  1. platforms/documentation/docs/src/snippets/files/copy/groovy/settings.gradle

    // tag::change-default-exclusions[]
    import org.apache.tools.ant.DirectoryScanner
    
    DirectoryScanner.removeDefaultExclude('**/.git')
    DirectoryScanner.removeDefaultExclude('**/.git/**')
    // end::change-default-exclusions[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 245 bytes
    - Viewed (0)
  2. CONTRIBUTING.md

    2. Accept the changes.\
    If you are sure that the changes are intentional, follow the steps described in the report.
    This includes adding the description of the changes to the `accepted-public-api-changes.json` file, and providing a reason for each change.
    You can add the changes to any place in the file, e.g. at the top.
    
    3. Make sure the file with accepted changes is sorted.\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/tutorial/antLoadfile/tests/antLoadfile.out

     *** agile.manifesto.txt ***
    Individuals and interactions over processes and tools
    Working software over comprehensive documentation
    Customer collaboration  over contract negotiation
    Responding to change over following a plan
     *** gradle.manifesto.txt ***
    Make the impossible possible, make the possible easy and make the easy elegant.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 368 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/ivy-publish/java-multi-project/kotlin/buildSrc/src/main/kotlin/myproject.publishing-conventions.gradle.kts

    version = "1.0"
    group = "org.gradle.sample"
    
    repositories {
        mavenCentral()
    }
    
    java {
        withJavadocJar()
        withSourcesJar()
    }
    
    publishing {
        repositories {
            ivy {
                // change to point to your repo, e.g. http://my.org/repo
                url = uri("${rootProject.buildDir}/repo")
            }
        }
        publications {
            create<IvyPublication>("ivy") {
                from(components["java"])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 601 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/workerApi/md5ProcessIsolation/kotlin/src/hawking.txt

    Intelligence is the ability to adapt to change.`...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 15:36:36 UTC 2024
    - 49 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/maven-publish/customize-identity/kotlin/library/build.gradle.kts

    plugins {
        id("java-library")
        id("maven-publish")
    }
    
    repositories {
        mavenCentral()
    }
    
    publishing {
        repositories {
            maven {
                url = uri("${rootProject.buildDir}/repo") // change to point to your repo, e.g. http://my.org/repo
            }
        }
    }
    
    dependencies {
        api("org.slf4j:slf4j-api:1.7.10")
    }
    
    // tag::customize-identity[]
    publishing {
        publications {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 626 bytes
    - Viewed (0)
  7. .github/PULL_REQUEST_TEMPLATE.md

    - [ ] Check ["Allow edit from maintainers" option](https://help.github.com/articles/allowing-changes-to-a-pull-request-branch-created-from-a-fork/) in pull request so that additional changes can be pushed by Gradle team.
    - [ ] Provide integration tests (under `<subproject>/src/integTest`) to verify changes from a user perspective.
    - [ ] Provide unit tests (under `<subproject>/src/test`) to verify logic.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 13 22:36:19 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/workerApi/md5NoIsolation/kotlin/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/tutorial/antLoadfile/groovy/antLoadfileResources/agile.manifesto.txt

    Individuals and interactions over processes and tools
    Working software over comprehensive documentation
    Customer collaboration  over contract negotiation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 196 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tutorial/antLoadfileWithMethod/groovy/antLoadfileResources/agile.manifesto.txt

    Individuals and interactions over processes and tools
    Working software over comprehensive documentation
    Customer collaboration  over contract negotiation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 196 bytes
    - Viewed (0)
Back to top