Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 246 for Runner (0.12 sec)

  1. build-logic/packaging/src/test/kotlin/gradlebuild/instrumentation/InstrumentationMetadataPluginTest.kt

            }
        }
    
        private
        fun runner() = GradleRunner.create()
            .withProjectDir(projectRoot)
            .withPluginClasspath()
            .forwardOutput()
            .withArguments(":distribution:mergeInstrumentedSuperTypes", ":distribution:mergeUpgradedProperties", "--stacktrace")
    
        private
        fun assertSucceeds() {
            runner().build()
        }
    
        private
        fun createProject() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 10:55:53 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BuildScanPluginSmokeTest.groovy

    import org.gradle.testkit.runner.BuildResult
    import org.gradle.testkit.runner.TaskOutcome
    import org.gradle.util.GradleVersion
    import org.gradle.util.internal.VersionNumber
    
    import java.nio.charset.StandardCharsets
    import java.util.concurrent.ConcurrentHashMap
    
    // https://plugins.gradle.org/plugin/com.gradle.develocity
    class BuildScanPluginSmokeTest extends AbstractSmokeTest {
    
        enum CI {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AbstractSmokeTest.groovy

    import org.gradle.internal.featurelifecycle.LoggingDeprecatedFeatureHandler
    import org.gradle.test.fixtures.dsl.GradleDsl
    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.testkit.runner.GradleRunner
    import org.gradle.testkit.runner.internal.DefaultGradleRunner
    import org.gradle.util.internal.TextUtil
    import spock.lang.Specification
    import spock.lang.TempDir
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 08:14:32 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/util/concurrent/InterruptibleTask.java

      @Override
      public final void run() {
        /*
         * Set runner thread before checking isDone(). If we were to check isDone() first, the task
         * might be cancelled before we set the runner thread. That would make it impossible to
         * interrupt, yet it will still run, since interruptTask will leave the runner value null,
         * allowing the CAS below to succeed.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Sep 29 21:34:48 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/declarative-dsl-tooling-builders/src/crossVersionTest/groovy/org/gradle/declarative/dsl/tooling/builders/r89/DeclarativeDslToolingModelsCrossVersionTest.groovy

    import org.gradle.internal.declarativedsl.evaluator.main.SimpleAnalysisEvaluator
    import org.gradle.internal.declarativedsl.evaluator.runner.AnalysisStepResult
    import org.gradle.internal.declarativedsl.evaluator.runner.EvaluationResult
    import org.gradle.internal.declarativedsl.language.SourceIdentifier
    import org.gradle.internal.declarativedsl.objectGraph.AssignmentResolver.AssignmentResolutionResult.Assigned
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 11:32:11 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/upgrade/node.go

    	options.AddPatchesFlag(cmd.Flags(), &nodeOptions.patchesDir)
    
    	// initialize the workflow runner with the list of phases
    	nodeRunner.AppendPhase(phases.NewPreflightPhase())
    	nodeRunner.AppendPhase(phases.NewControlPlane())
    	nodeRunner.AppendPhase(phases.NewKubeletConfigPhase())
    
    	// sets the data builder function, that will be used by the runner
    	// both when running the entire workflow or single phases
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/reset.go

    		},
    	}
    
    	AddResetFlags(cmd.Flags(), resetOptions)
    	// initialize the workflow runner with the list of phases
    	resetRunner.AppendPhase(phases.NewPreflightPhase())
    	resetRunner.AppendPhase(phases.NewRemoveETCDMemberPhase())
    	resetRunner.AppendPhase(phases.NewCleanupNodePhase())
    
    	// sets the data builder function, that will be used by the runner
    	// both when running the entire workflow or single phases
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 12:26:58 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/AlreadyOnClasspathPluginUseIntegrationTest.groovy

    /*
     * Copyright 2017 the original author or authors.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildModelControllerServices.kt

                val projectDependencyListener = listenerManager.getBroadcaster(ToolingModelProjectDependencyListener::class.java)
                val runner = IntermediateBuildActionRunner(buildOperationExecutor, buildModelParameters, "Tooling API intermediate model")
                return DefaultIntermediateToolingModelProvider(runner, parameterCarrierFactory, projectDependencyListener)
            }
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/NativeServicesIntegrationTest.groovy

                import spock.lang.Specification
                import spock.lang.TempDir
                import org.gradle.testkit.runner.GradleRunner
                import org.gradle.testkit.runner.TaskOutcome
    
                class TestkitTestPluginFunctionalTest extends Specification {
                    @TempDir
                    private File projectDir
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top