Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 87 for multiplexed (0.2 sec)

  1. hack/serve-prom-scrapes.sh

    # <timestamp>.scrape
    # where <timestamp> is seconds since Jan 1, 1970 UTC.
    # Each such file is taken to be a scrape that lacks timestamps,
    # and the timestamp from the filename is multiplied by the necessary 1000
    # and added to the data in that file.
    
    # This requires an `nc` command that this script knows how to wrangle.
    
    if (( $# != 2 )); then
        echo "Usage: $0 port_num scrapes_dir" >&2
        exit 1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 04 06:33:06 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  2. src/hash/crc32/crc32_s390x.s

    // intermediate results with a single VECTOR GALOIS FIELD MULTIPLY instruction.
    // The rightmost doubleword can be 0 to prevent contribution to the result or
    // can be multiplied by 1 to perform an XOR without the need for a separate
    // VECTOR EXCLUSIVE OR instruction.
    //
    // The polynomials used are bit-reflected:
    //
    //            IEEE: P'(x) = 0x0edb88320
    //      Castagnoli: P'(x) = 0x082f63b78
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 20 00:49:17 UTC 2021
    - 7.6K bytes
    - Viewed (0)
  3. hack/run-prometheus-on-etcd-scrapes.sh

    # files whose name is of the form
    # <timestamp>.scrape
    # where <timestamp> is seconds since Jan 1, 1970 UTC.
    # Each such file is taken to be a scrape that lacks timestamps,
    # and the timestamp from the filename is multiplied by the necessary 1000
    # and added to the data in that file.
    
    # This requires a:
    # - `docker run` command
    # - an `ip` or `ifconfig` command that this script knows how to wrangle
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 08 20:28:05 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  4. src/crypto/rand/util.go

    		bytes[0] &= uint8(int(1<<b) - 1)
    		// Don't let the value be too small, i.e, set the most significant two bits.
    		// Setting the top two bits, rather than just the top bit,
    		// means that when two of these values are multiplied together,
    		// the result isn't ever one bit short.
    		if b >= 2 {
    			bytes[0] |= 3 << (b - 2)
    		} else {
    			// Here b==1, because b cannot be zero.
    			bytes[0] |= 1
    			if len(bytes) > 1 {
    				bytes[1] |= 0x80
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:09:47 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  5. okhttp/src/main/kotlin/okhttp3/internal/http/CallServerInterceptor.kt

                requestBody.writeTo(bufferedRequestBody)
                bufferedRequestBody.close()
              }
            } else {
              exchange.noRequestBody()
              if (!exchange.connection.isMultiplexed) {
                // If the "Expect: 100-continue" expectation wasn't met, prevent the HTTP/1 connection
                // from being reused. Otherwise we're still obligated to transmit the request body to
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authentication/v1/types.go

    	ImpersonateUserHeader = "Impersonate-User"
    
    	// ImpersonateGroupHeader is used to impersonate a particular group during an API server request.
    	// It can be repeated multiplied times for multiple groups.
    	ImpersonateGroupHeader = "Impersonate-Group"
    
    	// ImpersonateUIDHeader is used to impersonate a particular UID during an API server request
    	ImpersonateUIDHeader = "Impersonate-Uid"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 10K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/httpstream/wsstream/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package wsstream contains utilities for streaming content over WebSockets.
    // The Conn type allows callers to multiplex multiple read/write channels over
    // a single websocket.
    //
    // "channel.k8s.io"
    //
    // The Websocket RemoteCommand subprotocol "channel.k8s.io" prepends each binary message with a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 18:37:18 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. pkg/kubelet/qos/policy.go

    )
    
    // GetContainerOOMScoreAdjust returns the amount by which the OOM score of all processes in the
    // container should be adjusted.
    // The OOM score of a process is the percentage of memory it consumes
    // multiplied by 10 (barring exceptional cases) + a configurable quantity which is between -1000
    // and 1000. Containers with higher OOM scores are killed if the system runs out of memory.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 14:49:26 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. docs/features/connections.md

    In OkHttp some fields of the address come from the URL (scheme, hostname, port) and the rest come from the [OkHttpClient](https://square.github.io/okhttp/4.x/okhttp/okhttp3/-ok-http-client/).
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Feb 21 03:33:59 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  10. src/math/gamma.go

    	-2.29549961613378126380e-04,
    	-2.68132617805781232825e-03,
    	3.47222221605458667310e-03,
    	8.33333333333482257126e-02,
    }
    
    // Gamma function computed by Stirling's formula.
    // The pair of results must be multiplied together to get the actual answer.
    // The multiplication is left to the caller so that, if careful, the caller can avoid
    // infinity for 172 <= x <= 180.
    // The polynomial is valid for 33 <= x <= 172; larger values are only used
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 5.5K bytes
    - Viewed (0)
Back to top