Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,291 for _run (0.1 sec)

  1. pkg/controlplane/apiserver/options/options_test.go

    		"--contention-profiling=true",
    		"--egress-selector-config-file=/var/run/kubernetes/egress-selector/connectivity.yaml",
    		"--enable-aggregator-routing=true",
    		"--enable-priority-and-fairness=false",
    		"--enable-logs-handler=false",
    		"--etcd-keyfile=/var/run/kubernetes/etcd.key",
    		"--etcd-certfile=/var/run/kubernetes/etcdce.crt",
    		"--etcd-cafile=/var/run/kubernetes/etcdca.crt",
    		"--http2-max-streams-per-connection=42",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 17:57:37 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. pkg/test/framework/test.go

    	//
    	// Since both T1 and T2 are non-parallel, they are run synchronously: T1 followed by T2. After T1 exits,
    	// T1a and T1b are run asynchronously with each other. After T1a and T1b complete, T2 is then run in the
    	// same way: T2 exits, then T2a and T2b are run asynchronously to completion.
    	RunParallel(fn func(t TestContext))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. src/internal/runtime/exithook/hooks.go

    	_ "unsafe" // for linkname
    )
    
    // A Hook is a function to be run at program termination
    // (when someone invokes os.Exit, or when main.main returns).
    // Hooks are run in reverse order of registration:
    // the first hook added is the last one run.
    type Hook struct {
    	F            func() // func to run
    	RunOnFailure bool   // whether to run on non-zero exit code
    }
    
    var (
    	locked  atomic.Int32
    	runGoid atomic.Uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemsServiceIntegTest.groovy

        }
    
        def "problems are reported through the Problems API"() {
            given:
            buildFile """
                gradle.buildFinished { }
    
                task run
            """
    
            when:
            configurationCacheRunLenient 'run'
    
            then:
            problems.assertResultHasProblems(result) {
                withTotalProblemsCount(1)
                withUniqueProblems(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  5. platforms/extensibility/plugin-development/src/integTest/groovy/org/gradle/plugin/devel/tasks/RuntimePluginValidationTrait.groovy

            }
            if (expectedFailures) {
                fails "run"
            } else {
                succeeds "run"
            }
    
            switch (expectedFailures.size()) {
                case 0:
                    break
                case 1:
                    failure.assertHasDescription("A problem was found with the configuration of task ':run' (type 'MyTask').")
                    break
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 14:30:05 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/ScalaLibraryInitIntegrationTest.groovy

            commonJvmFilesGenerated(scriptDsl)
    
            when:
            run("build")
    
            then:
            assertTestPassed("org.example.LibrarySuite", "someLibraryMethod is always true")
    
            where:
            scriptDsl << ScriptDslFixture.SCRIPT_DSLS
        }
    
        def "creates sample source with package and #scriptDsl build scripts"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/BuildPhaseOperationEventCrossVersionTest.groovy

            if (progressEvents[5].toString() == "Build phase: Run tasks started") {
                // Run root build tasks
                assertStartEventHas(progressEvents[5], "RUN_WORK", 0)
                // Run included build task
                assertStartEventHas(progressEvents[6], "RUN_WORK", 1)
            } else {
                // Run included build task
                assertStartEventHas(progressEvents[5], "RUN_WORK", 1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 10:41:50 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. pkg/test/framework/suite_test.go

    	var setupCalled bool
    	s.Setup(func(c resource.Context) error {
    		setupCalled = true
    		return fmt.Errorf("can't run this")
    	})
    	s.Run()
    
    	g.Expect(setupCalled).To(BeTrue())
    	g.Expect(runCalled).To(BeFalse())
    }
    
    func TestSuite_Cleanup(t *testing.T) {
    	t.Run("cleanup", func(t *testing.T) {
    		defer cleanupRT()
    		g := NewWithT(t)
    
    		var cleanupCalled bool
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. tests/integration/operator/install_test.go

    func TestInstallCommandInput(t *testing.T) {
    	framework.
    		NewTest(t).
    		Run(func(ctx framework.TestContext) {
    			istioCtl := istioctl.NewOrFail(ctx, ctx, istioctl.Config{})
    			testCases := []installTestCase{
    				{
    					command:   []string{"install", "--dry-run", "--revision", ""},
    					errString: InvalidRevision,
    				},
    				{
    					command:   []string{"install", "--dry-run", "--revision", "1.8.0"},
    					errString: InvalidRevision,
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 14:30:43 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  10. .github/workflows/ci.yml

            shell: bash
            run: ./mvnw -B -Dorg.slf4j.simpleLogger.log.org.apache.maven.cli.transfer.Slf4jMavenTransferListener=warn install -U -DskipTests=true -f $ROOT_POM
          - name: 'Test'
            shell: bash
            run: ./mvnw -B -P!standard-with-extra-repos verify -U -Dmaven.javadoc.skip=true -f $ROOT_POM
          - name: 'Print Surefire reports'
            # Note: Normally a step won't run if the job has failed, but this causes it to
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 16:25:39 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top