Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 168 for vtable (0.09 sec)

  1. guava/src/com/google/common/base/CharMatcher.java

      }
    
      /** Fast matcher using a {@link BitSet} table of matching characters. */
      @GwtIncompatible // used only from other GwtIncompatible code
      private static final class BitSetMatcher extends NamedFastMatcher {
    
        private final BitSet table;
    
        private BitSetMatcher(BitSet table, String description) {
          super(description);
          if (table.length() + Long.SIZE < table.size()) {
            table = (BitSet) table.clone();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/css/manual.css

    	text-align: left;
    }
    
    table tr th,
    table tr td {
    	padding: 0.5625em 0.625em;
    	font-size: inherit;
    	color: var(--num-color);
    }
    
    table tr.even,
    table tr.alt,
    table tr:nth-of-type(even) {
    	background: var(--nav-color);
    }
    
    table thead tr th,
    table tfoot tr th,
    table tbody tr td,
    table tr td,
    table tfoot tr td {
    	display: table-cell;
    	line-height: 1.6;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

          return ResolveThenFunction(table);
        }
    
        // Resolve the else branch function.
        // Prefer passing in SymbolTableCollection to reduce lookup costs by
        // enabling reusing cached symbol table lookup.
        func::FuncOp ResolveElseFunction(::mlir::SymbolTableCollection* table) {
          if (table)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  4. docs/bucket/notifications/README.md

    ### Step 3: Enable MySQL bucket notification using MinIO client
    
    We will now setup bucket notifications on a bucket named `images`. Whenever a JPEG image object is created/overwritten, a new row is added or an existing row is updated in the MySQL table configured above. When an existing object is deleted, the corresponding row is deleted from the MySQL table. Thus, the rows in the MySQL table, reflect the `.jpg` objects in the `images` bucket.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier.go

    func (proxier *Proxier) createAndLinkKubeChain() {
    	for _, ch := range iptablesChains {
    		if _, err := proxier.iptables.EnsureChain(ch.table, ch.chain); err != nil {
    			proxier.logger.Error(err, "Failed to ensure chain exists", "table", ch.table, "chain", ch.chain)
    			return
    		}
    		if ch.table == utiliptables.TableNAT {
    			proxier.natChains.Write(utiliptables.MakeChainLine(ch.chain))
    		} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  6. tests/query_test.go

    	}
    
    	// SELECT COALESCE(age,'42') FROM users;
    	r = dryDB.Table("users").Select("COALESCE(age,?)", 42).Find(&User{})
    	if !regexp.MustCompile(`SELECT COALESCE\(age,.*\) FROM .*users.*`).MatchString(r.Statement.SQL.String()) {
    		t.Fatalf("Build Select with func, but got %v", r.Statement.SQL.String())
    	}
    
    	// named arguments
    	r = dryDB.Table("users").Select("COALESCE(age, @default)", sql.Named("default", 42)).Find(&User{})
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  7. pkg/proxy/iptables/proxier.go

    		for _, jump := range append(iptablesJumpChains, iptablesKubeletJumpChains...) {
    			if _, err := proxier.iptables.EnsureChain(jump.table, jump.dstChain); err != nil {
    				proxier.logger.Error(err, "Failed to ensure chain exists", "table", jump.table, "chain", jump.dstChain)
    				return
    			}
    			args := jump.extraArgs
    			if jump.comment != "" {
    				args = append(args, "-m", "comment", "--comment", jump.comment)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Synchronized.java

          Table<R, C, V> table(Table<R, C, V> table, @CheckForNull Object mutex) {
        return new SynchronizedTable<>(table, mutex);
      }
    
      static final class SynchronizedTable<
              R extends @Nullable Object, C extends @Nullable Object, V extends @Nullable Object>
          extends SynchronizedObject implements Table<R, C, V> {
    
        SynchronizedTable(Table<R, C, V> delegate, @CheckForNull Object mutex) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Synchronized.java

          Table<R, C, V> table(Table<R, C, V> table, @CheckForNull Object mutex) {
        return new SynchronizedTable<>(table, mutex);
      }
    
      static final class SynchronizedTable<
              R extends @Nullable Object, C extends @Nullable Object, V extends @Nullable Object>
          extends SynchronizedObject implements Table<R, C, V> {
    
        SynchronizedTable(Table<R, C, V> delegate, @CheckForNull Object mutex) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/collect/MapsTest.java

        // In JDK8, table is set lazily, so it may be null.
        return table == null ? 0 : table.length;
      }
    
      public void testCapacityForLargeSizes() {
        int[] largeExpectedSizes =
            new int[] {
              Integer.MAX_VALUE / 2 - 1,
              Integer.MAX_VALUE / 2,
              Integer.MAX_VALUE / 2 + 1,
              Integer.MAX_VALUE - 1,
              Integer.MAX_VALUE
            };
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
Back to top