Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 45 for fix (0.4 sec)

  1. apache-maven/src/main/appended-resources/META-INF/LICENSE.vm

    #*    *##else
    #*      *### unrecognized license will require analysis to know obligations
    #*      *##set ( $spdx = 'unrecognized' )
    #*    *##end
    #*    *###
    #*    *### fix project urls that are wrong in pom
    #*    *##if ( $project.url.startsWith( "http://www.eclipse.org/sisu/" ) )
    #*      *##set ( $project.url = 'https://www.eclipse.org/sisu/' )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 04 06:45:16 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/cover_coverpkg_with_init.txt

    # statements in the packages matched by "./..."; package "a" (for
    # example) has two statements so we expect 20.0% stmts covered. Go
    # 1.19 would print 50% here (due to force importing of all ./...
    # packages); prior to the fix for #58770 Go 1.20 would show 100%
    # coverage. For packages "x" and "f" (which have no tests), check for
    # 0% stmts covered (as opposed to "no test files").
    
    go test -count=1 -coverprofile=cov.dat -coverpkg=./... ./...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 30 12:33:44 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_download_exec_toolchain.txt

    stderr '^go: rsc.io/needall@v0.0.1 requires go >= 1.23; switching to go1.23.9$'
    ! stderr '\(running'
    cmp go.mod go.mod.orig
    
    
    # However, 'go mod download' without arguments should fix up the
    # 'go' and 'toolchain' lines to be consistent with the existing
    # requirements in the module graph.
    
    go mod edit -require=rsc.io/needall@v0.0.1
    cp go.mod go.mod.121
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 19:32:39 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. ChangeLog.md

    - [`KT-68164`](https://youtrack.jetbrains.com/issue/KT-68164) Smart cast fails for KT-49404
    - [`KT-56545`](https://youtrack.jetbrains.com/issue/KT-56545) Fix incorrect functions mangling in JVM backend in case of accidental clashing overload in a Java subclass
    - [`KT-49404`](https://youtrack.jetbrains.com/issue/KT-49404) Fix type unsoundness for contravariant captured type based on Java class
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_retention.txt

    
    # If the only difference in the go.mod file is the line endings,
    # it should not be overwritten automatically.
    cp go.mod.crlf go.mod
    go list all
    cmp go.mod go.mod.crlf
    
    # However, 'go mod tidy' should fix whitespace even if there are no other changes.
    go mod tidy
    cmp go.mod go.mod.tidy
    
    
    # Out-of-order requirements should not be overwritten automatically...
    cp go.mod.unsorted go.mod
    go list all
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 20 18:41:57 UTC 2021
    - 3K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/DependencyCollectorFunctionExtractorAndRuntimeResolver.kt

         * Because of that, decorated types do not appear as subtypes of the original types when inspected with Kotlin reflection.
         * Workaround: use Java reflection to determine the supertypes.
         * TODO: Either fix Kotlin metadata in decorated classes or introduce generic utilities
         */
        private
        fun typeHierarchyViaJavaReflection(kClass: KClass<*>): Iterable<KClass<*>> =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  7. CONTRIBUTING.md

    This guide will help you to...
    
    * maximize the chance of your changes being accepted
    * work on the Gradle code base
    * get help if you encounter trouble
    
    ## Before you start
    
    Before starting to work on a feature or a bug fix, please open an issue to discuss the use case or bug with us. This can save everyone a lot of time and frustration.
    
    For any non-trivial change, we need to be able to answer these questions:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 01:39:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  8. doc/next/9-todo.md

    -->
    
    <!-- Items that don't need to be mentioned in Go 1.23 release notes but are picked up by relnote todo.
    
    CL 458895 - an x/playground fix that mentioned an accepted cmd/go proposal go.dev/issue/40728 in Go 1.16 milestone...
    CL 582097 - an x/build CL working on relnote itself; it doesn't need a release note
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/vcstest/hg/vgotest1.txt

    git tag v2.0.3
    
    # 5
    at 2018-02-19T19:03:38-05:00
    env GIT_AUTHOR_DATE=2018-02-19T18:16:38-05:00
    echo 'module "github.com/rsc/vgotest1/v2" // v2/go.mod'
    cp stdout v2/go.mod
    git add v2/go.mod
    git commit -m 'v2/go.mod: fix'
    git tag v2.0.4
    
    # 6
    at 2018-02-19T19:03:59-05:00
    env GIT_AUTHOR_DATE=2018-02-19T18:17:02-05:00
    echo 'module "github.com/rsc/vgotest1" // root go.mod'
    cp stdout go.mod
    git add go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 16:48:06 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/vcstest/git/vgotest1.txt

    git tag v2.0.3
    
    at 2018-02-19T19:03:38-05:00
    env GIT_AUTHOR_DATE=2018-02-19T18:16:38-05:00
    echo 'module "github.com/rsc/vgotest1/v2" // v2/go.mod'
    cp stdout v2/go.mod
    git add v2/go.mod
    git commit -m 'v2/go.mod: fix'
    git tag v2.0.4
    
    at 2018-02-19T19:03:59-05:00
    env GIT_AUTHOR_DATE=2018-02-19T18:17:02-05:00
    echo 'module "github.com/rsc/vgotest1" // root go.mod'
    cp stdout go.mod
    git add go.mod
    git commit -m 'go.mod: drop v2'
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 25 15:36:24 UTC 2022
    - 7.9K bytes
    - Viewed (0)
Back to top