Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,140 for spent (0.05 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/StreamedValueListener.java

     * limitations under the License.
     */
    
    package org.gradle.tooling;
    
    import org.gradle.api.Incubating;
    
    /**
     * Receives a value sent via {@link BuildController#send(Object)}.
     *
     * <p>Objects are received in the order they were sent and all objects are received before the result of the {@link BuildAction} is returned to the application.</p>
     *
     * @since 8.6
     */
    @Incubating
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 08:15:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/filterchain_options.go

    			ApplicationProtocols: mtlsHTTPALPNs,
    			// If client sends mTLS traffic, transport protocol will be set by the TLS inspector
    			TransportProtocol: xdsfilters.TLSTransportProtocol,
    			Protocol:          networking.ListenerProtocolHTTP,
    			TLS:               true,
    		},
    		{
    			// client side traffic was detected as HTTP by the outbound listener, sent out as plain text
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/apiserver/plugin/pkg/audit/buffered/buffered.go

    	// ThrottleEnable defines whether throttling will be applied to the batching process.
    	ThrottleEnable bool
    	// ThrottleQPS defines the allowed rate of batches per second sent to the delegate backend.
    	ThrottleQPS float32
    	// ThrottleBurst defines the maximum number of requests sent to the delegate backend at the same moment in case
    	// the capacity defined by ThrottleQPS was not utilized.
    	ThrottleBurst int
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/watch/filter.go

    		if keep {
    			fw.result <- filtered
    		}
    	}
    }
    
    // Recorder records all events that are sent from the watch until it is closed.
    type Recorder struct {
    	Interface
    
    	lock   sync.Mutex
    	events []Event
    }
    
    var _ Interface = &Recorder{}
    
    // NewRecorder wraps an Interface and records any changes sent across it.
    func NewRecorder(w Interface) *Recorder {
    	r := &Recorder{}
    	r.Interface = Filter(w, r.record)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  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. src/net/textproto/pipeline.go

    // each client should run:
    //
    //	id := p.Next()	// take a number
    //
    //	p.StartRequest(id)	// wait for turn to send request
    //	«send request»
    //	p.EndRequest(id)	// notify Pipeline that request is sent
    //
    //	p.StartResponse(id)	// wait for turn to read response
    //	«read response»
    //	p.EndResponse(id)	// notify Pipeline that response is read
    //
    // A pipelined server can use the same calls to ensure that
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 08 16:19:51 UTC 2020
    - 3K bytes
    - Viewed (0)
  10. 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)
Back to top