Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,120 for gbyte (0.14 sec)

  1. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    var UnitTypes = []UnitType{{
    	Units: []Unit{
    		{"B", []string{"b", "byte"}, 1},
    		{"kB", []string{"kb", "kbyte", "kilobyte"}, float64(1 << 10)},
    		{"MB", []string{"mb", "mbyte", "megabyte"}, float64(1 << 20)},
    		{"GB", []string{"gb", "gbyte", "gigabyte"}, float64(1 << 30)},
    		{"TB", []string{"tb", "tbyte", "terabyte"}, float64(1 << 40)},
    		{"PB", []string{"pb", "pbyte", "petabyte"}, float64(1 << 50)},
    	},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/base/KtConstantValueFactory.kt

            is Boolean -> KaConstantValue.KaBooleanConstantValue(value, expression)
            is Char -> KaConstantValue.KaCharConstantValue(value, expression)
            is Byte -> KaConstantValue.KaByteConstantValue(value, expression)
            is UByte -> KaConstantValue.KaUnsignedByteConstantValue(value, expression)
            is Short -> KaConstantValue.KaShortConstantValue(value, expression)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeInfoProvider.kt

        public val LONG: ClassId = ClassId.topLevel(StandardNames.FqNames._long.toSafe())
        public val SHORT: ClassId = ClassId.topLevel(StandardNames.FqNames._short.toSafe())
        public val BYTE: ClassId = ClassId.topLevel(StandardNames.FqNames._byte.toSafe())
        public val FLOAT: ClassId = ClassId.topLevel(StandardNames.FqNames._float.toSafe())
        public val DOUBLE: ClassId = ClassId.topLevel(StandardNames.FqNames._double.toSafe())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/schema/schema.fbs

    // could be added to the list in the future.
    enum DimensionType : byte {
      DENSE = 0,
      SPARSE_CSR = 1,
    }
    
    table Int32Vector {
      values:[int];
    }
    
    table Uint16Vector {
      values:[ushort] (force_align: 4);
    }
    
    table Uint8Vector {
      values:[ubyte] (force_align: 4);
    }
    
    // Variable-typed buffer to store the index metadata for a sparse dimension.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  5. cmd/storage-rest_test.go

    }
    
    func testStorageAPIAppendFile(t *testing.T, storage StorageAPI) {
    	testData := []byte("foo")
    	testCases := []struct {
    		volumeName      string
    		objectName      string
    		data            []byte
    		expectErr       bool
    		ignoreIfWindows bool
    	}{
    		{"foo", "myobject", testData, false, false},
    		{"foo", "myobject-0byte", []byte{}, false, false},
    		// volume not found error.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/schema/schema_v3b.fbs

    // could be added to the list in the future.
    enum DimensionType : byte {
      DENSE = 0,
      SPARSE_CSR = 1,
    }
    
    table Int32Vector {
      values:[int];
    }
    
    table Uint16Vector {
      values:[ushort] (force_align: 4);
    }
    
    table Uint8Vector {
      values:[ubyte] (force_align: 4);
    }
    
    // Variable-typed buffer to store the index metadata for a sparse dimension.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/evaluate/FirCompileTimeConstantEvaluator.kt

            val value = evaluated.value
            val psi = evaluated.psi as? KtElement
            return when (evaluated.kind) {
                ConstantValueKind.Byte -> KaConstantValue.KaByteConstantValue(value as Byte, psi)
                ConstantValueKind.Int -> KaConstantValue.KaIntConstantValue(value as Int, psi)
                ConstantValueKind.Long -> KaConstantValue.KaLongConstantValue(value as Long, psi)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 11:53:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. 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)
  9. src/runtime/mbitmap.go

    //
    //go:nowritebarrier
    //go:nosplit
    func subtractb(p *byte, n uintptr) *byte {
    	// Note: wrote out full expression instead of calling add(p, -n)
    	// to reduce the number of temporaries generated by the
    	// compiler for this trivial expression during inlining.
    	return (*byte)(unsafe.Pointer(uintptr(unsafe.Pointer(p)) - n))
    }
    
    // add1 returns the byte pointer p+1.
    //
    //go:nowritebarrier
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  10. src/internal/byteorder/byteorder.go

    	b[0] = byte(v)
    	b[1] = byte(v >> 8)
    	b[2] = byte(v >> 16)
    	b[3] = byte(v >> 24)
    	b[4] = byte(v >> 32)
    	b[5] = byte(v >> 40)
    	b[6] = byte(v >> 48)
    	b[7] = byte(v >> 56)
    }
    
    func LeAppendUint64(b []byte, v uint64) []byte {
    	return append(b,
    		byte(v),
    		byte(v>>8),
    		byte(v>>16),
    		byte(v>>24),
    		byte(v>>32),
    		byte(v>>40),
    		byte(v>>48),
    		byte(v>>56),
    	)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 20:31:29 UTC 2024
    - 3.5K bytes
    - Viewed (0)
Back to top