Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 236 for emitItem (0.11 sec)

  1. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/Problems.java

    @Incubating
    @ServiceScope(Scope.BuildTree.class)
    public interface Problems {
    
        /**
         * Return a problem reporter associated with a plugin.
         * <p>
         * The namespace provides separation for identical problems emitted from different components (Gradle core and third-party plugins).
         *
         * @return The problem reporter.
         * @since 8.6
         */
        ProblemReporter forNamespace(String namespace);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/integTest/groovy/org/gradle/testing/TestExecutionBuildOperationsContinuousIntegrationTest.groovy

            waitForBuild()
            stopGradle()
            afterBuild()
    
            then: "test build operations are emitted in expected hierarchy"
            def testRootOperations = operations.all(ExecuteTestBuildOperationType) {
                it.details.testDescriptor.name.startsWith("Gradle Test Run")
            }
            testRootOperations.size() == 2
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  3. test/makemap.go

    func main() {
    	sink = make(T, -1)            // ERROR "negative size argument in make.*|must not be negative"
    	sink = make(T, uint64(1<<63)) // ERROR "size argument too large in make.*|overflows int"
    
    	// Test that errors are emitted at call sites, not const declarations
    	const x = -1
    	sink = make(T, x) // ERROR "negative size argument in make.*|must not be negative"
    	const y = uint64(1 << 63)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 23 00:41:01 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationNotificationListener.java

    import org.gradle.internal.scan.UsedByScanPlugin;
    
    /**
     * A listener to notifications about build events.
     *
     * Implementations are thread safe and can be signalled concurrently.
     * 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.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/core-runtime/build-operations/src/main/java/org/gradle/internal/operations/notify/BuildOperationProgressNotification.java

        /**
         * The operation ID.
         *
         * Must be logically equal to a {@link BuildOperationStartedNotification#getNotificationOperationId()} value
         * of a previously emitted started notification.
         */
        Object getNotificationOperationId();
    
        /**
         * The time that the event occurred.
         *
         * @since 4.4
         */
        long getNotificationOperationProgressTimestamp();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 14:19:43 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/events/v1beta1/generated.proto

      // series is data about the Event series this event represents or nil if it's a singleton Event.
      // +optional
      optional EventSeries series = 3;
    
      // reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.
      // This field cannot be empty for new Events.
      // +optional
      optional string reportingController = 4;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/events/v1/types_swagger_doc_generated.go

    	"series":                   "series is data about the Event series this event represents or nil if it's a singleton Event.",
    	"reportingController":      "reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. This field cannot be empty for new Events.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/events/v1beta1/generated.proto

      // series is data about the Event series this event represents or nil if it's a singleton Event.
      // +optional
      optional EventSeries series = 3;
    
      // reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`.
      // This field cannot be empty for new Events.
      // +optional
      optional string reportingController = 4;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/events/v1beta1/types_swagger_doc_generated.go

    	"series":                   "series is data about the Event series this event represents or nil if it's a singleton Event.",
    	"reportingController":      "reportingController is the name of the controller that emitted this Event, e.g. `kubernetes.io/kubelet`. This field cannot be empty for new Events.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. src/internal/trace/raw/event.go

    	Ev      event.Type
    	Args    []uint64
    	Data    []byte
    }
    
    // String returns the canonical string representation of the event.
    //
    // This format is the same format that is parsed by the TextReader
    // and emitted by the TextWriter.
    func (e *Event) String() string {
    	spec := e.Version.Specs()[e.Ev]
    
    	var s strings.Builder
    	s.WriteString(spec.Name)
    	for i := range spec.Args {
    		s.WriteString(" ")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top