Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 143 for stage1 (0.2 sec)

  1. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/PartialEvaluatorTest.kt

                        Static(
                            SetupEmbeddedKotlin,
                            ApplyPluginRequestsOf(program.stage1),
                        ),
                        body
                    )
                )
            )
        }
    
        @Test
        fun `Stage1 only Program is unsupported`() {
            ProgramTarget.values().forEach { programTarget ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 38.9K bytes
    - Viewed (0)
  2. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/ScriptCachingIntegrationTest.kt

                    compilationTrace(projectRoot) {
                        assertScriptCompile(settingsFile.stage1)
                        assertNoScriptCompile(settingsFile.stage2)
                        assertNoScriptCompile(rootBuildFile.stage1)
                        assertScriptCompile(rootBuildFile.stage2)
                    }
                    // then: single compilation and classloading
                    compilationCache {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:33:23 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompilerTest.kt

                """
                    plugins { println("stage 1") }
                    print("stage 2")
                """.replaceIndent()
            )
    
            val fragment = source.fragment(0..6, 8..29)
            val stage1 = Program.Plugins(fragment)
            val stage2 = source.map { it.erase(listOf(fragment.range)) }
            val stagedProgram = Dynamic(
                Static(ApplyPluginRequestsOf(stage1), ApplyBasePlugins),
                stage2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompiler.kt

                    ?: compiledScriptClassName
            }
        )
    
        /**
         * Stage descriptions for build operations.
         *
         * Changes to these constants must be coordinated with the GE team.
         */
        private
        object StableDisplayNameFor {
    
            const val stage1 = "CLASSPATH"
    
            const val stage2 = "BODY"
        }
    
        private
        val stage1ScriptDefinition
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Interpreter.kt

        }
    }
    
    
    @VisibleForTesting
    fun templateIdFor(programTarget: ProgramTarget, programKind: ProgramKind, stage: String): String =
        programTarget.name + "/" + programKind.name + "/" + stage
    
    
    private
    fun classLoaderScopeIdFor(scriptPath: String, stage: String) =
        "kotlin-dsl:$scriptPath:$stage"
    
    
    private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 19:59:56 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/audit/policy/checker_test.go

    	test(t, "namespaced", audit.LevelNone, stages, stages, "serviceAccounts")
    	test(t, "namespaced", audit.LevelRequestResponse, stages, stages, "getPods")
    	test(t, "namespaced", audit.LevelNone, stages, stages, "getClusterRoles")
    	test(t, "namespaced", audit.LevelNone, stages, stages, "getLogs")
    	test(t, "namespaced", audit.LevelNone, stages, stages, "getMetrics")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 12 15:06:14 UTC 2021
    - 15.1K bytes
    - Viewed (0)
  7. .teamcity/src/test/kotlin/CIConfigIntegrationTests.kt

                val stage = model.stages[stageNumber - 1]
                val prevStage = if (stageNumber > 1) model.stages[stageNumber - 2] else null
    
                if (stage.runsIndependent) {
                    return@forEach
                }
    
                assertEquals(
                    stage.specificBuilds.size + stage.functionalTests.size + stage.performanceTests.size + stage.docsTests.size + (if (prevStage != null) 1 else 0),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 10:00:06 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/endpoints/audit_test.go

    		}
    	}
    	expectedStages := func(stages ...auditinternal.Stage) eventCheck {
    		return func(events []*auditinternal.Event) error {
    			if len(stages) != len(events) {
    				return fmt.Errorf("expected %d stages, but got %d events", len(stages), len(events))
    			}
    			for i, stage := range stages {
    				if events[i].Stage != stage {
    					return fmt.Errorf("expected stage %q, got %q", stage, events[i].Stage)
    				}
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 14 23:04:34 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    	LevelRequestResponse Level = "RequestResponse"
    )
    
    // Stage defines the stages in request handling that audit events may be generated.
    type Stage string
    
    // Valid audit stages.
    const (
    	// The stage for events generated as soon as the audit handler receives the request, and before it
    	// is delegated down the handler chain.
    	StageRequestReceived Stage = "RequestReceived"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/apis/audit/types.go

    	LevelRequestResponse Level = "RequestResponse"
    )
    
    // Stage defines the stages in request handling that audit events may be generated.
    type Stage string
    
    // Valid audit stages.
    const (
    	// The stage for events generated as soon as the audit handler receives the request, and before it
    	// is delegated down the handler chain.
    	StageRequestReceived Stage = "RequestReceived"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top