Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 308 for wastage (0.12 sec)

  1. .teamcity/src/main/kotlin/configurations/StagePasses.kt

    import model.CIBuildModel
    import model.Stage
    import model.StageName
    import model.Trigger
    import projects.StageProject
    
    class StagePasses(model: CIBuildModel, stage: Stage, prevStage: Stage?, stageProject: StageProject) : BaseGradleBuildType(init = {
        id(stageTriggerId(model, stage))
        uuid = stageTriggerUuid(model, stage)
        name = stage.stageName.stageName + " (Trigger)"
        type = Type.COMPOSITE
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/projects/StageProject.kt

                }
            }
    
            specificBuildTypes = stage.specificBuilds.map {
                it.create(model, stage)
            }
            specificBuildTypes.forEach(this::buildType)
    
            performanceTests = stage.performanceTests.map { createPerformanceTests(model, performanceTestBucketProvider, stage, it) } +
                stage.flameGraphs.map { createFlameGraphs(model, stage, it) }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/audit/policy/util_test.go

    		desc           string
    		stages         []audit.Stage
    		expectedStages []audit.Stage
    	}{
    		{
    			desc: "should remove one",
    			stages: []audit.Stage{
    				audit.StageResponseStarted,
    			},
    			expectedStages: []audit.Stage{
    				audit.StageRequestReceived,
    				audit.StageResponseComplete,
    				audit.StagePanic,
    			},
    		},
    		{
    			desc: "should remove both",
    			stages: []audit.Stage{
    				audit.StageResponseStarted,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 09 22:38:00 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/util/StageTest.groovy

            expect:
            Stage.from(1, "2") < Stage.from(1, "3")
            Stage.from(1, "4") > Stage.from(1, "3")
    
            Stage.from(1, "9") < Stage.from(2, "1")
            Stage.from(2, "1") > Stage.from(1, "9")
    
            Stage.from(1, "1") < Stage.from(1, "1a")
            Stage.from(1, "1a") > Stage.from(1, "1")
    
            Stage.from(1, "1a") < Stage.from(1, "1b")
            Stage.from(1, "1b") > Stage.from(1, "1a")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 10 06:35:14 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/audit/policy/util.go

    func InvertStages(stages []audit.Stage) []audit.Stage {
    	s := ConvertStagesToStrings(stages)
    	a := AllStages()
    	a.Delete(s...)
    	return ConvertStringSetToStages(a)
    }
    
    // ConvertStagesToStrings converts an array of stages to a string array
    func ConvertStagesToStrings(stages []audit.Stage) []string {
    	s := make([]string, len(stages))
    	for i, stage := range stages {
    		s[i] = string(stage)
    	}
    	return s
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 09 16:29:20 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/ProgramParserTest.kt

            assertProgramOf(
                source,
                Program.Buildscript(source.fragment(1..11, 13..34))
            )
        }
    
        @Test
        fun `non-empty Stage 1 with non-empty Stage 2 parse to Stage 1 followed by Stage 2`() {
    
            val source = ProgramSource(
                "/src/fragment.gradle.kts",
                "\r\n\r\nplugins {\r\n  java\r\n}\r\nprintln(\"Stage 2\")\r\n\r\n"
            )
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/SanityCheck.kt

    package configurations
    
    import model.CIBuildModel
    import model.Stage
    
    class SanityCheck(model: CIBuildModel, stage: Stage) : BaseGradleBuildType(stage = stage, init = {
        id(buildTypeId(model))
        name = "Sanity Check"
        description = "Static code analysis, checkstyle, release notes verification, etc."
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        applyDefaults(
            model,
            this,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 30 11:15:05 UTC 2021
    - 708 bytes
    - Viewed (0)
  8. .teamcity/src/main/kotlin/configurations/BuildDistributions.kt

    package configurations
    
    import common.Os.LINUX
    import model.CIBuildModel
    import model.Stage
    
    class BuildDistributions(model: CIBuildModel, stage: Stage) : BaseGradleBuildType(stage = stage, init = {
        id("${model.projectId}_BuildDistributions")
        name = "Build Distributions"
        description = "Creation and verification of the distribution and documentation"
    
        applyDefaults(
            model,
            this,
            "packageBuild",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:52:00 UTC 2023
    - 970 bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/ProgramParserAnnotationErasureTest.kt

    import org.junit.Test
    
    
    class ProgramParserAnnotationErasureTest {
    
        @Test
        fun `empty Stage 1 with non-empty Stage 2 parse to Stage 2 with Stage 1 fragments erased`() {
            val scriptOnlySource =
                programSourceWith("""
                    @Suppress("unused_variable")
                    println("Stage 2")""".trimIndent())
    
            assertProgramOf(
                scriptOnlySource,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

        override
        fun createPerformanceTestsFor(model: CIBuildModel, stage: Stage, performanceTestCoverage: PerformanceTestCoverage, bucketIndex: Int): PerformanceTest = createPerformanceTest(
            model,
            performanceTestCoverage,
            stage,
            bucketIndex,
            "Performance tests for $testProject",
            mapOf(testProject to scenarios)
        )
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 11:22:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top