Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 348 for spreading (0.15 sec)

  1. pkg/client/tests/portfoward_test.go

    	"strings"
    	"sync"
    	"testing"
    	"time"
    
    	"k8s.io/apimachinery/pkg/types"
    	restclient "k8s.io/client-go/rest"
    	. "k8s.io/client-go/tools/portforward"
    	"k8s.io/client-go/transport/spdy"
    	"k8s.io/kubelet/pkg/cri/streaming/portforward"
    )
    
    // fakePortForwarder simulates port forwarding for testing. It implements
    // portforward.PortForwarder.
    type fakePortForwarder struct {
    	lock sync.Mutex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 06:08:18 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/overview/quick_start.adoc

    === 1. Core Concepts
    
    [sidebar]
    _Description_: *Learn how to invoke tasks and add dependencies.* +
    _Training level_: **Beginner** +
    _Reading time_: **25 minutes** +
    <<gradle_basics.adoc#gradle,-> Read Core Concepts >>
    
    === 2. Hands-on Tutorial
    
    [sidebar]
    _Description_: *Initialize a Gradle build for a basic Java App.* +
    _Training level_: **Beginner** +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 18:58:37 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. pkg/kubelet/server/server_websocket_test.go

    	"io"
    	"strconv"
    	"sync"
    	"testing"
    
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    	"golang.org/x/net/websocket"
    
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/kubelet/pkg/cri/streaming/portforward"
    )
    
    const (
    	dataChannel = iota
    	errorChannel
    )
    
    func TestServeWSPortForward(t *testing.T) {
    	tests := map[string]struct {
    		port          string
    		uid           bool
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 05 06:08:18 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  4. docs/contribute/concurrency.md

    elapses. If we get bytes but there's nobody asking for them, we buffer them. We don't consider bytes as delivered for flow control until they're consumed by the application.
    
    Consider an application streaming a video over http/2. Perhaps the user pauses the video and the application stops reading bytes from this stream. The buffer will fill up, and flow control prevents the server from sending more data on this stream. When the user unpauses her video the buffer drains, the read is acknowledged,...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Feb 06 16:35:36 UTC 2022
    - 7K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tf2xla/internal/logging_hooks.h

    namespace tensorflow {
    namespace tf2xla {
    namespace internal {
    
    // Setup the input pass manager to enable IR dumping after each pass.
    // Note a side effect of this method is that multi threading will be disabled.
    void EnablePassIRPrinting(mlir::PassManager& pm,
                              const std::string& dump_group_name,
                              llvm::StringRef module_name = llvm::StringRef());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Oct 05 14:26:22 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/net/http/internal/chunked.go

    	if cr.err != nil {
    		return
    	}
    	// A sender who sends one byte per chunk will send 5 bytes of overhead
    	// for every byte of data. ("1\r\nX\r\n" to send "X".)
    	// We want to allow this, since streaming a byte at a time can be legitimate.
    	//
    	// A sender can use chunk extensions to add arbitrary amounts of additional
    	// data per byte read. ("1;very long extension\r\nX\r\n" to send "X".)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelSourceTransformer.java

     */
    package org.apache.maven.model.building;
    
    import java.nio.file.Path;
    
    import org.apache.maven.model.Model;
    
    /**
     * The ModelSourceTransformer is a way to transform the local pom while streaming the input.
     *
     * The {@link #transform(Path, TransformerContext, Model)} method uses a Path on purpose, to ensure the
     * local pom is the original source.
     *
     * @since 4.0.0
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 13 11:39:50 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  8. README.md

     * Remove global state
     * Allow per context configuration
     * Logging through SLF4J
     * Drop pre-java 1.7 support
     * Unify authentication subsystem, NTLMSSP/Kerberos support
     * Large ReadX/WriteX support
     * Streaming list operations
     * NtTransNotifyChange support
     * Google patches: various bugfixes, lastAccess support, retrying requests
     * A proper test suite
     * Various fixes
    
    ## Others
    
    ### This jcifs or jcifs-ng
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Wed May 10 09:29:34 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-message.h

      // is more specialized.  (The C++ Standard, section
      // [temp.func.order].)  If you stream a non-pointer, then the
      // previous definition will be used.
      //
      // The reason for this overload is that streaming a NULL pointer to
      // ostream is undefined behavior.  Depending on the compiler, you
      // may get "0", "(nil)", "(null)", or an access violation.  To
      // ensure consistent result across compilers, we always treat NULL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  10. docs/en/docs/reference/responses.md

    # Custom Response Classes - File, HTML, Redirect, Streaming, etc.
    
    There are several custom response classes you can use to create an instance and return them directly from your *path operations*.
    
    Read more about it in the [FastAPI docs for Custom Response - HTML, Stream, File, others](https://fastapi.tiangolo.com/advanced/custom-response/).
    
    You can import them directly from `fastapi.responses`:
    
    ```python
    from fastapi.responses import (
        FileResponse,
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top