Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 403 for stage1 (0.27 sec)

  1. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/fixtures/CompilationTrace.kt

                "Unexpected operation `$description`!"
            }
        }
    
        private
        fun operationDescription(stage: CachedScript.CompilationStage) =
            "Compile script ${stage.file.name} (${descriptionOf(stage)})"
    
        private
        fun descriptionOf(stage: CachedScript.CompilationStage) =
            if (stage.stage == "stage1") "CLASSPATH" else "BODY"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgram.kt

                val source: Program.Plugins? = null
            ) : StageTransition, Instruction()
    
            /**
             * An instruction that marks the transition from stage 1 to stage 2 by causing the
             * target scope to be closed thus making the resolved classpath available to stage 2.
             *
             * A valid [Static] program must contain one and only one [StageTransition] instruction.
             */
            interface StageTransition
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/ExtractPrecompiledScriptPluginPlugins.kt

    
    private
    fun pluginsBlockOf(program: Program): Program.Plugins? =
        when (program) {
            is Program.Plugins -> program
            is Program.Stage1Sequence -> program.plugins
            is Program.Staged -> pluginsBlockOf(program.stage1)
            else -> null
        }
    
    
    private
    fun parse(scriptPlugin: PrecompiledScriptPlugin): Program = ProgramParser.parse(
        ProgramSource(scriptPlugin.scriptFileName, scriptPlugin.scriptText),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  4. 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)
  5. .teamcity/src/main/kotlin/projects/StageProject.kt

                if (smokeTests.size > 1) {
                    buildType(PartialTrigger("All Smoke Tests for ${stage.stageName.stageName}", "Stage_${stage.stageName.id}_SmokeTests", model, smokeTests))
                }
                if (crossVersionTests.size > 1) {
                    buildType(PartialTrigger("All Cross-Version Tests for ${stage.stageName.stageName}", "Stage_${stage.stageName.id}_CrossVersionTests", model, crossVersionTests))
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/audit/policy/util.go

    // InvertStages subtracts the given array of stages from all stages
    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 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 09 16:29:20 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/audit/policy/util_test.go

    )
    
    func TestInvertStages(t *testing.T) {
    	for _, test := range []struct {
    		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,
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 09 22:38:00 UTC 2018
    - 1.9K bytes
    - Viewed (0)
  8. 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)
  9. docs/bigdata/images/image1.png

    image1.png...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 02:34:51 UTC 2019
    - 322.3K bytes
    - Viewed (0)
  10. cluster/gce/gci/mounter/stage-upload.sh

    cleanup() {
        rm -rf "${DOWNLOAD_DIR}"
        rm -rf "${STAGING_DIR}"
        cd "${CWD}"
    }
    
    # Delete temporary directories on exit
    trap cleanup EXIT
    
    mkdir "${ACI_DIR}"
    
    # Convert docker image to aci and stage it
    echo "Downloading docker2aci ${DOCKER2ACI_VERSION}"
    wget "https://github.com/appc/docker2aci/releases/download/${DOCKER2ACI_VERSION}/docker2aci-${DOCKER2ACI_VERSION}.tar.gz" >/dev/null 2>&1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 23 18:27:20 UTC 2020
    - 2.4K bytes
    - Viewed (0)
Back to top