Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 4,111 for Tables (0.11 sec)

  1. src/cmd/vendor/rsc.io/markdown/tables.go

    	"iframe",
    	"legend",
    	"li",
    	"link",
    	"main",
    	"menu",
    	"menuitem",
    	"nav",
    	"noframes",
    	"ol",
    	"optgroup",
    	"option",
    	"p",
    	"param",
    	"section",
    	"source",
    	"summary",
    	"table",
    	"tbody",
    	"td",
    	"tfoot",
    	"th",
    	"thead",
    	"title",
    	"tr",
    	"track",
    	"ul",
    }
    
    var htmlEscaper = strings.NewReplacer(
    	"\"", """,
    	"&", "&",
    	"<", "&lt;",
    	">", "&gt;",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/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
    - 211.8K bytes
    - Viewed (0)
  4. src/encoding/json/tables.go

    Kevin Burke <******@****.***> 1466959663 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 18:02:34 UTC 2016
    - 4.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/TableCollectionTest.java

              Tables.immutableCell("bar", 1, 'a'),
              Tables.immutableCell("bar", 2, 'b'),
              Tables.immutableCell("foo", 3, 'c'),
              Tables.immutableCell("bar", 1, 'b'),
              Tables.immutableCell("cat", 2, 'b'));
        }
    
        @Override
        public Set<Cell<String, Integer, Character>> create(Object... elements) {
          Table<String, Integer, Character> table = createTable();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/arm/armasm/Makefile

    tables.go: ../armmap/map.go ../arm.csv 
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 14 17:21:52 UTC 2016
    - 149 bytes
    - Viewed (0)
  7. pkg/util/iptables/monitor_test.go

    type monitorFakeExec struct {
    	sync.Mutex
    
    	tables map[string]sets.Set[string]
    
    	block      bool
    	wasBlocked bool
    }
    
    func newMonitorFakeExec() *monitorFakeExec {
    	tables := make(map[string]sets.Set[string])
    	tables["mangle"] = sets.New[string]()
    	tables["filter"] = sets.New[string]()
    	tables["nat"] = sets.New[string]()
    	return &monitorFakeExec{tables: tables}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 08 15:21:59 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/collect/TransposedTableTest.java

        table.clear();
        populate(table, data);
        return table;
      }
    
      public void testTransposeTransposed() {
        Table<Integer, String, Character> original = HashBasedTable.create();
        assertSame(original, Tables.transpose(Tables.transpose(original)));
      }
    
      public void testPutOriginalModifiesTranspose() {
        Table<Integer, String, Character> original = HashBasedTable.create();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 16:54:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. clause/from.go

    // From from clause
    type From struct {
    	Tables []Table
    	Joins  []Join
    }
    
    // Name from clause name
    func (from From) Name() string {
    	return "FROM"
    }
    
    // Build build from clause
    func (from From) Build(builder Builder) {
    	if len(from.Tables) > 0 {
    		for idx, table := range from.Tables {
    			if idx > 0 {
    				builder.WriteByte(',')
    			}
    
    			builder.WriteQuoted(table)
    		}
    	} else {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jul 15 02:25:10 UTC 2020
    - 630 bytes
    - Viewed (0)
  10. 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)
Back to top