Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 613 for table_1 (0.09 sec)

  1. android/guava/src/com/google/common/collect/ArrayTable.java

        eraseAll();
      }
    
      private ArrayTable(Table<R, C, ? extends @Nullable V> table) {
        this(table.rowKeySet(), table.columnKeySet());
        putAll(table);
      }
    
      private ArrayTable(ArrayTable<R, C, V> table) {
        rowList = table.rowList;
        columnList = table.columnList;
        rowKeyToIndex = table.rowKeyToIndex;
        columnKeyToIndex = table.columnKeyToIndex;
        @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  2. tools/istio-iptables/pkg/README.md

    For context, there are 3 basic iptables binaries we use.
    
    - iptables
    - iptables-save
    - iptables-restore
    
    But with the kernel legacy/nft split, there are parallel binaries for each of those, and again for ipv6 tables, so the actual potential binary set on any given linux machine can be some combination of:
    
    - iptables-legacy
    - iptables-nft
    - ip6tables
    - iptables-legacy-save
    - iptables-nft-save
    - iptables-legacy-restore
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_riscv64.go

    	SizeofRtMsghdr         = 0x60
    	SizeofRtMetrics        = 0x38
    )
    
    type IfMsghdr struct {
    	Msglen  uint16
    	Version uint8
    	Type    uint8
    	Hdrlen  uint16
    	Index   uint16
    	Tableid uint16
    	Pad1    uint8
    	Pad2    uint8
    	Addrs   int32
    	Flags   int32
    	Xflags  int32
    	Data    IfData
    }
    
    type IfData struct {
    	Type         uint8
    	Addrlen      uint8
    	Hdrlen       uint8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  4. docs/en/docs/how-to/async-sql-encode-databases.md

    ## Create the tables
    
    In this case, we are creating the tables in the same Python file, but in production, you would probably want to create them with Alembic, integrated with migrations, etc.
    
    Here, this section would run directly, right before starting your **FastAPI** application.
    
    * Create an `engine`.
    * Create all the tables from the `metadata` object.
    
    ```Python hl_lines="25-28"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. src/strings/replace.go

    				next:   t.next,
    			}
    			t.prefix = t.prefix[:n]
    			t.next = next
    			next.add(key[n:], val, priority, r)
    		}
    	} else if t.table != nil {
    		// Insert into existing table.
    		m := r.mapping[key[0]]
    		if t.table[m] == nil {
    			t.table[m] = new(trieNode)
    		}
    		t.table[m].add(key[1:], val, priority, r)
    	} else {
    		t.prefix = key
    		t.next = new(trieNode)
    		t.next.add("", val, priority, r)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  6. src/cmd/link/internal/wasm/asm.go

    	}
    
    	writeSecSize(ctxt, sizeOffset)
    }
    
    // writeElementSec writes the section that initializes the tables declared by the "table" section.
    // The table for CallIndirect gets initialized in a very simple way so that each table index (PC_F value)
    // maps linearly to the function index (numImports + PC_F).
    func writeElementSec(ctxt *ld.Link, numImports, numFns uint64) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  7. src/image/jpeg/writer.go

    //   - the marker length "\x00\x0c",
    //   - the number of components "\x03",
    //   - component 1 uses DC table 0 and AC table 0 "\x01\x00",
    //   - component 2 uses DC table 1 and AC table 1 "\x02\x11",
    //   - component 3 uses DC table 1 and AC table 1 "\x03\x11",
    //   - the bytes "\x00\x3f\x00". Section B.2.3 of the spec says that for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K 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. cni/pkg/plugin/sidecar_intercept_rule_mgr.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package plugin
    
    // InterceptRuleMgr configures networking tables (e.g. iptables or nftables) for
    // redirecting traffic to an Istio proxy.
    type InterceptRuleMgr interface {
    	Program(podName, netns string, redirect *Redirect) error
    }
    
    // Constructor for iptables InterceptRuleMgr
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Feb 10 00:31:55 UTC 2024
    - 940 bytes
    - Viewed (0)
  10. src/internal/zstd/literals.go

    	// Read the jump table to find out where the streams are.
    	// RFC 3.1.1.3.1.6.
    	if off+5 >= len(data) {
    		return nil, r.makeEOFError(off)
    	}
    	if totalStreamsSize < 6 {
    		return nil, r.makeError(off, "total streams size too small for jump table")
    	}
    	// RFC 3.1.1.3.1.6.
    	// "The decompressed size of each stream is equal to (Regenerated_Size+3)/4,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 14:30:10 UTC 2023
    - 8.8K bytes
    - Viewed (0)
Back to top