Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 403 for stage1 (0.31 sec)

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

    package configurations
    
    import model.CIBuildModel
    import model.Stage
    
    class CompileAll(model: CIBuildModel, stage: Stage) : BaseGradleBuildType(stage = stage, init = {
        id(buildTypeId(model))
        name = "Compile All"
        description = "Compiles all production/test source code and warms up the build cache"
    
        features {
            publishBuildStatusToGithub(model)
        }
    
        applyDefaults(
            model,
            this,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:52:00 UTC 2023
    - 999 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. .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)
  6. 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)
  7. .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)
  8. tensorflow/compiler/jit/get_compiler_ir.h

    enum class CompilerArgSource {
      TENSOR_SPEC,
      CONCRETE_INPUT,
    };
    
    // Returns the IR format of the selected stage for a given function `func_name`
    // using library runtime `runtime` on a device `dev` with given
    // `inputs_arg_shape_and_dtype` and `input_handles`.
    absl::StatusOr<std::string> GetCompilerIr(
        IrExportStage stage, ProcessFunctionLibraryRuntime* pflr,
        absl::string_view func_name, Device* dev, EagerContext* context,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/fuzz/FuzzReader/invalid-proc-state

    Carlos Amedee <******@****.***> 1715265901 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 221 bytes
    - Viewed (0)
  10. .github/workflows/stale-issues.yml

              exempt-issue-labels: 'override-stale'
              #Comma separated list of labels that can be assigned to PRs to exclude them from being marked as stale
              exempt-pr-labels: "override-stale"
              #Limit the No. of API calls in one run default value is 30.
              operations-per-run: 1000
              days-before-issue-stale: 180
              days-before-issue-close: 365
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 23 20:04:38 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top