Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Erling (1.04 sec)

  1. maven-core/src/site/apt/offline-mode.apt

      It means warning users that since the network is missing, certain features and
      operations will be unavailable, rather than simply waiting for those
      operations to fail, then trying to help users decipher the error messages they
      get as a result.
    
    * Implications for Resolution
    
    ** Dependency Resolution
    
      This one is obvious...we only have access to the repositories using
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 18 00:24:53 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_tidy_compat_incompatible.txt

    
    # There are two ways for the module author to bring the two into alignment.
    # One is to *explicitly* 'exclude' the version that is already *implicitly*
    # pruned out under 1.17.
    
    go mod edit -exclude=example.com/retract/incompatible@v2.0.0+incompatible
    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. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

         * last expression in that block AND the block itself is used -- a
         * recursive call to `isUsed`, one level higher in the syntax tree.
         *
         * The methods are _conservative_, erring on the side of answering `true`.
         */
        private fun isUsed(psiElement: PsiElement): Boolean {
            return when (psiElement) {
                /**
                 * DECLARATIONS
                 */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 16:16:39 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  4. src/mdo/reader.vm

            entities.put("Aacute", "\u00c1");
            entities.put("Acirc", "\u00c2");
            entities.put("Atilde", "\u00c3");
            entities.put("Auml", "\u00c4");
            entities.put("Aring", "\u00c5");
            entities.put("AElig", "\u00c6");
            entities.put("Ccedil", "\u00c7");
            entities.put("Egrave", "\u00c8");
            entities.put("Eacute", "\u00c9");
            entities.put("Ecirc", "\u00ca");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
  5. doc/godebug.md

    (such as [`os.ModeDir`](/pkg/os#ModeDir)) do not have the `ModeIrregular` bit set.
    
    Go 1.23 changed [`os.Readlink`](/pkg/os#Readlink) and [`filepath.EvalSymlinks`](/pkg/path/filepath#EvalSymlinks)
    to avoid trying to normalize volumes to drive letters, which was not always even possible.
    This behavior is controlled by the `winreadlinkvolume` setting.
    For Go 1.23, it defaults to `winreadlinkvolume=1`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  6. apache-maven/src/main/appended-resources/licenses/CDDL+GPLv2-with-classpath-exception.txt

    collective works based on the Program.
    
    In addition, mere aggregation of another work not based on the Program
    with the Program (or with a work based on the Program) on a volume of a
    storage or distribution medium does not bring the other work under the
    scope of this License.
    
    3. You may copy and distribute the Program (or a work based on it,
    under Section 2) in object code or executable form under the terms of
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri May 17 19:14:22 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/PPC64latelower.rules

    (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.
    (ANDconst [m] x) && isPPC64ValidShiftMask(m) => (RLDICL [encodePPC64RotateMask(0,m,64)] x)
    
    // Likewise, trying converting RLDICLCC back to ANDCCconst as it is faster.
    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. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/GroovyCodecs.kt

            override fun getProperty(propertyName: String): Any {
                // When the closure or a nested closure uses 'owner first' resolution strategy, the closure will attempt to locate the property on this object before trying to locate it on
                // the delegate. So, only treat references to `Project` properties as a problem and throw 'missing property' exception for anything unknown so that the closure can continue
                // with the delegate
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. build-logic-commons/build-platform/build.gradle.kts

            api("com.thoughtworks.qdox:qdox:2.0.3")
            api("com.uwyn:jhighlight:1.0")
            api("com.vladsch.flexmark:flexmark-all:0.34.60") {
                because("Higher versions tested are either incompatible (0.62.2) or bring additional unwanted dependencies (0.36.8)")
            }
            api("org.apache.pdfbox:pdfbox:2.0.24") {
                because("Flexmark 0.34.60 brings in a vulnerable version of pdfbox")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  10. ChangeLog.md

    - [`KT-65727`](https://youtrack.jetbrains.com/issue/KT-65727) K2: add proper package for properties generated from destructuring declarations
    - [`KT-64854`](https://youtrack.jetbrains.com/issue/KT-64854) K2: Trying to access private field on runtime with contracts
    - [`KT-65388`](https://youtrack.jetbrains.com/issue/KT-65388) IrFakeOverrideBuilder - custom annotation is available in fake getter/setter
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:14:23 UTC 2024
    - 292.1K bytes
    - Viewed (0)
Back to top