Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 99 for Flatten (5.04 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolver.java

            } catch (DependencyCollectionException e) {
                throw new DependencyResolverException("Unable to collect dependencies", e);
            }
        }
    
        @Override
        public List<Node> flatten(Session s, Node node, PathScope scope) throws DependencyResolverException {
            InternalSession session = InternalSession.from(s);
            DependencyNode root = cast(AbstractNode.class, node, "node").getDependencyNode();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. platforms/ide/ide-native/src/main/groovy/org/gradle/ide/visualstudio/tasks/internal/VisualStudioSolutionFile.groovy

    EndProject"""
            }
            builder << """
    Global
    	GlobalSection(SolutionConfigurationPlatforms) = preSolution"""
            Set<String> configurationNames = Sets.newLinkedHashSet(projectConfigurations.values().flatten().collect({ it.name }).sort())
            configurationNames.each { String configurationName ->
                builder << """\n\t\t${configurationName} = ${configurationName}"""
            }
            builder << """
    	EndGlobalSection
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  3. tensorflow/cc/experimental/libtf/function.cc

    // TODO(b/190203981): Move to a separate nest-like library.
    void Flatten(const TaggedValue& value,
                 std::vector<AbstractTensorHandle*>* flat_args) {
      if (value.type() == TaggedValue::Type::TENSOR) {
        flat_args->emplace_back(value.tensor().get());
      } else if (value.type() == TaggedValue::Type::TUPLE) {
        for (const auto& t : value.tuple()) {
          Flatten(t, flat_args);
        }
      } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/test/precondition/PreconditionVerifier.groovy

        @Override
        Statement apply(@NotNull Statement base, @NotNull Description description) {
            List<Class<? extends TestPrecondition>> preconditions = description.annotations.findAll { it instanceof Requires }*.value().flatten()
            PredicatesFile.checkValidCombinations(preconditions, PredicatesFile.DEFAULT_ACCEPTED_COMBINATIONS)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r55/ReservedProjectNamesCrossVersionSpec.groovy

                collectOutputs(builder)
                builder.run()
            }
    
            then:
            eclipseModels.collect {
                collectProjects(it)
            }.flatten().collect {
                it.name
            }.containsAll([
                'root', 'root-root-a', 'explicitName',
                'includedBuild1', 'includedBuild1-a', 'includedBuild1-includedBuild1-b', 'includedBuild1-c',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossBuildPerformanceResults.groovy

            }
            assert matches.size() == 1
            buildResult(matches.first())
        }
    
        List<Exception> getFailures() {
            List.cast(buildResults.values().collect() {
                it.exception
            }.flatten().findAll())
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Certificate.kt

    ) {
      val commonName: Any?
        get() {
          return tbsCertificate.subject
            .flatten()
            .firstOrNull { it.type == ObjectIdentifiers.COMMON_NAME }
            ?.value
        }
    
      val organizationalUnitName: Any?
        get() {
          return tbsCertificate.subject
            .flatten()
            .firstOrNull { it.type == ObjectIdentifiers.ORGANIZATIONAL_UNIT_NAME }
            ?.value
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/SubprojectsInfo.kt

            val subprojectRoots = platformsFolder.asFile.listFiles(File::isDirectory).plus(subprojectsFolder.asFile).plus(testingFolder.asFile)
            return subprojectRoots.map { it.listFiles(File::isDirectory).asList() }.flatten()
        }
    
        private
        fun generateSubprojects(): List<GradleSubproject> {
            return generateSubprojectsDirectories()
                .filter {
                    File(it, "build.gradle.kts").exists() ||
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/core-execution/workers/src/integTest/groovy/org/gradle/workers/internal/WorkerDaemonFailureLoggingIntegrationTest.groovy

            // Output may come in different orders, so we just check that all the expected messages are there.
            def text = outputProgress*.details.spans*.text.flatten().join()
            text.count("Unrecognized option: --not-a-real-argument") == 1
            text.count("Error: Could not create the Java Virtual Machine.") == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:36:27 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/software/antlr/src/integTest/groovy/org/gradle/api/plugins/antlr/Antlr3RelocationIntegrationTest.groovy

                "org/acme/test/TestLexer.java",
                "org/acme/test/TestParser.java",
            ]
                .collect { projectDir.file("build/generated-src/antlr/main/$it").text.split(/\n/) }
                .flatten()
                .findAll { !(it =~ "// \\\$ANTLR") }
                .join("\n")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 2.2K bytes
    - Viewed (0)
Back to top