Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 4,111 for Tables (0.1 sec)

  1. tests/error_translator_test.go

    		return
    	}
    
    	DB.Migrator().DropTable(&City{}, &Museum{})
    
    	if err = db.AutoMigrate(&City{}, &Museum{}); err != nil {
    		t.Fatalf("failed to migrate countries & cities tables, got error: %v", err)
    	}
    
    	city := City{Name: "Amsterdam"}
    
    	err = db.Create(&city).Error
    	if err != nil {
    		t.Fatalf("failed to create city: %v", err)
    	}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jul 12 13:21:22 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  2. src/crypto/internal/nistec/p224.go

    // A p224Table holds the first 15 multiples of a point at offset -1, so [1]P
    // is at table[0], [15]P is at table[14], and [0]P is implicitly the identity
    // point.
    type p224Table [15]*P224Point
    
    // Select selects the n-th multiple of the table base point into p. It works in
    // constant time by iterating over every entry of the table. n must be in [0, 15].
    func (table *p224Table) Select(p *P224Point, n uint8) {
    	if n >= 16 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  3. src/crypto/internal/nistec/p521.go

    // A p521Table holds the first 15 multiples of a point at offset -1, so [1]P
    // is at table[0], [15]P is at table[14], and [0]P is implicitly the identity
    // point.
    type p521Table [15]*P521Point
    
    // Select selects the n-th multiple of the table base point into p. It works in
    // constant time by iterating over every entry of the table. n must be in [0, 15].
    func (table *p521Table) Select(p *P521Point, n uint8) {
    	if n >= 16 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 17K bytes
    - Viewed (0)
  4. src/crypto/internal/nistec/p384.go

    // A p384Table holds the first 15 multiples of a point at offset -1, so [1]P
    // is at table[0], [15]P is at table[14], and [0]P is implicitly the identity
    // point.
    type p384Table [15]*P384Point
    
    // Select selects the n-th multiple of the table base point into p. It works in
    // constant time by iterating over every entry of the table. n must be in [0, 15].
    func (table *p384Table) Select(p *P384Point, n uint8) {
    	if n >= 16 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 12 00:04:29 UTC 2022
    - 18K bytes
    - Viewed (0)
  5. callbacks/query.go

    										Column: clause.Column{Table: parentTableName, Name: ref.PrimaryKey.DBName},
    										Value:  clause.Column{Table: tableAliasName, Name: ref.ForeignKey.DBName},
    									}
    								} else {
    									if ref.PrimaryValue == "" {
    										exprs[idx] = clause.Eq{
    											Column: clause.Column{Table: parentTableName, Name: ref.ForeignKey.DBName},
    											Value:  clause.Column{Table: tableAliasName, Name: ref.PrimaryKey.DBName},
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:51:44 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. src/crypto/aes/block.go

    	s2 := byteorder.BeUint32(src[8:12])
    	s3 := byteorder.BeUint32(src[12:16])
    
    	// First round just XORs input with key.
    	s0 ^= xk[0]
    	s1 ^= xk[1]
    	s2 ^= xk[2]
    	s3 ^= xk[3]
    
    	// Middle rounds shuffle using tables.
    	// Number of rounds is set by length of expanded key.
    	nr := len(xk)/4 - 2 // - 2: one above, one more below
    	k := 4
    	var t0, t1, t2, t3 uint32
    	for r := 0; r < nr; r++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/norm/forminfo.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package norm
    
    import "encoding/binary"
    
    // This file contains Form-specific logic and wrappers for data in tables.go.
    
    // Rune info is stored in a separate trie per composing form. A composing form
    // and its corresponding decomposing form share the same trie.  Each trie maps
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  8. pkg/util/iptables/testing/parse_test.go

    				-A KUBE-SERVICES -m comment --comment "kubernetes service nodeports; NOTE: this must be the last rule in this chain" -m addrtype --dst-type LOCAL -j KUBE-NODEPORTS
    				COMMIT
    				`),
    			output: &IPTablesDump{
    				Tables: []Table{{
    					Name: iptables.TableFilter,
    					Chains: []Chain{{
    						Name: iptables.Chain("KUBE-SERVICES"),
    					}, {
    						Name: iptables.Chain("KUBE-EXTERNAL-SERVICES"),
    					}, {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 26K bytes
    - Viewed (0)
  9. src/debug/dwarf/line_test.go

    		}
    
    		// Check file table.
    		if !ignore {
    			if !compareFiles(files[0], lr.Files()) {
    				t.Log("File tables do not match. Got:")
    				dumpFiles(t, lr.Files())
    				t.Log("Want:")
    				dumpFiles(t, files[0])
    				t.Fail()
    			}
    			files = files[1:]
    		}
    	}
    
    	// Compare line tables.
    	if !compareLines(t, got, want) {
    		t.Log("Line tables do not match. Got:")
    		dumpLines(t, got)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 18 20:34:36 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/endpoint_builder.go

    	}
    
    	// in case pod is not found when init EndpointBuilder.
    	networkID := network.ID(b.labels[label.TopologyNetwork.Name])
    	if networkID == "" {
    		networkID = b.endpointNetwork(endpointAddress)
    		b.labels[label.TopologyNetwork.Name] = string(networkID)
    	}
    
    	return &model.IstioEndpoint{
    		Labels:                b.labels,
    		ServiceAccount:        b.serviceAccount,
    		Locality:              b.locality,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 4.8K bytes
    - Viewed (0)
Back to top