Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 308 for wastage (0.63 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Program.kt

     * - in stage 1, the [Buildscript] and [Plugins] programs are executed and their execution
     *   is assumed to affect the classpath available to the stage 2 program;
     * - in stage 2, the remaining [Script] must be evaluated against the dynamically resolved classpath and,
     *   for that reason, [stage 2 programs][Script] can only be specialized after stage 1 executes at least once;
     */
    sealed class Program {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/egressselector/metrics/metrics.go

    			Name:           "dial_failure_count",
    			Help:           "Dial failure count, labeled by the protocol (http-connect or grpc), transport (tcp or uds), and stage (connect or proxy). The stage indicates at which stage the dial failed",
    			StabilityLevel: metrics.ALPHA,
    		},
    		[]string{"protocol", "transport", "stage"},
    	)
    
    	legacyregistry.MustRegister(starts)
    	legacyregistry.MustRegister(latencies)
    	legacyregistry.MustRegister(failures)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 01 23:36:51 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/audit/policy/checker.go

    	}
    	return &policyRuleEvaluator{*policy}
    }
    
    func unionStages(stageLists ...[]audit.Stage) []audit.Stage {
    	m := make(map[audit.Stage]bool)
    	for _, sl := range stageLists {
    		for _, s := range sl {
    			m[s] = true
    		}
    	}
    	result := make([]audit.Stage, 0, len(m))
    	for key := range m {
    		result = append(result, key)
    	}
    	return result
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 02 22:24:14 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/audit/validation/validation_test.go

    			UserGroups: []string{"developers"},
    			NonResourceURLs: []string{
    				"/logs*",
    				"/healthz*",
    				"/metrics",
    				"*",
    			},
    		}, { // Omit RequestReceived stage
    			Level: audit.LevelMetadata,
    			OmitStages: []audit.Stage{
    				audit.Stage("RequestReceived"),
    			},
    		},
    	}
    	successCases := []audit.Policy{}
    	for _, rule := range validRules {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 07:48:42 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    	// is sent. This stage is only generated for long-running requests (e.g. watch).
    	StageResponseStarted Stage = "ResponseStarted"
    	// The stage for events generated once the response body has been completed, and no more bytes
    	// will be sent.
    	StageResponseComplete Stage = "ResponseComplete"
    	// The stage for events generated when a panic occurred.
    	StagePanic Stage = "Panic"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  6. testing/soak/src/integTest/kotlin/org/gradle/kotlin/dsl/caching/fixtures/KotlinDslCacheFixtures.kt

        val expectedCount = if (stage.enabled) count else 0
        val logStatement = "${actionDisplayName.uppercaseFirstChar()} ${stage.templateId} from ${stage.source}"
        val observedCount = output.occurrenceCountOf(logStatement)
        require(observedCount == expectedCount) {
            "Expected $expectedCount but got $observedCount\n" +
                "  Looking for statement: $logStatement\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. .teamcity/src/main/kotlin/configurations/BaseGradleBuildType.kt

    package configurations
    
    import jetbrains.buildServer.configs.kotlin.BuildType
    import model.Stage
    
    open class BaseGradleBuildType(
        val stage: Stage? = null,
        val failStage: Boolean = true,
        init: BaseGradleBuildType.() -> Unit = {}
    ) : BuildType() {
        init {
            this.init()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 298 bytes
    - Viewed (0)
  8. 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)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit.go

    	for _, stage := range omitStages {
    		if ev.Stage == stage {
    			return true
    		}
    	}
    
    	switch {
    	case ev.Stage == auditinternal.StageRequestReceived:
    		ev.StageTimestamp = metav1.NewMicroTime(ev.RequestReceivedTimestamp.Time)
    	case ev.Stage == auditinternal.StageResponseComplete:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/configurations/TestPerformanceTest.kt

    import common.killProcessStep
    import common.skipConditionally
    import jetbrains.buildServer.configs.kotlin.BuildSteps
    import model.CIBuildModel
    import model.Stage
    
    class TestPerformanceTest(model: CIBuildModel, stage: Stage) : BaseGradleBuildType(stage, init = {
        val os = Os.LINUX
        val buildTypeThis = this
        val testProject = "smallJavaMultiProject"
    
        fun BuildSteps.gradleStep(tasks: List<String>) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top