Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for Metadata (2.48 sec)

  1. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/RemoteScriptUpToDateChecker.kt

    import org.gradle.internal.resource.ExternalResourceName
    import org.gradle.internal.resource.cached.CachedExternalResourceIndex
    import org.gradle.internal.resource.cached.ExternalResourceFileStore
    import org.gradle.internal.resource.metadata.ExternalResourceMetaDataCompare
    import org.gradle.internal.resource.transfer.AccessorBackedExternalResource
    import org.gradle.internal.resource.transfer.DownloadAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. build-logic-commons/build-platform/build.gradle.kts

            api("org.codenarc:CodeNarc:$codenarcVersion")
            api("org.eclipse.jgit:org.eclipse.jgit:5.13.3.202401111512-r")
            api("org.javassist:javassist:3.27.0-GA")
            api("org.jetbrains.kotlinx:kotlinx-metadata-jvm:0.6.0")
            api("org.jsoup:jsoup:1.15.3")
            api("org.junit.jupiter:junit-jupiter:5.8.2")
            api("org.junit.vintage:junit-vintage-engine:5.8.2")
            api("org.openmbee.junit:junit-xml-parser:1.0.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/cacheentry/EntryDetails.kt

    package org.gradle.internal.cc.impl.cacheentry
    
    import org.gradle.cache.internal.streams.BlockAddress
    import org.gradle.util.Path
    import java.io.File
    
    
    /**
     * Data stored in the "entry details" file. Provides some metadata about the cache entry.
     */
    internal
    class EntryDetails(
        val rootDirs: List<File>,
        val intermediateModels: Map<ModelKey, BlockAddress>,
        val projectMetadata: Map<Path, BlockAddress>,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/common/DependencyCollectorFunctionExtractorAndRuntimeResolver.kt

        }
    
        /**
         * Gradle decoration does not generate correct Kotlin metadata for decorated Kotlin types.
         * 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
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  5. integration-tests/gradle/build.gradle.kts

      } else {
        apply(plugin = "com.android.application")
        the<com.android.build.gradle.AppExtension>().compileSdkVersion(30)
      }
    
      var expectedClasspath =
        if (runningGradle5) {
          // without Gradle Module Metadata (only the POM is used)
          // - variant decision is made based on version suffix (android/jre) and not on the actual
          // environment
          // - runtime classpath equals the compile classpath
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. .gitignore

    /*/out
    /*/*/out
    /*/*/*/out
    /*/*/*/*/out
    /.teamcity/target
    /gradle.ipr
    /gradle.iws
    
    # Eclipse
    # -------
    *.classpath
    *.project
    *.settings
    /bin
    /subprojects/*/bin
    atlassian-ide-plugin.xml
    .metadata/
    
    # NetBeans
    # --------
    .nb-gradle
    .nb-gradle-properties
    
    # Vim
    # ---
    *.sw[nop]
    
    # Emacs
    # -----
    *~
    \#*\#
    .\#*
    
    # Textmate
    # --------
    .textmate
    
    # Sublime Text
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 19:23:39 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  7. build-logic/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

                    moduleBaseDir.deleteRecursively()
                }
            }
    
            doLast {
                localRepository.get().file("org/gradle/${baseName.get()}/maven-metadata.xml").asFile.apply {
                    writeText(readText().replace("\\Q<lastUpdated>\\E\\d+\\Q</lastUpdated>\\E".toRegex(), "<lastUpdated>${Year.now().value}0101000000</lastUpdated>"))
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:57 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanConstructors.kt

            maybeInit(beanType)
            if (GroovyObjectSupport::class.java.isAssignableFrom(beanType)) {
                // Run the `GroovyObjectSupport` constructor, to initialize the metadata field
                return newConstructorForSerialization(beanType, GroovyObjectSupport::class.java.getConstructor())
            } else {
                return newConstructorForSerialization(beanType, Object::class.java.getConstructor())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
        id("gradlebuild.jmh")
    }
    
    description = "Implementation of configuration model types and annotation metadata handling (Providers, software model, conventions)"
    
    errorprone {
        disabledChecks.addAll(
            "UnusedVariable", // This cannot really be turned off, because of the false positive in errorprone (https://github.com/google/error-prone/issues/4409)
        )
    }
    
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. api/pom.xml

        <module>maven-api-xml</module>
        <module>maven-api-model</module>
        <module>maven-api-plugin</module>
        <module>maven-api-settings</module>
        <module>maven-api-toolchain</module>
        <module>maven-api-metadata</module>
        <module>maven-api-core</module>
        <module>maven-api-spi</module>
      </modules>
    
      <properties>
        <project.directory>api</project.directory>
      </properties>
    
      <build>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 14:07:09 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top