- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 484 for listFn (0.25 sec)
-
.teamcity/src/test/kotlin/BuildScanTagUtilsTest.kt
private val model = CIBuildModel( projectId = "Check", branch = VersionedSettingsBranch.fromDslContext(), buildScanTags = listOf("Check"), subprojects = subprojectProvider ) @Test fun `test stage tags`() { assertEquals(
Registered: Wed Oct 30 11:36:09 UTC 2024 - Last Modified: Mon Sep 30 07:24:00 UTC 2024 - 1.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishGradleDistributionFullBuild.kt
buildStep(extraParameters, gitUserName, gitUserEmail, triggerName, prepTask, promoteTask) } else { buildStep( listOf(extraParameters, "-PpromotedBranch=$promotedBranch").joinToString(separator = " "), gitUserName, gitUserEmail, triggerName, promoteTask,
Registered: Wed Oct 30 11:36:09 UTC 2024 - Last Modified: Tue Feb 13 14:18:23 UTC 2024 - 1.8K bytes - Viewed (0) -
docs/en/docs/external-links.md
**FastAPI** has a great community constantly growing. There are many posts, articles, tools, and projects, related to **FastAPI**. Here's an incomplete list of some of them. /// tip If you have an article, project, tool, or anything related to **FastAPI** that is not yet listed here, create a <a href="https://github.com/fastapi/fastapi/edit/master/docs/en/data/external_links.yml" class="external-link" target="_blank">Pull Request adding it</a>.
Registered: Sun Oct 27 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 1K bytes - Viewed (0) -
cmd/metacache-walk.go
objReturned(entry.metadata) select { case <-ctx.Done(): return ctx.Err() case out <- entry: } return nil } // Fast exit track to check if we are listing an object with // a trailing slash, this will avoid to list the object content. if HasSuffix(opts.BaseDir, SlashSeparator) { metadata, err := s.readMetadata(ctx, pathJoin(volumeDir, opts.BaseDir[:len(opts.BaseDir)-1]+globalDirSuffix,
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Sat Jun 01 05:17:37 UTC 2024 - 12.4K bytes - Viewed (0) -
internal/kms/kms.go
) // ListRequest is a structure containing fields // and options for listing keys. type ListRequest struct { // Prefix is an optional prefix for filtering names. // A list operation only returns elements that match // this prefix. // An empty prefix matches any value. Prefix string // ContinueAt is the name of the element from where // a listing should continue. It allows paginated // listings. ContinueAt string
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Sun Aug 18 06:43:03 UTC 2024 - 11.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/projects/GradleBuildToolRootProject.kt
import java.io.File class GradleBuildToolRootProject(branch: VersionedSettingsBranch) : Project({ val model = CIBuildModel( projectId = "Check", branch = branch, buildScanTags = listOf("Check"), subprojects = JsonBasedGradleSubprojectProvider(File("./subprojects.json")) ) val gradleBuildBucketProvider = DefaultFunctionalTestBucketProvider(model, File("./test-buckets.json"))
Registered: Wed Oct 30 11:36:09 UTC 2024 - Last Modified: Tue Dec 05 00:08:14 UTC 2023 - 1002 bytes - Viewed (0) -
.teamcity/src/test/kotlin/CIConfigIntegrationTests.kt
} } fun assertProjectAreSplitByGradleVersionCorrectly(buckets: List<List<String>>, testType: TestType, functionalTests: List<BaseGradleBuildType>) { buckets.forEachIndexed { index: Int, startEndVersion: List<String> -> assertTrue(functionalTests[index].name.contains("(${startEndVersion[0]} <= gradle <${startEndVersion[1]})"))
Registered: Wed Oct 30 11:36:09 UTC 2024 - Last Modified: Thu Jul 18 07:02:47 UTC 2024 - 13.4K bytes - Viewed (0) -
cmd/consolelogger.go
// are set. var lastN []log.Info if last > defaultLogBufferCount || last <= 0 { last = defaultLogBufferCount } lastN = make([]log.Info, last) sys.RLock() sys.logBuf.Do(func(p interface{}) { if p != nil { lg, ok := p.(log.Info) if ok && lg.SendLog(node, logKind) { lastN[cnt%last] = lg cnt++ } } }) sys.RUnlock()
Registered: Sun Oct 27 19:28:09 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 5.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/GradleSubprojectProvider.kt
import com.alibaba.fastjson.JSON import java.io.File val ignoredSubprojects = listOf( "soak", // soak test "distributions-integ-tests", // build distribution testing "architecture-test" // sanity check ) interface GradleSubprojectProvider { val subprojects: List<GradleSubproject> fun getSubprojectsForFunctionalTest(testConfig: TestCoverage): List<GradleSubproject> fun getSubprojectByName(name: String): GradleSubproject?
Registered: Wed Oct 30 11:36:09 UTC 2024 - Last Modified: Fri Jun 02 14:55:06 UTC 2023 - 2.2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/SmokeIdeTests.kt
requiresNotEc2Agent() } applyTestDefaults( model = model, buildType = this, gradleTasks = ":smoke-ide-test:smokeIdeTest", extraParameters = listOf( stage.getBuildScanCustomValueParam(), buildScanTagParam("SmokeIdeTests") ).joinToString(" "), ) }) { companion object {
Registered: Wed Oct 30 11:36:09 UTC 2024 - Last Modified: Wed Sep 25 07:23:49 UTC 2024 - 1.6K bytes - Viewed (0)