Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for byte (0.27 sec)

  1. doc/go_spec.html

    </p>
    
    <pre>
    s := make([]byte, 2, 4)
    
    a0 := [0]byte(s)
    a1 := [1]byte(s[1:])     // a1[0] == s[1]
    a2 := [2]byte(s)         // a2[0] == s[0]
    a4 := [4]byte(s)         // panics: len([4]byte) > len(s)
    
    s0 := (*[0]byte)(s)      // s0 != nil
    s1 := (*[1]byte)(s[1:])  // &amp;s1[0] == &amp;s[1]
    s2 := (*[2]byte)(s)      // &amp;s2[0] == &amp;s[0]
    s4 := (*[4]byte)(s)      // panics: len([4]byte) > len(s)
    
    HTML
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 00:39:16 GMT 2024
    - 279.6K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    assertEquals(String, long, long); public static void assertEquals(long, long); public static void assertEquals(String, boolean, boolean); public static void assertEquals(boolean, boolean); public static void assertEquals(String, byte, byte); public static void assertEquals(byte, byte); public static void assertEquals(String, char, char); public static void assertEquals(char, char); public static void assertEquals(String, short, short); public static void assertEquals(short, short); public static void assertEquals(String,...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // BinaryData can contain byte sequences that are not in the UTF-8 range.
      // The keys stored in BinaryData must not overlap with the ones in
      // the Data field, this is enforced during validation process.
      // Using this field will require 1.10+ apiserver and
      // kubelet.
      // +optional
      map<string, bytes> binaryData = 3;
    }
    
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 255.8K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.27.md

    - Client-go: fixed potential data races retrying requests using a custom `io.Reader` body; with this fix, only requests with no body or with `string` / `[]byte` / `runtime.Object` bodies can be retried ([#113933](https://github.com/kubernetes/kubernetes/pull/113933), [@liggitt](https://github.com/liggitt))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Apr 16 15:20:21 GMT 2024
    - 434.3K bytes
    - Viewed (3)
  5. CHANGELOG/CHANGELOG-1.26.md

      - go_memory_classes_heap_stacks_bytes
      - go_memory_classes_heap_unused_bytes
      - go_memory_classes_metadata_mcache_free_bytes
      - go_memory_classes_metadata_mcache_inuse_bytes
      - go_memory_classes_metadata_mspan_free_bytes
      - go_memory_classes_metadata_mspan_inuse_bytes
      - go_memory_classes_metadata_other_bytes
      - go_memory_classes_os_stacks_bytes
      - go_memory_classes_other_bytes
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Mar 14 16:24:51 GMT 2024
    - 425.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.28.md

    - Replaced `apiserver_storage_db_total_size_in_bytes` with `apiserver_storage_size_bytes` metric. ([#118812](https://github.com/kubernetes/kubernetes/pull/118812), [@serathius](https://github.com/serathius))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Apr 16 20:44:48 GMT 2024
    - 385.1K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.21.md

    - Increase timeout for pod lifecycle test to reach pod status=ready ([#96691](https://github.com/kubernetes/kubernetes/pull/96691), [@hh](https://github.com/hh))
    - Increased `CSINodeIDMaxLength` from 128 bytes to 192 bytes. ([#98753](https://github.com/kubernetes/kubernetes/pull/98753), [@Jiawei0227](https://github.com/Jiawei0227))
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Fri Oct 14 07:03:14 GMT 2022
    - 367.3K bytes
    - Viewed (4)
  8. ChangeLog.md

    - [`KT-56951`](https://youtrack.jetbrains.com/issue/KT-56951) K2: False negative error on compound assignment for property of type Byte
    - [`KT-57222`](https://youtrack.jetbrains.com/issue/KT-57222) K2: compiler FIR serialization crash on two functions with captured type and object literal
    Plain Text
    - Registered: Fri May 03 08:18:13 GMT 2024
    - Last Modified: Thu Dec 21 17:48:12 GMT 2023
    - 268.7K bytes
    - Viewed (1)
  9. CHANGELOG/CHANGELOG-1.25.md

    - github.com/golang-jwt/jwt/v4: [v4.2.0](https://github.com/golang-jwt/jwt/v4/tree/v4.2.0)
    - github.com/golang/snappy: [v0.0.3](https://github.com/golang/snappy/tree/v0.0.3)
    - github.com/golangplus/bytes: [v1.0.0](https://github.com/golangplus/bytes/tree/v1.0.0)
    - github.com/golangplus/fmt: [v1.0.0](https://github.com/golangplus/fmt/tree/v1.0.0)
    - github.com/onsi/ginkgo/v2: [v2.1.4](https://github.com/onsi/ginkgo/v2/tree/v2.1.4)
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Nov 16 11:30:31 GMT 2023
    - 419K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.6.md

      termination message log file. The termination message file is now properly
      readable for end users and has a maximum size (4k bytes) to prevent abuse.
      Each pod may have up to 12k bytes of termination messages before the contents
      of each will be truncated.
    * Do not delete pod objects until all its compute resource footprint has been
      reclaimed.
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 304K bytes
    - Viewed (0)
Back to top