Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,111 for Tables (0.12 sec)

  1. 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)
  2. src/vendor/golang.org/x/net/http2/hpack/tables.go

    // meaning t.ents is reversed for dynamic tables. Hence, when t is a dynamic
    // table, the return value i actually refers to the entry t.ents[t.len()-i].
    //
    // All tables are assumed to be a dynamic tables except for the global staticTable.
    //
    // See Section 2.3.3.
    func (t *headerFieldTable) search(f HeaderField) (i uint64, nameValueMatch bool) {
    	if !f.Sensitive {
    		if id := t.byNameValue[pairNameValue{f.Name, f.Value}]; id != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 7.5K bytes
    - Viewed (0)
  3. 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: Mon Mar 04 22:45:41 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  4. src/crypto/internal/edwards25519/tables.go

    package edwards25519
    
    import (
    	"crypto/subtle"
    )
    
    // A dynamic lookup table for variable-base, constant-time scalar muls.
    type projLookupTable struct {
    	points [8]projCached
    }
    
    // A precomputed lookup table for fixed-base, constant-time scalar muls.
    type affineLookupTable struct {
    	points [8]affineCached
    }
    
    // A dynamic lookup table for variable-base, variable-time scalar muls.
    type nafLookupTable5 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 05 21:02:45 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/language/tables.go

    // Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
    
    package language
    
    // CLDRVersion is the CLDR version from which the tables in this package are derived.
    const CLDRVersion = "32"
    
    const (
    	_de  = 269
    	_en  = 313
    	_fr  = 350
    	_it  = 505
    	_mo  = 784
    	_no  = 879
    	_nb  = 839
    	_pt  = 960
    	_sh  = 1031
    	_mul = 806
    	_und = 0
    )
    const (
    	_001 = 1
    	_419 = 31
    	_BR  = 65
    	_CA  = 73
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    // Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
    
    package language
    
    import "golang.org/x/text/internal/tag"
    
    // CLDRVersion is the CLDR version from which the tables in this package are derived.
    const CLDRVersion = "32"
    
    const NumLanguages = 8798
    
    const NumScripts = 261
    
    const NumRegions = 358
    
    type FromTo struct {
    	From uint16
    	To   uint16
    }
    
    const nonCanonicalUnd = 1201
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/text/internal/language/compact/tables.go

    // Code generated by running "go generate" in golang.org/x/text. DO NOT EDIT.
    
    package compact
    
    import "golang.org/x/text/internal/language"
    
    // CLDRVersion is the CLDR version from which the tables in this package are derived.
    const CLDRVersion = "32"
    
    // NumCompactTags is the number of common tags. The maximum tag is
    // NumCompactTags-1.
    const NumCompactTags = 775
    const (
    	undIndex          ID = 0
    	afIndex           ID = 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    		[6]*argField{ap_FPReg_6_10, ap_ImmUnsigned_18_20}},
    	{MFFSCE, 0xfc1f07fe00000000, 0xfc01048e00000000, 0xf80100000000, // Move From FPSCR & Clear Enables X-form (mffsce FRT)
    		[6]*argField{ap_FPReg_6_10}},
    	{MFFSCRN, 0xfc1f07fe00000000, 0xfc16048e00000000, 0x100000000, // Move From FPSCR Control & Set RN X-form (mffscrn FRT,FRB)
    		[6]*argField{ap_FPReg_6_10, ap_FPReg_16_20}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K 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/x86/x86asm/tables.go

    Dmitri Shuralyov <******@****.***> 1652737741 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
Back to top