Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 116 for wastage (0.15 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/util/internal/DefaultGradleVersion.java

        }
    
        static final class Stage implements Comparable<Stage> {
            final int stage;
            final int number;
            final Character patchNo;
    
            private Stage(int stage, int number, Character patchNo) {
                this.stage = stage;
                this.number = number;
                this.patchNo = patchNo;
            }
    
            static Stage from(int stage, String stageString) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/execution/ResidualProgramCompilerTest.kt

                expectedStage1Output = "stage 1 buildscript\nstage 1 plugins\n"
            )
        }
    
        @Test
        fun `Dynamic(Static(Eval(pluginManagement, CloseTargetScope)))`() {
            val fragment =
                fragment("pluginManagement", """println("stage 1")""")
    
            val stage2 =
                fragment.source.map {
                    text("""println("stage 2")""")
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 13:09:45 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  3. .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)
  4. .teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt

        override
        fun createPerformanceTestsFor(model: CIBuildModel, stage: Stage, performanceTestCoverage: PerformanceTestCoverage, bucketIndex: Int): PerformanceTest = createPerformanceTest(
            model,
            performanceTestCoverage,
            stage,
            bucketIndex,
            "Performance tests for $testProject",
            mapOf(testProject to scenarios)
        )
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 19 11:22:56 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/audit/policy/checker_test.go

    	var testCases = []struct {
    		s1, s2, exp []audit.Stage
    	}{
    		{
    			[]audit.Stage{},
    			[]audit.Stage{},
    			[]audit.Stage{},
    		},
    		{
    			[]audit.Stage{audit.StageRequestReceived},
    			[]audit.Stage{},
    			[]audit.Stage{audit.StageRequestReceived},
    		},
    		{
    			[]audit.Stage{audit.StageRequestReceived},
    			[]audit.Stage{audit.StageRequestReceived},
    			[]audit.Stage{audit.StageRequestReceived},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 12 15:06:14 UTC 2021
    - 15.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit_test.go

    			for i, expect := range test.expected {
    				event := events[i]
    				if event.User.Username != "admin" {
    					t.Errorf("Unexpected username: %s", event.User.Username)
    				}
    				if event.Stage != expect.Stage {
    					t.Errorf("Unexpected Stage: %s", event.Stage)
    				}
    				if event.Verb != expect.Verb {
    					t.Errorf("Unexpected Verb: %s", event.Verb)
    				}
    				if event.RequestURI != expect.RequestURI {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/get_compiler_ir.cc

                                              stream_executor::Stream* stream,
                                              IrExportStage stage) {
      auto is_tfrt_tpu_supported_stage = [](IrExportStage stage) {
        return stage == IrExportStage::HLO ||
               stage == IrExportStage::HLO_NO_METADATA ||
               stage == IrExportStage::HLO_SERIALIZED;
      };
      // TODO(b/238830423): support GetCompilerIr on TFRT TPU device for stages
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_block.go

     - SetUpDevice calls CSI's NodeStageVolume and stage a volume to its staging path,
     - MapPodDevice calls CSI's NodePublishVolume and publish a volume to its publish path,
     - UnmapPodDevice calls CSI's NodeUnpublishVolume and unpublish a volume from its publish path,
     - TearDownDevice calls CSI's NodeUnstageVolume and unstage a volume from its staging path.
    
    These methods are called by below sequences:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 11 06:07:40 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/apiserver/pkg/apis/audit/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: Tue Oct 03 09:18:23 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top