Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 377 for spent (0.23 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/problems/ProblemAggregation.java

    
    import org.gradle.api.Incubating;
    
    import java.util.List;
    
    /**
     * Represents a list of aggregated problems. These are sent at the end of the build.
     * All Problems that occurred more than once during the build are aggregated and sent as a {@link ProblemAggregation}.
     * They won't be sent in between the build only the first one.
     *
     * @since 8.6
     */
    @Incubating
    public interface ProblemAggregation {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 07:24:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. src/encoding/gob/doc.go

    Strings and slices of bytes are sent as an unsigned count followed by that many
    uninterpreted bytes of the value.
    
    All other slices and arrays are sent as an unsigned count followed by that many
    elements using the standard gob encoding for their type, recursively.
    
    Maps are sent as an unsigned count followed by that many key, element
    pairs. Empty but non-nil maps are sent, so if the receiver has not allocated
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. cmd/metrics-v3-cluster-notification.go

    	notificationEventsSentTotalMD       = NewCounterMD(notificationEventsSentTotal, "Total number of events sent to the targets")
    	notificationEventsSkippedTotalMD    = NewCounterMD(notificationEventsSkippedTotal, "Events that were skipped to be sent to the targets due to the in-memory queue being full")
    )
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 24 04:10:35 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Finished.java

     * limitations under the License.
     */
    
    package org.gradle.launcher.daemon.protocol;
    
    /**
     * Sent from the daemon client to the daemon to indicate it has finished with the connection. This is the last
     * message sent from the client to the daemon.
     */
    public class Finished extends Message {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 871 bytes
    - Viewed (0)
  5. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/CacheCleanupBuildOperationType.java

        /**
         * Sent when the cache is cleaned up.
         */
        public interface Details {
    
            /**
             * Returns the location of the cache.
             */
            File getCacheLocation();
        }
    
        /**
         * Sent after the cache has been cleaned up.
         */
        public interface Result {
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 16:53:17 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client_tls13.go

    		return errors.New("tls: server sent an unnecessary HelloRetryRequest message")
    	}
    
    	if hs.serverHello.cookie != nil {
    		hello.cookie = hs.serverHello.cookie
    	}
    
    	if hs.serverHello.serverShare.group != 0 {
    		c.sendAlert(alertDecodeError)
    		return errors.New("tls: received malformed key_share extension")
    	}
    
    	// If the server sent a key_share extension selecting a group, ensure it's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. src/net/http/serve_test.go

    		}
    		return nil
    	})
    }
    
    // Issue 54784: test that the Server's ReadHeaderTimeout only starts once the
    // beginning of a request has been received, rather than including time the
    // connection spent idle.
    func TestServerCancelsReadHeaderTimeoutWhenIdle(t *testing.T) {
    	run(t, testServerCancelsReadHeaderTimeoutWhenIdle, []testMode{http1Mode})
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  8. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/launcher/daemon/protocol/Result.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.launcher.daemon.protocol;
    
    /**
     * The supertype of all objects sent from the daemon server back to the client.
     * <p>
     * Specific subclass types carry extra context, e.g. whether it was a failure or successful result.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 04:50:46 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/internal/ws/RealWebSocketTest.kt

        client.webSocket!!.finishReader()
        assertThat(client.closed).isTrue()
        client.listener.assertFailure(
          ProtocolException::class.java,
          "Server-sent frames must not be masked.",
        )
        server.listener.assertClosing(1000, "Hello")
        server.listener.assertExhausted() // Client should not have sent second close.
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 01:59:58 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    	// Ingress is a list containing ingress points for the load-balancer;
    	// traffic intended for the service should be sent to these ingress points.
    	// +optional
    	Ingress []LoadBalancerIngress
    }
    
    // LoadBalancerIngress represents the status of a load-balancer ingress point:
    // traffic intended for the service should be sent to an ingress point.
    type LoadBalancerIngress struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top