Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 179 for downes (0.73 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PropertyDelegate.kt

        dynamicObjectFor(target).let { owner ->
            if (property.returnType.isMarkedNullable) NullableDynamicPropertyDelegate(dynamicLookupRoutine, owner, property.name)
            else NonNullDynamicPropertyDelegate(dynamicLookupRoutine, owner, property.name) { target.toString() }
        }
    
    
    private
    fun dynamicObjectFor(target: Any): DynamicObject =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_get_downup_indirect.txt

    stdout '^example.com/b v0.1.0 '
    stdout '^example.com/c v0.2.0 '
    stdout '^example.com/d v0.1.0 '
    cmp go.mod go.mod.down1
    
    # Restoring c to version 1 upgrades d to meet c's requirements.
    go get example.com/c@v0.1.0
    go list -m all
    ! stdout '^example.com/b '
    stdout '^example.com/c v0.1.0 '
    stdout '^example.com/d v0.2.0 '
    cmp go.mod go.mod.down2
    
    # If a user explicitly requests the incompatible versions together,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 13:05:03 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. architecture/standards/0004-use-a-platform-architecture.md

    An architecture module is responsible for providing a coherent set of features and:
    
    - Provides a set of APIs and services for use from outside the module.
    - Has a private implementation.
    - Is owned by a single team. A team may own multiple architecture modules.
    
    The modules are arranged into several different "Gradle platforms".
    A Gradle platform is a logical distribution that provides support for a specific kind of automation.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Feb 25 22:19:29 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. LICENSE

          "License" shall mean the terms and conditions for use, reproduction,
          and distribution as defined by Sections 1 through 9 of this document.
    
          "Licensor" shall mean the copyright owner or entity authorized by
          the copyright owner that is granting the License.
    
          "Legal Entity" shall mean the union of the acting entity and all
          other entities that control, are controlled by, or are under common
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 22 18:59:39 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  5. README.fr.md

    explorer les documents d'un [serveur Web](https://fess.codelibs.org/14.6/admin/webconfig-guide.html), un [système de fichiers](https://fess.codelibs.org/14.6/admin/fileconfig-guide.html), ou un [Stockage de données](https://fess.codelibs.org/14.6/admin/dataconfig-guide.html) (tel qu'une base de donnée ou des CSV). Plusieurs formats de fichiers sont supportés tels que (mais pas uniquement): Microsoft Office, PDF, et zip.
    
    *[FEss Site Search](https://github.com/codelibs/fess-site-search)* est une...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Feb 06 22:59:17 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/annotations/renderers/KtAnnotationListRenderer.kt

            ) {
                val annotations = owner.annotations
                    .filter { annotationRenderer.annotationFilter.filter(analysisSession, it, owner) }
                    .ifEmpty { return }
    
                printer.printCollection(
                    annotations,
                    separator = when (owner) {
                        is KaValueParameterSymbol -> " "
                        is KaDeclarationSymbol -> "\n"
                        else -> " "
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/TaskReferenceCodec.kt

                )
            }
        }
    
        private
        fun WriteContext.isTaskReferencesAllowed(value: Task): Boolean {
            val owner = isolate.owner
            val delegate = owner.delegate
    
            val isTaskReferencesAllowed = owner is IsolateOwners.OwnerTask && owner.allowTaskReferences
            val isTaskFromSameProject = delegate is Task && delegate.project == value.project
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/annotations/renderers/KtAnnotationUseSiteTargetRenderer.kt

            annotation: KaAnnotation,
            owner: KaAnnotated,
            annotationRenderer: KaAnnotationRenderer,
            printer: PrettyPrinter,
        )
    
        public object WITHOUT_USE_SITE : KaAnnotationUseSiteTargetRenderer {
            override fun renderUseSiteTarget(
                analysisSession: KaSession,
                annotation: KaAnnotation,
                owner: KaAnnotated,
                annotationRenderer: KaAnnotationRenderer,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/FirJavaDeclaredMembersOnlyScope.kt

        private val owner: FirJavaClass,
    ) : FirCallableFilteringScope(delegate) {
        init {
            // The `isDeclared` check is based on class IDs. Local classes don't have proper class IDs, but because this scope is used to
            // represent Java classes viewed from Kotlin code, we shouldn't be able to encounter any local Java classes.
            require(!owner.isLocal) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Oct 10 13:38:00 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/KtFirFileScope.kt

    import org.jetbrains.kotlin.fir.declarations.FirSimpleFunction
    import org.jetbrains.kotlin.fir.declarations.FirTypeAlias
    import org.jetbrains.kotlin.name.Name
    
    internal class KaFirFileScope(
        private val owner: KaFirFileSymbol,
        private val builder: KaSymbolByFirBuilder
    ) : KaScope {
        override val token: KaLifetimeToken get() = builder.token
    
        private val allNamesCached by cached {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top