Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 83 for runPass (0.12 sec)

  1. cmd/kubeadm/app/cmd/phases/workflow/runner_test.go

    }
    
    func TestRunHandleErrors(t *testing.T) {
    	var w = Runner{
    		Phases: []Phase{
    			phaseBuilder2("foo", runConditionPass, runPass),
    			phaseBuilder2("bar", runConditionPass, runFails),
    			phaseBuilder2("baz", runConditionFails, runPass),
    		},
    	}
    
    	var usecases = []struct {
    		name          string
    		options       RunnerOptions
    		expectedError bool
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 20 20:03:45 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/java/modules-with-transform/tests/runTask.sample.conf

    commands: [{
        executable: gradle
        args: run "--args=-debug" -q
        expected-output-file: runTask.out
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 110 bytes
    - Viewed (0)
  3. releasenotes/notes/fix-custom-injection-runas.yaml

    docs:
    - 'https://istio.io/latest/docs/setup/additional-setup/sidecar-injection/#customizing-injection'
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:59:39 UTC 2024
    - 314 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/java/modules-multi-project-with-integration-tests/tests/runTask.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 551 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/java/modules-with-transform/tests/runTask.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 251 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/incubating/java/modules-multi-project-with-integration-tests/tests/runTask.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 551 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/java/modules-multi-project/tests/runTask.out

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 540 bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/action/ClientProvidedPhasedAction.java

        private final boolean runTasks;
    
        public ClientProvidedPhasedAction(StartParameterInternal startParameter, SerializedPayload phasedAction, boolean runTasks, BuildEventSubscriptions clientSubscriptions) {
            super(clientSubscriptions);
            this.startParameter = startParameter;
            this.phasedAction = phasedAction;
            this.runTasks = runTasks;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/SystemPropertyPropagationCrossVersionTest.groovy

            }
    
            when:
            runTask { withSystemProperties('mySystemProperty' : 'ignored') }
    
            then:
            hasSystemProperty('mySystemProperty', 'defined in the client JVM')
        }
    
        def "Client JVM system properties appear in the build if withSystemProperties() is not called"() {
            when:
            runTask()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 06:17:20 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/ws/RealWebSocketTest.kt

        taskFaker.runTasks()
        client.listener.assertFailure(IOException::class.java, "source is closed")
        assertThat(client.webSocket!!.send("Hello!")).isFalse()
      }
    
      @Test
      fun socketClosedDuringMessageKillsWebSocket() {
        client2Server.source.close()
        assertThat(client.webSocket!!.send("Hello!")).isTrue()
        taskFaker.runTasks()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 01:59:58 UTC 2024
    - 18.5K bytes
    - Viewed (0)
Back to top