Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for Selects (0.48 sec)

  1. src/cmd/go/testdata/script/mod_tidy_compat_irrelevant.txt

    # requirements to match.
    
    [short] skip
    
    env MODFMT='{{with .Module}}{{.Path}} {{.Version}}{{end}}'
    
    
    # This module selects the same versions in Go 1.16 and 1.17 for all modules
    # that provide packages (or test dependencies of packages) imported by the
    # main module. However, in Go 1.16 it selects a higher version of a
    # transitive module dependency that is not otherwise relevant to the main module.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_compat_implicit.txt

    # requirements to match.
    
    [short] skip
    
    env MODFMT='{{with .Module}}{{.Path}} {{.Version}}{{end}}'
    
    
    # For this module, Go 1.16 selects the same versions of all explicit dependencies
    # as Go 1.17 does. However, Go 1.16 selects a higher version of an *implicit*
    # dependency, imported by a test of one of the (external) imported packages.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  3. doc/next/7-ports.md

    The `GOARM64` environment variable defaults to `v8.0`.
    
    ### RISC-V {#riscv}
    
    <!-- go.dev/issue/61476, CL 541135 -->
    Go 1.23 introduces a new `GORISCV64` environment variable, which selects the [RISC-V user-mode application profile](https://github.com/riscv/riscv-profiles/blob/main/src/profiles.adoc) for which to compile. Allowed values are `rva20u64` and `rva22u64`.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_tidy_compat_deleted.txt

    # requirements to match.
    
    [short] skip
    
    env MODFMT='{{with .Module}}{{.Path}} {{.Version}}{{end}}'
    
    
    # For this module, the "deleted" dependency contains an imported package, but
    # Go 1.16 selects a higher version (in which that package has been deleted).
    
    cp go.mod go.mod.orig
    
    ! go mod tidy
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/PathModularizationCache.java

            if (type == null) {
                type = new PathModularization(path, false).getPathType();
                pathTypes.put(path, type);
            }
            return type;
        }
    
        /**
         * Selects the type of path where to place the given dependency.
         * This method returns one of the values specified in the given collection.
         * This method does not handle the patch-module paths, because the patches
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 09:53:45 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/mod_tidy_compat_incompatible.txt

    # requirement on a retracted higher version of a dependency.
    # However, when Go 1.16 reads the same requirements from the go.mod file,
    # it does not prune out that requirement, and selects the retracted version.
    #
    # The Go 1.16 module graph looks like:
    #
    # m ---- lazy v0.1.0 ---- requireincompatible v0.1.0 ---- incompatible v2.0.0+incompatible
    # |        |
    # + -------+------------- incompatible v1.0.0
    #
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64latelower.rules

    // And finally, fixup the flag user.
    (CMPconst <t> [0] (Select0 z:((ADD|AND|ANDN|OR|SUB|NOR|XOR)CC x y))) => (Select1 <t> z)
    (CMPconst <t> [0] (Select0 z:((ADDCCconst|ANDCCconst|NEGCC|CNTLZDCC|RLDICLCC) y))) => (Select1 <t> z)
    
    // After trying to convert ANDconst to ANDCCconst above, if the CC result is not needed, try to avoid using
    // ANDconst which clobbers CC.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

        private void addTOC(Document document) {
            Element tocSection = document.body().select("section.topic").first().before("<section class='table-of-contents'/>").previousElementSibling();
            tocSection.append("<h2>Table Of Contents</h2>");
            Element toc = tocSection.append("<ul class='toc'/>").children().last();
    
            Elements h23elements = document.select("h2,h3");
            for (Element h23element: h23elements) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/SubtypingTest.kt

            val result = schema.resolve(
                """
                addSuperInterface(sub())
                """.trimIndent()
            )
    
            assertEquals(1, result.additions.size)
        }
    
        @Test
        fun `rejects assignments of a type that is not a subtype`() {
            val result = schema.resolve(
                """
                superInterfaceProp = notASub()
                superClassProp = notASub()
                """.trimIndent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:02 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. integration-tests/gradle/build.gradle.kts

                      "getId"
                    ) // reflective access to make this compile with Gradle 5
                  (idField.invoke(it) as ModuleComponentIdentifier).module == "guava"
                }
                ?.apply { select(this) }
            }
          }
        }
    
        if (name.contains("AndroidConstraint")) {
          dependencies {
            constraints {
              "api"("com.google.guava:guava") {
                attributes {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top