Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 420 for finishes (0.23 sec)

  1. src/cmd/go/go_unix_test.go

    	// it should finish up and exit with a nonzero status,
    	// not have to be killed with SIGKILL.
    	cancel()
    
    	io.Copy(stdout, r)
    	if stdout.Len() > 0 {
    		t.Logf("stdout:\n%s", stdout)
    	}
    	err = cmd.Wait()
    
    	ee, _ := err.(*exec.ExitError)
    	if ee == nil {
    		t.Fatalf("unexpectedly finished with nonzero status")
    	}
    	if len(ee.Stderr) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 19 16:17:55 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonStopClientTest.groovy

            1 * connection.dispatch({it instanceof Finished})
            1 * connection.stop()
    
            and:
            1 * connector.maybeConnect(daemon2) >>> connection
            _ * connection.daemon >> daemon2
            1 * connection.dispatch({it instanceof StopWhenIdle})
            1 * connection.receive() >> new Success(null)
            1 * connection.dispatch({it instanceof Finished})
            1 * connection.stop()
            0 * _
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  3. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationListener.java

     * However, a finished signal must not be emitted before the signal of the
     * corresponding started event has returned.
     *
     * Implementations may retain the notification values beyond the method that passed them.
     * Started notifications maybe held until a corresponding finished notification, and slightly after.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleHandle.java

         */
        GradleHandle abort();
    
        /**
         * Cancel a build that was started as a cancellable build by closing stdin.  Does not block until the build has finished.
         */
        GradleHandle cancel();
    
        /**
         * Cancel a build that was started as a cancellable build by sending EOT (ctrl-d).  Does not block until the build has finished.
         */
        GradleHandle cancelWithEOT();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  5. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/TestListener.java

         * @param suite The suite whose tests are about to be executed.
         */
        void beforeSuite(TestDescriptor suite);
    
        /**
         * Called after a test suite is finished.
         * @param suite The suite whose tests have finished being executed.
         * @param result The aggregate result for the suite.
         */
        void afterSuite(TestDescriptor suite, TestResult result);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. src/log/slog/example_test.go

    					return slog.Attr{}
    				}
    				return a
    			},
    		}),
    	)
    	logger.Info("finished",
    		slog.Group("req",
    			slog.String("method", r.Method),
    			slog.String("url", r.URL.String())),
    		slog.Int("status", http.StatusOK),
    		slog.Duration("duration", time.Second))
    
    	// Output:
    	// level=INFO msg=finished req.method=GET req.url=localhost status=200 duration=1s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 17 14:56:30 UTC 2023
    - 857 bytes
    - Viewed (0)
  7. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/DefaultBuildOperationListenerManager.java

                }
            }
    
            @Override
            public void finished(BuildOperationDescriptor buildOperation, OperationFinishEvent finishEvent) {
                List<? extends BuildOperationListener> listeners = DefaultBuildOperationListenerManager.this.listeners;
                for (int i = listeners.size() - 1; i >= 0; --i) {
                    listeners.get(i).finished(buildOperation, finishEvent);
                }
            }
        };
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/TestFinishEvent.java

    import org.gradle.tooling.events.FinishEvent;
    
    /**
     * An event that informs about a test having finished its execution. You can query the result of the
     * test using {@link #getResult()}.
     *
     * @since 2.4
     */
    public interface TestFinishEvent extends TestProgressEvent, FinishEvent {
    
        /**
         * Returns the result of the finished test operation. Currently, the result will be one of the following
         * sub-types:
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. pkg/controller/job/backoff_utils.go

    		p2 := pods[j]
    		p1FinishTime := getFinishedTime(p1)
    		p2FinishTime := getFinishedTime(p2)
    
    		return p1FinishTime.Before(p2FinishTime)
    	})
    }
    
    // Returns the pod finish time using the following lookups:
    // 1. if all containers finished, use the latest time
    // 2. if the pod has Ready=False condition, use the last transition time
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 07:46:41 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/CancellationCrossVersionSpec.groovy

                build.run(resultHandler)
                sync.waitForAllPendingCalls(resultHandler)
                cancel.cancel()
                sync.releaseAll()
                resultHandler.finished()
            }
    
            then:
            buildWasCancelled(resultHandler)
        }
    
        def "can cancel build during configuration phase"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
Back to top