Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 403 for stage1 (0.32 sec)

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

    import jetbrains.buildServer.configs.kotlin.BuildStep
    import jetbrains.buildServer.configs.kotlin.buildSteps.script
    import model.CIBuildModel
    import model.Stage
    import model.StageName
    
    class FlakyTestQuarantine(model: CIBuildModel, stage: Stage, os: Os, arch: Arch = Arch.AMD64) : BaseGradleBuildType(stage = stage, init = {
        id("${model.projectId}_FlakyQuarantine_${os.asName()}_${arch.asName()}")
        name = "Flaky Test Quarantine - ${os.asName()} ${arch.asName()}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/fixtures/ClassLoadingCache.kt

            when (cachedScript) {
                is CachedScript.WholeFile -> cachedScript.stages.forEach { assertClassLoads(it, count) }
                is CachedScript.CompilationStage -> assertClassLoads(cachedScript, count)
            }
    
        private
        fun assertClassLoads(stage: CachedScript.CompilationStage, count: Int) =
            result.assertOccurrenceCountOf("loading", stage, count)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. pkg/test/datasets/Readme.md

    .../dataset/**/<testname>.skip
    ```
    
    The test file structure also allows multiple stages:
    
    ```plain
    # Input file for the test
    .../dataset/**/<testname>_<stageNo>.yaml
    .../dataset/**/<testname>_<stageNo>_meshconfig.yaml
    .../dataset/**/<testname>_<stageNo>_expected.json
    
    e.g.
    # First stage files. Meshconfig carries over to the next stage
    .../dataset/**/foo_0.yaml
    .../dataset/**/foo_0_meshconfig.yaml
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/cluster_scoping_pass.cc

    // purpose of discussion.  After adding scopes for both Stage and Unstage,
    // Node_Y will receive both scopes "unstage" and "stage", while Node_X receives
    // only scope "stage".  The semantic of scope "unstage" is preserved although
    // scope "stage" is later appended.  As a result, Node_X and Node_Y will be put
    // into different clusters.
    //
    //                Unstage -> Node_Y (scope "unstage & stage")
    //                              |
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

        override fun createFunctionalTestsFor(stage: Stage, testCoverage: TestCoverage): List<FunctionalTest> {
            return when {
                testCoverage.testType == TestType.quickFeedbackCrossVersion -> quickCrossVersionTestBucketProvider.createFunctionalTestsFor(stage, testCoverage)
                testCoverage.testType == TestType.allVersionsCrossVersion -> allCrossVersionTestBucketProvider.createFunctionalTestsFor(stage, testCoverage)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 05:14:09 UTC 2024
    - 9K bytes
    - Viewed (0)
  6. Jenkinsfile.its

                name: 'ITS_BRANCH' )
      }
      stages {
        stage("Build Maven Core") {
          steps {
            withEnv(["JAVA_HOME=${ tool "JDK 1.8 (latest)" }", "PATH+MAVEN=${tool 'Maven 3.6.3'}/bin:${env.JAVA_HOME}/bin"]) {
                sh "mvn -Drat.skip=true -T2 -B -V install -PversionlessMavenDist -Dmaven.repo.local=${env.WORKSPACE}/repo"
            }
          }
        }
        stage( "Run Maven Integration Testing" ) {
          steps {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Dec 26 16:42:35 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  7. src/image/jpeg/idct.go

    		x1 := s[4] << 11
    		x2 := s[6]
    		x3 := s[2]
    		x4 := s[1]
    		x5 := s[7]
    		x6 := s[5]
    		x7 := s[3]
    
    		// Stage 1.
    		x8 := w7 * (x4 + x5)
    		x4 = x8 + w1mw7*x4
    		x5 = x8 - w1pw7*x5
    		x8 = w3 * (x6 + x7)
    		x6 = x8 - w3mw5*x6
    		x7 = x8 - w3pw5*x7
    
    		// Stage 2.
    		x8 = x0 + x1
    		x0 -= x1
    		x1 = w6 * (x3 + x2)
    		x2 = x1 - w2pw6*x2
    		x3 = x1 + w2mw6*x3
    		x1 = x4 + x6
    		x4 -= x6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 23:18:37 UTC 2019
    - 5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/apis/audit/validation/validation.go

    func validateOmitStages(omitStages []audit.Stage, fldPath *field.Path) field.ErrorList {
    	var allErrs field.ErrorList
    	for i, stage := range omitStages {
    		valid := false
    		for _, validOmitStage := range validOmitStages {
    			if string(stage) == validOmitStage {
    				valid = true
    				break
    			}
    		}
    		if !valid {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 15 14:13:07 UTC 2019
    - 4.6K bytes
    - Viewed (0)
  9. .teamcity/src/main/kotlin/model/CIBuildModel.kt

            override fun create(model: CIBuildModel, stage: Stage): BaseGradleBuildType {
                return CompileAll(model, stage)
            }
        },
        SanityCheck {
            override fun create(model: CIBuildModel, stage: Stage): BaseGradleBuildType {
                return SanityCheck(model, stage)
            }
        },
        BuildDistributions {
            override fun create(model: CIBuildModel, stage: Stage): BaseGradleBuildType {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/model/FunctionalTestBucketGenerator.kt

                }.toMap()
            }.toMap()
    
            val result = mutableMapOf<TestCoverage, List<SmallSubprojectBucket>>()
            for (stage in model.stages) {
                for (testCoverage in stage.functionalTests) {
                    if (testCoverage.testType !in listOf(TestType.allVersionsCrossVersion, TestType.quickFeedbackCrossVersion, TestType.soak)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 17:04:41 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top