Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,558 for vtable (0.7 sec)

  1. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    // nRegionGroups is the number of region groups.
    const nRegionGroups = 33
    
    type likelyLangRegion struct {
    	lang   uint16
    	region uint16
    }
    
    // likelyScript is a lookup table, indexed by scriptID, for the most likely
    // languages and regions given a script.
    // Size: 1052 bytes, 263 elements
    var likelyScript = [263]likelyLangRegion{
    	1:   {lang: 0x14e, region: 0x85},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/internal/language/compact/tables.go

    	// Entry 300 - 31F
    	0x5293c08e, 0x5293c0c7, 0x5293c12f, 0x52f00000,
    	0x52f00162,
    } // Size: 3116 bytes
    
    const specialTagsStr string = "ca-ES-valencia en-US-u-va-posix"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  3. src/crypto/md5/md5block_arm.s

    	DATA	·table+0x84(SB)/4, $0x8771f681
    	DATA	·table+0x88(SB)/4, $0x6d9d6122
    	DATA	·table+0x8c(SB)/4, $0xfde5380c
    	DATA	·table+0x90(SB)/4, $0xa4beea44
    	DATA	·table+0x94(SB)/4, $0x4bdecfa9
    	DATA	·table+0x98(SB)/4, $0xf6bb4b60
    	DATA	·table+0x9c(SB)/4, $0xbebfbc70
    	DATA	·table+0xa0(SB)/4, $0x289b7ec6
    	DATA	·table+0xa4(SB)/4, $0xeaa127fa
    	DATA	·table+0xa8(SB)/4, $0xd4ef3085
    	DATA	·table+0xac(SB)/4, $0x04881d05
    	DATA	·table+0xb0(SB)/4, $0xd9d4d039
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. src/encoding/xml/read_test.go

    			`</Tables>`,
    		tab: Tables{"hello", "world"},
    	},
    	{
    		xml: `<Tables>` +
    			`<table>bogus</table>` +
    			`</Tables>`,
    		tab: Tables{},
    	},
    	{
    		xml: `<Tables>` +
    			`<table>only</table>` +
    			`</Tables>`,
    		tab: Tables{HTable: "only"},
    		ns:  "http://www.w3.org/TR/html4/",
    	},
    	{
    		xml: `<Tables>` +
    			`<table>only</table>` +
    			`</Tables>`,
    		tab: Tables{FTable: "only"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/enable-core-dump.yaml.injected

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      creationTimestamp: null
      name: hello
    spec:
      replicas: 7
      selector:
        matchLabels:
          app: hello
          tier: backend
          track: stable
      strategy: {}
      template:
        metadata:
          annotations:
            istio.io/rev: default
            kubectl.kubernetes.io/default-container: hello
            kubectl.kubernetes.io/default-logs-container: hello
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  6. src/unicode/tables.go

    // Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
    
    package unicode
    
    // Version is the Unicode edition from which the tables are derived.
    const Version = "15.0.0"
    
    // Categories is the set of Unicode category tables.
    var Categories = map[string]*RangeTable{
    	"C":  C,
    	"Cc": Cc,
    	"Cf": Cf,
    	"Co": Co,
    	"Cs": Cs,
    	"L":  L,
    	"Ll": Ll,
    	"Lm": Lm,
    	"Lo": Lo,
    	"Lt": Lt,
    	"Lu": Lu,
    	"M":  M,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 04:29:53 UTC 2023
    - 205.2K bytes
    - Viewed (0)
  7. src/crypto/internal/boring/bcache/cache.go

    func (c *Cache[K, V]) Register() {
    	registerCache(unsafe.Pointer(&c.ptable))
    }
    
    // cacheSize is the number of entries in the hash table.
    // The hash is the pointer value mod cacheSize, a prime.
    // Collisions are resolved by maintaining a linked list in each hash slot.
    const cacheSize = 1021
    
    // table returns a pointer to the current cache hash table,
    // coping with the possibility of the GC clearing it out from under us.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 00:30:19 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Tables.java

       * <p>The returned table will be serializable if the specified table is serializable.
       *
       * @param table the table to be wrapped in a synchronized view
       * @return a synchronized view of the specified table
       * @since 22.0
       */
      public static <R extends @Nullable Object, C extends @Nullable Object, V extends @Nullable Object>
          Table<R, C, V> synchronizedTable(Table<R, C, V> table) {
        return Synchronized.table(table, null);
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm/armasm/tables.go

    Wei Xiao <******@****.***> 1500351937 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 267.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    Cherry Mui <******@****.***> 1669134308 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
Back to top