Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 76 for bytesB (0.17 sec)

  1. src/net/http/server.go

    	return append(b,
    		day[0], day[1], day[2], ',', ' ',
    		byte('0'+dd/10), byte('0'+dd%10), ' ',
    		mon[0], mon[1], mon[2], ' ',
    		byte('0'+yy/1000), byte('0'+(yy/100)%10), byte('0'+(yy/10)%10), byte('0'+yy%10), ' ',
    		byte('0'+hh/10), byte('0'+hh%10), ':',
    		byte('0'+mn/10), byte('0'+mn%10), ':',
    		byte('0'+ss/10), byte('0'+ss%10), ' ',
    		'G', 'M', 'T')
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  2. samples/addons/grafana.yaml

    components, not normalized.\n- **Memory:** memory footprint for the components. Telemetry and policy are normalized by 1k rps, and no data is shown  when there is no traffic. For ingress and istio-proxy, the data is per instance.\n- **Bytes transferred / sec:** shows the number of bytes flowing through each Istio component.\n\n\n","mode":"markdown"},"pluginVersion":"10.1.5","title":"Performance Dashboard README","transparent":true,"type":"text"},{"collapsed":false,"datasource":{"type":"prometheus","uid":"$...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  3. src/reflect/value.go

    func (v Value) panicNotBool() {
    	v.mustBe(Bool)
    }
    
    var bytesType = rtypeOf(([]byte)(nil))
    
    // Bytes returns v's underlying value.
    // It panics if v's underlying value is not a slice of bytes or
    // an addressable array of bytes.
    func (v Value) Bytes() []byte {
    	// bytesSlow is split out to keep Bytes inlineable for unnamed []byte.
    	if v.typ_ == bytesType { // ok to use v.typ_ directly as comparison doesn't cause escape
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    		if publicKey == nil {
    			w.Write([]byte{1})
    			w.Write(key[:])
    		}
    
    		stream, err := sio.AES_256_GCM.Stream(key[:])
    		if err != nil {
    			bugLogIf(ctx, err)
    			return
    		}
    		// Zero nonce, we only use each key once, and 32 bytes is plenty.
    		nonce := make([]byte, stream.NonceSize())
    		encw := stream.EncryptWriter(w, nonce, nil)
    		defer encw.Close()
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    		return bytes.NewBuffer(make([]byte, nBytes)), func() {}, nil
    	}
    
    	cases := []struct {
    		name             string
    		readerFunc       func() (io.Reader, func(), error)
    		contentLength    int64
    		expectedReadFrom bool
    	}{
    		{
    			name:             "file, length",
    			readerFunc:       newFileFunc,
    			contentLength:    nBytes,
    			expectedReadFrom: true,
    		},
    		{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    	s.SetAlign(16)
    	// The \xff is invalid UTF-8, meant to make it less likely
    	// to find one of these accidentally.
    	const prefix = "\xff Go buildinf:" // 14 bytes, plus 2 data bytes filled in below
    	data := make([]byte, 32)
    	copy(data, prefix)
    	data[len(prefix)] = byte(ctxt.Arch.PtrSize)
    	data[len(prefix)+1] = 0
    	if ctxt.Arch.ByteOrder == binary.BigEndian {
    		data[len(prefix)+1] = 1
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  7. src/cmd/internal/obj/x86/asm6.go

    	ab.buf[ab.off+1] = byte(v >> 8)
    	ab.buf[ab.off+2] = byte(v >> 16)
    	ab.buf[ab.off+3] = byte(v >> 24)
    	ab.off += 4
    }
    
    // PutInt64 writes v into the buffer using little-endian encoding.
    func (ab *AsmBuf) PutInt64(v int64) {
    	ab.buf[ab.off+0] = byte(v)
    	ab.buf[ab.off+1] = byte(v >> 8)
    	ab.buf[ab.off+2] = byte(v >> 16)
    	ab.buf[ab.off+3] = byte(v >> 24)
    	ab.buf[ab.off+4] = byte(v >> 32)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. manifests/addons/dashboards/istio-service-dashboard.json

              "format": "time_series",
              "hide": false,
              "intervalFactor": 1,
              "legendFormat": "",
              "refId": "A"
            }
          ],
          "title": "TCP Received Bytes",
          "type": "stat"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${datasource}"
          },
          "fieldConfig": {
            "defaults": {
              "color": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:47:04 UTC 2024
    - 111.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          }
        }
      }
      // Runtime version string is generated after we update the op
      // versions. Here we put a 16-byte dummy string as a placeholder. We choose
      // 16-byte because it's the alignment of buffers in flatbuffer, so it won't
      // cause any waste of space if the actual string is shorter than 16 bytes.
      constexpr std::size_t kByteStringSize = 16;
      metadata.push_back(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  10. src/debug/elf/elf.go

    	DT_FINI_ARRAY   DynTag = 26 /* Address of the array of pointers to termination functions */
    	DT_INIT_ARRAYSZ DynTag = 27 /* Size in bytes of the array of initialization functions. */
    	DT_FINI_ARRAYSZ DynTag = 28 /* Size in bytes of the array of termination functions. */
    	DT_RUNPATH      DynTag = 29 /* String table offset of a null-terminated library search path string. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
Back to top