Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 74 of 74 for IMMEDIATE (0.15 sec)

  1. src/net/http/serve_test.go

    		t.Fatal(err)
    	}
    
    	if err := cn.(*net.TCPConn).CloseWrite(); err != nil {
    		t.Fatal(err)
    	}
    	<-done
    }
    
    // Like TestServerHijackGetsBackgroundByte above but sending a
    // immediate 1MB of data to the server to fill up the server's 4KB
    // buffer.
    func TestServerHijackGetsBackgroundByte_big(t *testing.T) {
    	run(t, testServerHijackGetsBackgroundByte_big, []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)
  2. src/net/http/h2_bundle.go

    	b        http2pipeBuffer // nil when done reading
    	unread   int             // bytes unread when done
    	err      error           // read error once empty. non-nil means closed.
    	breakErr error           // immediate read error (caller doesn't see rest of b)
    	donec    chan struct{}   // closed on error
    	readFn   func()          // optional code to run in Read before error
    }
    
    type http2pipeBuffer interface {
    	Len() int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  3. RELEASE.md

    *   Unified eager and `tf.function` execution:
    
        *   Eager mode can now execute each op as a `tf.function`, allowing for more
            consistent feature support in future releases.
        *   It is available for immediate use.
            *   See the `TF_RUN_EAGER_OP_AS_FUNCTION` environment variable in
                [eager context](https://github.com/tensorflow/tensorflow/blob/master/tensorflow/python/eager/context.py).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  4. pkg/generated/openapi/zz_generated.openapi.go

    "volumeBindingMode indicates how PersistentVolumeClaims should be provisioned and bound.  When unset, VolumeBindingImmediate is used. This field is only honored by servers that enable the VolumeScheduling feature.\n\nPossible enum values:\n - `\"Immediate\"` indicates that PersistentVolumeClaims should be immediately provisioned and bound. This is the default mode.\n - `\"WaitForFirstConsumer\"` indicates that PersistentVolumeClaims should not be provisioned and bound until the first Pod is created...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top