Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 164 for table_1 (0.26 sec)

  1. tests/scan_test.go

    		ID   uint
    		Name string
    		Age  int
    	}
    
    	var res result
    	DB.Table("users").Select("id, name, age").Where("id = ?", user3.ID).Scan(&res)
    	if res.ID != user3.ID || res.Name != user3.Name || res.Age != int(user3.Age) {
    		t.Fatalf("Scan into struct should work, got %#v, should %#v", res, user3)
    	}
    
    	var resPointer *result
    	if err := DB.Table("users").Select("id, name, age").Where("id = ?", user3.ID).Scan(&resPointer).Error; err != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/CompactHashMap.java

      /**
       * Maximum allowed length of a hash table bucket before falling back to a j.u.LinkedHashMap-based
       * implementation. Experimentally determined.
       */
      private static final int MAX_HASH_BUCKET_LENGTH = 9;
    
      // The way the `table`, `entries`, `keys`, and `values` arrays work together is as follows.
      //
      // The `table` array always has a size that is a power of 2. The hashcode of a key in the map
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.7K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/dsl/org.gradle.buildinit.tasks.InitBuild.xml

                    <td><literal>true</literal></td>
                </tr>
            </table>
        </section>
        <section>
            <title>Methods</title>
            <table>
                <thead>
                    <tr>
                        <td>Name</td>
                    </tr>
                </thead>
            </table>
        </section>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 15:24:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/RegularImmutableMap.java

        return makeImmutable(entry, entry.getKey(), entry.getValue());
      }
    
      private RegularImmutableMap(
          Entry<K, V>[] entries, @CheckForNull @Nullable ImmutableMapEntry<K, V>[] table, int mask) {
        this.entries = entries;
        this.table = table;
        this.mask = mask;
      }
    
      /**
       * Checks if the given key already appears in the hash chain starting at {@code keyBucketHead}. If
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. tools/istio-iptables/pkg/constants/constants.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package constants
    
    import (
    	"time"
    
    	"istio.io/istio/pkg/env"
    )
    
    // iptables tables
    const (
    	MANGLE = "mangle"
    	NAT    = "nat"
    	FILTER = "filter"
    	RAW    = "raw"
    )
    
    // Built-in iptables chains
    const (
    	INPUT       = "INPUT"
    	OUTPUT      = "OUTPUT"
    	FORWARD     = "FORWARD"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 01:42:30 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/builder/testdata/append-single.golden

    -t table -N chain
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 49 bytes
    - Viewed (0)
  7. tools/istio-iptables/pkg/builder/testdata/insert-single.golden

    -t table -N chain
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 14:29:54 UTC 2024
    - 51 bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/flags.cc

               "\"xla_compile_cache\""),
          Flag("tf_xla_sparse_core_disable_table_stacking",
               &sparse_core_flags->tf_xla_sparse_core_disable_table_stacking,
               "Disable table stacking for all the tables passed to the SparseCore"
               "mid level API."),
          Flag("tf_xla_sparse_core_minibatch_max_division_level",
               &sparse_core_flags->tf_xla_sparse_core_minibatch_max_division_level,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 17 18:52:57 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  9. cni/pkg/iptables/iptables.go

    	//
    	// Extreme corner case:
    	// If for some reason your host had both binaries, and you were injecting out-of-band
    	// iptables rules within a pod context into `legacy` tables, but your host context preferred
    	// `nft`, we would still inject our rules in-pod into nft tables, which is a bit wonky.
    	//
    	// But that's stunningly unlikely (and would still work either way)
    	iptVer, err := ext.DetectIptablesVersion(false)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 21:45:18 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  10. src/image/gif/writer.go

    		if err != nil && e.err == nil {
    			e.err = err
    			return
    		}
    		e.write(e.globalColorTable[:e.globalCT])
    	} else {
    		// All frames have a local color table, so a global color table
    		// is not needed.
    		e.buf[0] = 0x00
    		e.buf[1] = 0x00 // Background Color Index.
    		e.buf[2] = 0x00 // Pixel Aspect Ratio.
    		e.write(e.buf[:3])
    	}
    
    	// Add animation info if necessary.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:38:09 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top