Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 313 for Flatten (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. operator/pkg/verifier/verifier.go

    			continue
    		}
    		pseudoFilename := fmt.Sprintf("%d: generated from %s", i, "default")
    
    		reader := strings.NewReader(string(rj))
    		builder = builder.Stream(reader, pseudoFilename)
    	}
    	r := builder.Flatten().Do()
    	if r.Err() != nil {
    		return r.Err()
    	}
    	visitor := genericclioptions.ResourceFinderForResult(r).Do()
    	generatedCrds, generatedDeployments, generatedDaemonSets, err := v.verifyPostInstall(
    		visitor,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/compile/daemon/JavaCompilerDaemonFailureIntegrationTest.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: Thu Sep 28 12:15:28 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtStandaloneProjectStructureProvider.kt

        }
    
        override val allSourceFiles: List<PsiFileSystemItem> by lazy {
            buildList {
                val files = allKtModules.mapNotNull { (it as? KtSourceModuleImpl)?.sourceRoots }.flatten()
                addAll(files)
                addAll(findJvmRootsForJavaFiles(files.filterIsInstance<PsiJavaFile>()))
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Apr 10 16:23:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/RunnerFactory.groovy

                def init = AGP_VERSIONS.createAgpNightlyRepositoryInitScript()
                extraArgs += ["-I", init.canonicalPath]
            }
            return runner.withArguments([runner.arguments, extraArgs].flatten())
                .ignoreDeprecationWarningsIf(AGP_VERSIONS.isOld(agpVersion), "Old AGP version")
        }
    
        private SmokeTestGradleRunner newKotlinRunner(boolean parallel, VersionNumber kotlinVersion, List<String> tasks) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
Back to top