Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for build_list (0.16 sec)

  1. tensorflow/compiler/mlir/tfr/tests/raise_to_tf.mlir

      %0 = "tfr.cast"(%arg0) : (tensor<f32>) -> !tfr.tensor
      %1 = "tfr.cast"(%arg1) : (tensor<f32>) -> !tfr.tensor
      %2 = "tfr.cast"(%arg2) : (tensor<f32>) -> !tfr.tensor
      %3 = "tfr.build_list"(%0, %1, %2) : (!tfr.tensor, !tfr.tensor, !tfr.tensor) -> !tfr.tensor_list
      %concat = tfr.call @tf__risc_concat(%3) : (!tfr.tensor_list) -> !tfr.tensor
      %4 = "tfr.cast"(%concat) : (!tfr.tensor) -> tensor<3xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. src/cmd/go/internal/work/build_test.go

    Austin Clements <******@****.***> 1695243700 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  3. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/components/signatureSubstitution/AbstractAnalysisApiSignatureContractsTest.kt

        ) {
            analyseForTest(callableDeclaration) {
                val typesToCheckOn = buildList {
                    add(builtinTypes.int)
                    add(buildClassType(StandardClassIds.List) { argument(builtinTypes.long) })
                }
    
                val symbol = callableDeclaration.getSymbol() as KaCallableSymbol
                val typeParameters = buildList {
                    addAll(symbol.typeParameters)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/declarative-dsl-provider/src/main/kotlin/org/gradle/internal/declarativedsl/conventions/SoftwareTypeRegistryIntegration.kt

                val assignments = buildList {
                    softwareType.conventions.filterIsInstance<AssignmentRecordConvention>().forEach { it.apply(::add) }
                }
                val additions = buildList {
                    softwareType.conventions.filterIsInstance<AdditionRecordConvention>().forEach { it.apply(::add) }
                }
                val nestedObjectAccess = buildList {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:47 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/lifecycle/internal/LifecycleTaskSegmentCalculatorImplTest.java

            List<TaskSegment> taskSegments = lifecycleTaskSegmentCalculator.calculateTaskSegments(session);
    
            final ProjectBuildList buildList = buildListCalculator.calculateProjectBuilds(session, taskSegments);
            final ProjectBuildList segments = buildList.getByTaskSegment(taskSegments.get(0));
            assertEquals(3, taskSegments.size(), "Stub data contains 3 segments");
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtFirAnalysisSession.kt

                buildList {
                    add(project.createDeclarationProvider(useSiteAnalysisScope, useSiteModule))
                    extensionTools.mapTo(this) { it.declarationProvider }
                }
            )
    
            useSitePackageProvider = KotlinCompositePackageProvider.create(
                buildList {
                    add(project.createPackageProvider(useSiteAnalysisScope))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/projectStructure/KotlinByModulesResolutionScopeProvider.kt

    public class KotlinByModulesResolutionScopeProvider : KotlinResolutionScopeProvider() {
        override fun getResolutionScope(module: KtModule): GlobalSearchScope {
            val allModules = topologicalSort(listOf(module)) {
                buildList {
                    addAll(directDependsOnDependencies)
                    addAll(directFriendDependencies)
                    addAll(directRegularDependencies)
                }
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 948 bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/schemaBuilder/PropertyExtractor.kt

        override fun extractProperties(kClass: KClass<*>, propertyNamePredicate: (String) -> Boolean): Iterable<CollectedPropertyInformation> = buildList {
            val nameSet = mutableSetOf<String>()
            val predicateWithNamesFiltered: (String) -> Boolean = { propertyNamePredicate(it) && it !in nameSet }
            extractors.forEach { extractor ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/annotations/KtFe10AnnotationsList.kt

        private val ignoredAnnotations: Set<ClassId> = emptySet()
    ) : AbstractList<KaAnnotation>(), KaAnnotationList {
        private val backingAnnotations: List<KaAnnotation> by lazy {
            buildList {
                fe10Annotations.forEachIndexed { index, annotationDescriptor ->
                    if (annotationDescriptor.classIdForAnnotation !in ignoredAnnotations) {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/analysis-api-standalone-native/tests/org/jetbrains/kotlin/analysis/api/standalone/konan/fir/test/cases/session/builder/testUtils.kt

        val ktFiles = Files.walk(kLibSourcesRoot).asSequence().filter { it.extension == "kt" }.toList()
        val testKlib = KtTestUtil.tmpDir("testLibrary").resolve("library.klib").toPath()
    
        val arguments = buildList {
            ktFiles.mapTo(this) { it.absolutePathString() }
            addAll(listOf("-produce", "library"))
            addAll(listOf("-output", testKlib.absolutePathString()))
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Nov 16 13:31:53 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top