Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 725 for Change (2.23 sec)

  1. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/kotlin/convention-plugins/build.gradle.kts

        `kotlin-dsl`
    // end::apply[]
        `maven-publish`
    // tag::apply[]
    }
    // end::apply[]
    
    group = "com.myorg.conventions"
    version = "1.0"
    
    publishing {
        repositories {
            maven {
                // change to point to your repo, e.g. http://my.org/repo
                url = uri(layout.buildDirectory.dir("repo"))
            }
        }
    }
    
    tasks.publish {
        dependsOn("check")
    }
    // end::publish[]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 761 bytes
    - Viewed (0)
  2. .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)
  3. platforms/documentation/docs/src/snippets/workerApi/md5ProcessIsolation/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)
  4. okhttp/src/test/java/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt

    A wildcard rule was added with a wildcard that is not in leftmost position! We'll need to change the ${PublicSuffixDatabase::class.java.name} to handle this."""
        }
        check(rule.indexOf(WILDCARD_CHAR, 1) == -1) {
          """Wildcard Assertion Failure: '$rule'
    A wildcard rule was added with multiple wildcards! We'll need to change ${PublicSuffixDatabase::class.java.name} to handle this."""
        }
        check(rule.length != 1) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:24:38 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/workerApi/md5ClassloaderIsolation/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)
  6. platforms/documentation/docs/src/snippets/workerApi/md5ProcessIsolation/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)
  7. platforms/documentation/docs/src/samples/incubating/build-organization/publishing-convention-plugins/groovy/convention-plugins/build.gradle

    // end::apply[]
        id 'maven-publish'
        id 'java'
    // tag::apply[]
    }
    // end::apply[]
    
    group = 'com.myorg.conventions'
    version = '1.0'
    
    publishing {
        repositories {
            maven {
                // change to point to your repo, e.g. http://my.org/repo
                url = layout.buildDirectory.dir("repo")
            }
        }
    }
    
    tasks.named('publish') {
        dependsOn('check')
    }
    
    // end::publish[]
    
    testing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 832 bytes
    - Viewed (0)
  8. src/cmd/go/testdata/vcstest/git/retract-pseudo.txt

    at 2020-10-09T13:37:47-04:00
    
    git init
    
    git add go.mod p.go
    git commit -m 'create module retract-pseudo'
    git branch -m main
    git tag v1.0.0
    
    git mv p.go q.go
    git commit -m 'trivial change'
    
    git show-ref --tags --heads
    cmp stdout .git-refs
    
    -- .git-refs --
    713affd19d7b9b6dc876b603017f3dcaab8ba674 refs/heads/main
    64c061ed4371ef372b6bbfd58ee32015d6bfc3e5 refs/tags/v1.0.0
    -- go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 651 bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_retract_pseudo_base.txt

    go mod edit -retract v1.0.0
    echo 'package p' >p.go
    git add -A
    git commit -m 'create module retract-pseudo'
    git tag v1.0.0
    
    # Commit a trivial change so the default branch does not point to v1.0.0.
    git mv p.go q.go
    git commit -m 'trivial change'
    
    zip -r ../retract-pseudo.zip .
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/modification/KotlinCodeFragmentContextModificationListener.kt

    import org.jetbrains.kotlin.analysis.project.structure.KtModule
    
    public fun interface KotlinCodeFragmentContextModificationListener {
        /**
         * [onModification] is invoked in a write action before or after a context change for code fragments depending on the [module].
         *
         * All code fragments depending on [module], both directly or transitively, should be considered modified when this event is received.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 796 bytes
    - Viewed (0)
Back to top