Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,293 for Runner (0.14 sec)

  1. pkg/proxy/ipvs/ipset/ipset.go

    func (runner *runner) FlushSet(set string) error {
    	if _, err := runner.exec.Command(IPSetCmd, "flush", set).CombinedOutput(); err != nil {
    		return fmt.Errorf("error flushing set: %s, error: %v", set, err)
    	}
    	return nil
    }
    
    // DestroySet is used to destroy a named set.
    func (runner *runner) DestroySet(set string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. tools/bug-report/pkg/kubectlcmd/kubectlcmd.go

    }
    
    func NewRunner(activeRqLimit int) *Runner {
    	if activeRqLimit <= 0 {
    		activeRqLimit = defaultActiveRequestLimit
    	}
    	return &Runner{
    		taskSem:            make(chan struct{}, activeRqLimit),
    		runningTasks:       sets.New[string](),
    		runningTasksMu:     sync.RWMutex{},
    		runningTasksTicker: time.NewTicker(reportInterval),
    	}
    }
    
    func (r *Runner) SetClient(client kube.CLIClient) {
    	r.Client = client
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 16 01:18:03 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  3. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerCrossGroovyVersionIntegrationTest.groovy

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testkit.runner
    
    import org.gradle.test.precondition.Requires
    import org.gradle.test.preconditions.IntegTestPreconditions
    import org.gradle.test.preconditions.UnitTestPreconditions
    import org.gradle.testkit.runner.fixtures.NonCrossVersion
    import org.gradle.util.GradleVersion
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docsTest/java/org/gradle/docs/samples/RunNotifierWrapper.java

     * limitations under the License.
     */
    
    package org.gradle.docs.samples;
    
    import org.junit.runner.Description;
    import org.junit.runner.Result;
    import org.junit.runner.notification.Failure;
    import org.junit.runner.notification.RunListener;
    import org.junit.runner.notification.RunNotifier;
    import org.junit.runner.notification.StoppedByUserException;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. platforms/extensibility/test-kit/src/test/groovy/org/gradle/testkit/runner/internal/FeatureCheckBuildResultTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.testkit.runner.internal
    
    import org.gradle.testkit.runner.BuildTask
    import org.gradle.testkit.runner.UnsupportedFeatureException
    import org.gradle.testkit.runner.internal.feature.TestKitFeature
    import org.gradle.util.GradleVersion
    import spock.lang.Specification
    
    import static org.gradle.testkit.runner.TaskOutcome.FAILED
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/AbstractJUnit4TestFailureIntegrationTest.groovy

            file("src/test/java/org/gradle/${className}.java") << """
                package org.gradle;
    
                import org.junit.runner.Description;
                import org.junit.runner.Runner;
                import org.junit.runner.notification.RunNotifier;
    
                public class ${className} extends Runner {
                    private final Class<?> type;
    
                    public BrokenRunnerOrExtension(Class<?> type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/BaseGradleRunnerIntegrationTest.groovy

    import org.gradle.test.fixtures.file.TestFile
    import org.gradle.testkit.runner.fixtures.CustomDaemonDirectory
    import org.gradle.testkit.runner.fixtures.CustomEnvironmentVariables
    import org.gradle.testkit.runner.fixtures.Debug
    import org.gradle.testkit.runner.fixtures.HideEnvVariableValuesInDaemonLog
    import org.gradle.testkit.runner.fixtures.InjectsPluginClasspath
    import org.gradle.testkit.runner.fixtures.InspectsBuildOutput
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:29:03 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/NativeBuildPerformanceTest.groovy

            given:
            runner.tasksToRun = ["assemble"]
            runner.addBuildMutator { settings ->
                new ApplyChangeToNativeSourceFileMutator(new File(settings.getProjectDir(), determineFileToChange(changeType, runner.testProject)))
            }
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/AllExceptIgnoredTestRunnerBuilder.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.tasks.testing.junit;
    
    import org.gradle.internal.Cast;
    import org.junit.internal.builders.AllDefaultPossibilitiesBuilder;
    import org.junit.internal.builders.IgnoredBuilder;
    import org.junit.internal.builders.JUnit4Builder;
    import org.junit.runner.Runner;
    import org.junit.runners.BlockJUnit4ClassRunner;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/NativeBuildDependentsPerformanceTest.groovy

            // The generated dependency graph is rather complex and deep, unrealistic?
            // 'nativeDependentsDeep' | 'libA0:buildDependentsLibA0'
            given:
            runner.tasksToRun = [task]
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top