Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 244 for qBytes (0.25 sec)

  1. src/syscall/ztypes_openbsd_ppc64.go

    	Metric       uint32
    	Rdomain      uint32
    	Baudrate     uint64
    	Ipackets     uint64
    	Ierrors      uint64
    	Opackets     uint64
    	Oerrors      uint64
    	Collisions   uint64
    	Ibytes       uint64
    	Obytes       uint64
    	Imcasts      uint64
    	Omcasts      uint64
    	Iqdrops      uint64
    	Oqdrops      uint64
    	Noproto      uint64
    	Capabilities uint32
    	Lastchange   Timeval
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 03:24:15 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    	SYS_EXTATTR_LIST_FILE        = 438 // { ssize_t extattr_list_file(const char *path, int attrnamespace, void *data, size_t nbytes); }
    	SYS_EXTATTR_LIST_LINK        = 439 // { ssize_t extattr_list_link(const char *path, int attrnamespace, void *data, size_t nbytes); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go

    	SYS_EXTATTR_LIST_FILE        = 438 // { ssize_t extattr_list_file(const char *path, int attrnamespace, void *data, size_t nbytes); }
    	SYS_EXTATTR_LIST_LINK        = 439 // { ssize_t extattr_list_link(const char *path, int attrnamespace, void *data, size_t nbytes); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  4. src/syscall/ztypes_darwin_amd64.go

    	Unused1    uint8
    	Mtu        uint32
    	Metric     uint32
    	Baudrate   uint32
    	Ipackets   uint32
    	Ierrors    uint32
    	Opackets   uint32
    	Oerrors    uint32
    	Collisions uint32
    	Ibytes     uint32
    	Obytes     uint32
    	Imcasts    uint32
    	Omcasts    uint32
    	Iqdrops    uint32
    	Noproto    uint32
    	Recvtiming uint32
    	Xmittiming uint32
    	Lastchange Timeval32
    	Unused2    uint32
    	Hwassist   uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 6.9K bytes
    - Viewed (0)
  5. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/measure/DataSeriesTest.groovy

            def v1 = DataAmount.kbytes(10)
            def v2 = DataAmount.kbytes(20)
            def v3 = DataAmount.kbytes(30)
            def series = new DataSeries([v1, v2, v3])
    
            expect:
            series.average == v2
            series.median == v2
            series.min == v1
            series.max == v3
            series.standardError == DataAmount.bytes(8360.92)
        }
    
        def "ignores null values"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/native-binaries/sourceset-variant/groovy/src/main/c/main.c

    int main(int argc, char** argv) {
      printf("Attributes of '%s' platform\n", platform_name);
      printf("Is Posix like?        %s\n", is_posix_like()?"true":"false");
      printf("Max Path Length:      %d bytes\n", max_path_length());
      printf("Max memory supported: %llu Kbytes\n", max_memory());
      return 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 348 bytes
    - Viewed (0)
  7. src/cmd/compile/internal/test/testdata/append_test.go

    //go:noinline
    func appendThree_ssa(a []int, x, y, z int) []int {
    	return append(a, x, y, z)
    }
    
    func eqBytes(a, b []int) bool {
    	if len(a) != len(b) {
    		return false
    	}
    	for i := range a {
    		if a[i] != b[i] {
    			return false
    		}
    	}
    	return true
    }
    
    func expect(t *testing.T, got, want []int) {
    	if eqBytes(got, want) {
    		return
    	}
    	t.Errorf("expected %v, got %v\n", want, got)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 23 06:40:04 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  8. src/cmd/internal/quoted/quoted.go

    }
    
    // Split splits s into a list of fields,
    // allowing single or double quotes around elements.
    // There is no unescaping or other processing within
    // quoted fields.
    //
    // Keep in sync with cmd/dist/quoted.go
    func Split(s string) ([]string, error) {
    	// Split fields allowing '' or "" around elements.
    	// Quotes further inside the string do not count.
    	var f []string
    	for len(s) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 23 21:04:06 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_freebsd_riscv64.go

    	SYS_EXTATTR_LIST_FILE        = 438 // { ssize_t extattr_list_file( const char *path, int attrnamespace, void *data, size_t nbytes); }
    	SYS_EXTATTR_LIST_LINK        = 439 // { ssize_t extattr_list_link( const char *path, int attrnamespace, void *data, size_t nbytes); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 29 22:39:46 UTC 2022
    - 35.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go

    	Hdrlen     uint8
    	Mtu        uint32
    	Metric     uint32
    	Baudrate   uint32
    	Ipackets   uint32
    	Ierrors    uint32
    	Opackets   uint32
    	Oerrors    uint32
    	Collisions uint32
    	Ibytes     uint32
    	Obytes     uint32
    	Imcasts    uint32
    	Omcasts    uint32
    	Iqdrops    uint32
    	Noproto    uint32
    	Lastchange Timeval32
    }
    
    type IfaMsghdr struct {
    	Msglen  uint16
    	Version uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 7.5K bytes
    - Viewed (0)
Back to top