Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 101 for Id (0.03 sec)

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

                }
            }
        }
    
        private
        fun ReadContext.readNodeGroup(nodesById: Map<Int, Node>): NodeGroup {
            return decodePreservingIdentity { id ->
                when (readSmallInt()) {
                    0 -> {
                        val ordinal = readSmallInt()
                        ordinalGroups.group(ordinal)
                    }
    
                    1 -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/base-services-groovy/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.api-java")
    }
    
    description = "A set of generic services and utilities specific for Groovy."
    
    dependencies {
        api(project(":base-services"))
        api(projects.stdlibJavaExtensions)
    
        api(libs.jsr305)
        api(libs.groovy)
        api(libs.guava)
    
        testImplementation(testFixtures(project(":core")))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 345 bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/DefaultCopySpecCodec.kt

                writeCollection(value.copyActions)
                writeCollection(value.children)
            }
        }
    
        override suspend fun ReadContext.decode(): DefaultCopySpec {
            return decodePreservingIdentity { id ->
                val destPath = readNullableString()
                val sourceFiles = read() as FileCollection
                val patterns = read() as PatternSet
                val duplicatesStrategy = readEnum<DuplicatesStrategy>()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

    import gradlebuild.integrationtests.configureIde
    import gradlebuild.integrationtests.createTestTask
    import gradlebuild.integrationtests.setSystemPropertiesOfTestJVM
    
    plugins {
        java
        id("gradlebuild.module-identity")
        id("gradlebuild.dependency-modules")
    }
    
    val sourceSet = addSourceSet(TestType.CROSSVERSION)
    addDependenciesAndConfigurations(TestType.CROSSVERSION.prefix)
    createQuickFeedbackTasks()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/evaluator/StoringInterpretationSchemaBuilder.kt

                    val stepsWithSchemaStoring = evaluationSchemaForScript.sequence.steps.map {
                        val schemaHandler: (String, AnalysisSchema) -> Unit = { id, schema -> storeSchemaResult(id, schema) }
                        when (it) {
                            is InterpretationSequenceStepWithConversion<*> -> SchemaHandlingInterpretationSequenceStepWithConversion(it, schemaHandler)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 5K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-tooling-builders/build.gradle.kts

    plugins {
        id("gradlebuild.distribution.implementation-kotlin")
    }
    
    description = "Declarative DSL Tooling Builders for IDEs"
    
    dependencies {
        api(projects.serviceProvider)
        api(project(":core"))
        api(project(":core-api"))
    
        api(libs.kotlinStdlib)
    
        implementation(projects.stdlibJavaExtensions)
        implementation(project(":declarative-dsl-evaluator"))
        implementation(project(":declarative-dsl-provider"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 572 bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        val flameGraphs: List<FlameGraphGeneration> = emptyList(),
        val trigger: Trigger = Trigger.never,
        val runsIndependent: Boolean = false
    ) {
        val id = stageName.id
    }
    
    data class DocsTestCoverage(val os: Os, val testJava: JvmCategory, val docsTestTypes: List<DocsTestType>)
    
    data class TestCoverage(
        val uuid: Int,
        val testType: TestType,
        val os: Os,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-problems-base/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.implementation-kotlin")
        id("gradlebuild.kotlin-dsl-sam-with-receiver")
    }
    
    description = "Base utilities and services to report and track configuration problems"
    
    dependencies {
        api(projects.baseServices)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. platforms/core-configuration/bean-serialization-services/build.gradle.kts

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    plugins {
        id("gradlebuild.distribution.implementation-kotlin")
        id("gradlebuild.kotlin-dsl-sam-with-receiver")
    }
    
    description = "Configuration Cache services supporting bean serialization"
    
    dependencies {
        api(projects.graphSerialization)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbolBase.kt

            }
            return symbolEquals(other)
        }
    
        /**
         * All kinds of non-local named class or object symbols must have the same kind of hash code. The class ID is the best option, as the
         * same class/object may be represented by multiple different symbols.
         */
        override fun hashCode(): Int = classId?.hashCode() ?: symbolHashCode()
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top