Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 481 for listafp (0.14 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/ResolutionTracerTest.kt

            assertNull(resolver.trace.assignmentResolution(failedLhs).result)
            assertEquals(listOf(ErrorReason.UnresolvedAssignmentLhs::class), resolver.trace.assignmentResolution(failedLhs).errors?.map { it.errorReason::class })
    
            assertNull(resolver.trace.expressionResolution(failedLhs.lhs).result)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. platforms/enterprise/enterprise-plugin-performance/build.gradle.kts

        sourceFiles = 200
        testSourceFiles = 50 // verbose tests are time consuming
        filesPerPackage = 5
        linesOfCodePerSourceFile = 150
        numberOfScriptPlugins = 30
        rootProjectTemplates = listOf("root")
        subProjectTemplates = listOf("project-with-source")
        templateArgs = mapOf(
            "fullTestLogging" to true,
            "failedTests" to true,
            "projectDependencies" to true,
            "manyPlugins" to true,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 23:14:25 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

                val smallElementAggregateFunction: (List<PerformanceTestDuration>) -> List<PerformanceTestDuration> = { it }
    
                val buckets: List<List<PerformanceTestDuration>> = splitIntoBuckets(list, toIntFunction, largeElementSplitFunction, smallElementAggregateFunction, expectedBucketNumber, Integer.MAX_VALUE, { listOf() })
                    .filter { it.isNotEmpty() }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 11:22:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/schemaBuidler/FunctionExtractorTest.kt

                schemaFromTypes(ReceiverTwo::class, listOf(ReceiverTwo::class))
            }
            assertTrue { exception.message!!.contains("@Adding") }
        }
    
        @Test
        fun `adding function with no lambda is accepted if it returns Unit`() {
            val schema = schemaFromTypes(ReceiverThree::class, listOf(ReceiverThree::class))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/developingPlugins/publishingPlugins/kotlin/build.gradle.kts

                id = "<your plugin identifier>" // <5>
                displayName = "<short displayable name for plugin>" // <6>
                description = "<human-readable description of what your plugin is about>" // <7>
                tags = listOf("tags", "for", "your", "plugins") // <8>
                implementationClass = "<your plugin class>"
            }
        }
    }
    // end::per_plugin_config[]
    
    // tag::plugin_example[]
    gradlePlugin {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  6. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/SymbolByFqName.kt

                return listOf(symbol)
            }
        }
    
        data class ClassData(val classId: ClassId) : SymbolData() {
            override fun KaSession.toSymbols(ktFile: KtFile): List<KaSymbol> {
                val symbol = getClassOrObjectSymbolByClassId(classId) ?: error("Class $classId is not found")
                return listOf(symbol)
            }
        }
    
        object ScriptData : SymbolData() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. okhttp-tls/src/test/java/okhttp3/tls/HandshakeCertificatesTest.kt

        assertThat(listOf(clientCertificate.certificate, clientIntermediate.certificate))
          .isEqualTo(serverHandshake.peerCertificates)
        assertThat(listOf(serverCertificate.certificate, serverIntermediate.certificate))
          .isEqualTo(serverHandshake.localCertificates)
        val clientHandshake = clientHandshakeFuture.get()
        assertThat(listOf(serverCertificate.certificate, serverIntermediate.certificate))
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. build-logic-commons/basics/src/test/kotlin/gradlebuild/basics/tasks/PackageListGeneratorIntegrationTest.kt

    import java.util.jar.JarOutputStream
    
    
    class PackageListGeneratorIntegrationTest {
    
        companion object {
            private
            val EXPECTED_PACKAGE_LIST = listOf("com/acme", "com/foo/internal", "javax/servlet/http")
            private
            val DEFAULT_EXCLUDES_FOR_TEST = listOf(
                "org/gradle",
                "java",
                "javax/xml",
                "javax/inject",
                "groovy",
                "groovyjarjarantlr",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/AbstractPropertyLanguageInterOpIntegrationTest.groovy

                    flag.set(true)
                    message.set("some value")
                    number.set(1.23)
                    list.set(listOf(1, 2))
                    set.set(listOf(1, 2))
                    map.set(mapOf(1 to true, 2 to false))
                }
            """
    
            when:
            run("someTask")
    
            then:
            outputContains("flag = true")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java/customDirs/kotlin/build.gradle.kts

    }
    
    dependencies {
        testImplementation("junit:junit:4.13")
    }
    
    // tag::custom-src-dirs[]
    sourceSets {
        main {
            java {
                setSrcDirs(listOf("src"))
            }
        }
    
        test {
            java {
                setSrcDirs(listOf("test"))
            }
        }
    }
    // end::custom-src-dirs[]
    
    // tag::custom-extra-src-dir[]
    sourceSets {
        main {
            java {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top