Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 308 for wastage (0.19 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/NoDataCompileOperation.java

    public class NoDataCompileOperation implements CompileOperation<Object> {
    
        private final String id;
        private final String stage;
        private final Transformer transformer;
    
        public NoDataCompileOperation(String id, String stage, Transformer transformer) {
            this.id = id;
            this.stage = stage;
            this.transformer = transformer;
        }
    
        @Override
        public String getId() {
            return id;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 27 19:54:22 UTC 2019
    - 1.6K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/FunctionalTest.kt

        val testCoverage: TestCoverage,
        stage: Stage,
        parallelizationMethod: ParallelizationMethod = ParallelizationMethod.None,
        subprojects: List<String> = listOf(),
        extraParameters: String = "",
        maxParallelForks: String = "%maxParallelForks%",
        extraBuildSteps: BuildSteps.() -> Unit = {},
        preBuildSteps: BuildSteps.() -> Unit = {}
    ) : BaseGradleBuildType(stage = stage, init = {
        this.name = name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 05:47:35 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/configurations/CheckLinks.kt

    package configurations
    
    import model.CIBuildModel
    import model.Stage
    
    class CheckLinks(model: CIBuildModel, stage: Stage) : BaseGradleBuildType(stage = stage, failStage = false, init = {
        id("${model.projectId}_CheckLinks")
        name = "CheckLinks"
        description = "Check links in documentations"
    
        applyDefaults(
            model,
            this,
            ":docs:checkLinks",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 16 06:11:31 UTC 2021
    - 502 bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/FactoryBackedCompileOperation.java

        private final String id;
        private final String stage;
        private final Transformer transformer;
        private final Factory<T> dataFactory;
        private final Serializer<T> serializer;
    
        public FactoryBackedCompileOperation(String id, String stage, Transformer transformer, Factory<T> dataFactory, Serializer<T> serializer) {
            this.id = id;
            this.stage = stage;
            this.transformer = transformer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 01 11:44:55 UTC 2018
    - 1.8K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/configurations/DocsTest.kt

    }
    
    class DocsTest(
        model: CIBuildModel,
        stage: Stage,
        os: Os,
        testJava: JvmCategory,
        index: Int,
        docsTestType: DocsTestType,
        testSplitType: TestSplitType,
        testClasses: List<String>,
    ) : BaseGradleBuildType(stage = stage, init = {
    
        id("${model.projectId}_${docsTestType.docsTestName}_${os.asName()}_$index")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/projects/FunctionalTestProject.kt

    import model.FunctionalTestBucketProvider
    import model.Stage
    import model.TestCoverage
    
    const val DEFAULT_FUNCTIONAL_TEST_BUCKET_SIZE = 50
    const val DEFAULT_LINUX_FUNCTIONAL_TEST_BUCKET_SIZE = 20
    
    class FunctionalTestProject(
        val model: CIBuildModel,
        functionalTestBucketProvider: FunctionalTestBucketProvider,
        val testCoverage: TestCoverage,
        val stage: Stage
    ) : Project({
        this.id(testCoverage.asId(model))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 805 bytes
    - Viewed (0)
  7. 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)
  8. subprojects/core/src/main/java/org/gradle/initialization/VintageBuildModelController.java

            state.inState(Stage.Configured, () -> taskExecutionPreparer.scheduleRequestedTasks(gradle, selector, plan));
        }
    
        private void prepareSettings() {
            state.transitionIfNotPreviously(Stage.Created, Stage.SettingsLoaded, () -> settingsPreparer.prepareSettings(gradle));
        }
    
        private void prepareProjects() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 02 04:13:57 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  9. platforms/jvm/language-groovy/src/testFixtures/resources/org/gradle/groovy/compile/AbstractBasicGroovyCompilerIntegrationSpec/compileJavaFx8Code/src/main/groovy/FxApp.groovy

    import javafx.application.Application
    import javafx.stage.Stage
    
    class FxApp extends Application {
    
        @Override
        void start(Stage stage) {
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 152 bytes
    - Viewed (0)
  10. .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)
Back to top