Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Mack (0.66 sec)

  1. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskNodeCodec.kt

                    when (filePropertyType) {
                        OutputFilePropertyType.DIRECTORY -> dir(pack(propertyValue))
                        OutputFilePropertyType.DIRECTORIES -> dirs(pack(propertyValue))
                        OutputFilePropertyType.FILE -> file(pack(propertyValue))
                        OutputFilePropertyType.FILES -> files(pack(propertyValue))
                    }
                }.run {
                    withPropertyName(propertyName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

         */
        ModelSideEffects(true),
    
        /**
         * Contains the model objects sent back to the IDE in response to a TAPI request.
         */
        Model(true),
    
        /**
         * Contains the model objects queried by the IDE provided build action in order to calculate the model to send back.
         */
        IntermediateModels(true),
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirExpressionInfoProvider.kt

            isUsed(expression)
    
        /**
         * [isUsed] and [doesParentUseChild] are defined in mutual recursion,
         * climbing up the syntax tree, passing control back and forth between the
         * two.
         *
         * Whether an expression is used is defined by the context in which it
         * appears. E.g. a "statement" in a block is considered used if it is the
    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. doc/godebug.md

    but may nonetheless break some existing programs,
    we first engineer the change to keep as many existing programs working as possible.
    For the remaining programs,
    we define a new GODEBUG setting that
    allows individual programs to opt back in to the old behavior.
    A GODEBUG setting may not be added if doing so is infeasible,
    but that should be extremely rare.
    
    GODEBUG settings added for compatibility will be maintained
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

                val outerSourceData = sourceData(outer, 0)
                val innerSourceData = sourceData(inner, 0)
                return UnsupportedConstruct(outerSourceData, innerSourceData, feature)
            } // TODO: hack, due to script wrapping
        }
    
        fun script(originalTree: LightTree): LanguageTreeResult {
            val tree = CachingLightTree(originalTree)
            val packageNode = packageNode(tree)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

            }
        }
    
        /**
         * Finds the parent symbol of the given [KaSymbol] by traversing back up the symbol hierarchy a certain number of steps,
         * or until the containing class or object symbol is found.
         *
         * @param symbol The [KaSymbol] whose parent symbol needs to be found.
         * @param goBackSteps The number of steps to go back up the symbol hierarchy.
         * @param selectedFqName The fully qualified name of the selected package.
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/project/structure/StandaloneProjectFactory.kt

                // find the actual file path.
                // See [LLFirJavaFacadeForBinaries#getBinaryPath] and [StandaloneProjectFactory#getBinaryPath] for a similar hack.
                val (libHomePath, pathInImage) = CoreJrtFileSystem.splitPath(pathString)
                libHomePath + JAR_SEPARATOR + "modules/$pathInImage"
            } else
                pathString
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 22:09:27 UTC 2024
    - 22.4K bytes
    - Viewed (0)
Back to top