Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 164 for table_1 (0.13 sec)

  1. src/runtime/iface.go

    			throw("mismatched count during itab table copy")
    		}
    		// Publish new hash table. Use an atomic write: see comment in getitab.
    		atomicstorep(unsafe.Pointer(&itabTable), unsafe.Pointer(t2))
    		// Adopt the new table as our own.
    		t = itabTable
    		// Note: the old table can be GC'ed here.
    	}
    	t.add(m)
    }
    
    // add adds the given itab to itab table t.
    // itabLock must be held.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/types/typeutil/map.go

    func (m *Map) At(key types.Type) any {
    	if m != nil && m.table != nil {
    		for _, e := range m.table[m.hasher.Hash(key)] {
    			if e.key != nil && types.Identical(key, e.key) {
    				return e.value
    			}
    		}
    	}
    	return nil
    }
    
    // Set sets the map entry for key to val,
    // and returns the previous entry, if any.
    func (m *Map) Set(key types.Type, value any) (prev any) {
    	if m.table != nil {
    		hash := m.hasher.Hash(key)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/run.go

    				"-p", constants.TCP, "-j", constants.TPROXY,
    				"--tproxy-mark", cfg.cfg.InboundTProxyMark+"/0xffffffff", "--on-port", cfg.cfg.InboundCapturePort)
    			table = constants.MANGLE
    		} else {
    			table = constants.NAT
    		}
    		cfg.ruleBuilder.AppendRule(iptableslog.JumpInbound, constants.PREROUTING, table, "-p", constants.TCP,
    			"-j", constants.ISTIOINBOUND)
    
    		if cfg.cfg.InboundPortsInclude == "*" {
    			// Apply any user-specified port exclusions.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  4. docs/ru/docs/tutorial/metadata.md

    | `license_info` | `dict` | Информация о лицензии открытого API. Может содержать несколько полей. <details><summary>поля <code>license_info</code></summary><table><thead><tr><th>Параметр</th><th>Тип</th><th>Описание</th></tr></thead><tbody><tr><td><code>name</code></td><td><code>str</code></td><td><strong>ОБЯЗАТЕЛЬНО</strong>...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  5. src/image/gif/reader_test.go

    const (
    	headerStr = "GIF89a" +
    		"\x02\x00\x01\x00" + // width=2, height=1
    		"\x80\x00\x00" // headerFields=(a color table of 2 pixels), backgroundIndex, aspect
    	paletteStr = "\x10\x20\x30\x40\x50\x60" // the color table, also known as a palette
    	trailerStr = "\x3b"
    )
    
    // lzw.NewReader wants an io.ByteReader, this ensures we're compatible.
    var _ io.ByteReader = (*blockReader)(nil)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:15:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. schema/relationship_test.go

    		JoinTable: JoinTable{Name: "user_profiles", Table: "user_profiles"},
    		References: []Reference{
    			{"Refer", "User", "UserReferID", "user_profiles", "", true},
    			{"UserRefer", "Profile", "ProfileRefer", "user_profiles", "", false},
    		},
    	}, Relation{
    		Name: "Profiles2", Type: schema.Many2Many, Schema: "User", FieldSchema: "Profile",
    		JoinTable: JoinTable{Name: "user_profiles2", Table: "user_profiles2"},
    		References: []Reference{
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/builder/testdata/append-insert-multi-restore.golden

    * table
    -N chain
    -A chain -f foo -b bar
    -I chain 2 -f foo -b bar
    -A chain -f foo -b baz
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 94 bytes
    - Viewed (0)
  8. tools/istio-iptables/pkg/builder/testdata/insert-single-restore.golden

    * table
    -N chain
    -I chain 2 -f foo -b bar
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 48 bytes
    - Viewed (0)
  9. src/debug/elf/elf.go

    	DT_NEEDED       DynTag = 1  /* String table offset of a needed shared library. */
    	DT_PLTRELSZ     DynTag = 2  /* Total size in bytes of PLT relocations. */
    	DT_PLTGOT       DynTag = 3  /* Processor-dependent address. */
    	DT_HASH         DynTag = 4  /* Address of symbol hash table. */
    	DT_STRTAB       DynTag = 5  /* Address of string table. */
    	DT_SYMTAB       DynTag = 6  /* Address of symbol table. */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      let summary = "Looks up keys in a table, outputs the corresponding values.";
    
      let description = [{
    The tensor `keys` must of the same type as the keys of the table.
    The output `values` is of the type of the table values.
    
    The scalar `default_value` is the value output for keys not present in the
    table. It must also be of the same type as the table values.
      }];
    
      let arguments = (ins
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
Back to top