Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 41 for build_list (0.15 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/dist/build_test.go

    Bryan C. Mills <******@****.***> 1677687067 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 02 16:34:21 UTC 2023
    - 757 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/go/testdata/script/mod_sum_ambiguous.txt

    # Confirm our build list.
    cp go.sum.buildlist-only go.sum
    go list -m all
    stdout '^example.com/ambiguous/a v1.0.0$'
    stdout '^example.com/ambiguous/a/b v0.0.0-empty$'
    
    # If two modules could provide a package, but only one does,
    # 'go mod tidy' should retain sums for both zips.
    go mod tidy
    grep '^example.com/ambiguous/a v1.0.0 h1:' go.sum
    grep '^example.com/ambiguous/a/b v0.0.0-empty h1:' go.sum
    
    # 'go mod download' should also add sums.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 13 23:37:31 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  7. 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)
  8. maven-core/src/test/java/org/apache/maven/lifecycle/internal/BuildListCalculatorTest.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: Sat Apr 15 17:24:20 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top