Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 168 for table_1 (0.09 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/internal/xcoff/file.go

    		impoff = lhdr.Limpoff
    	}
    
    	// Read loader import file ID table
    	if _, err := s.sr.Seek(int64(impoff), io.SeekStart); err != nil {
    		return nil, err
    	}
    	table := make([]byte, istlen)
    	if _, err := io.ReadFull(s.sr, table); err != nil {
    		return nil, err
    	}
    
    	offset := 0
    	// First import file ID is the default LIBPATH value
    	libpath := cstring(table[offset:])
    	f.LibraryPaths = strings.Split(libpath, ":")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 12 14:42:29 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/http2/HpackTest.kt

        // Simulate receiving a small dynamic table size update, that implies eviction.
        bytesIn.writeByte(0x3F) // Dynamic table size update (size = 55).
        bytesIn.writeByte(0x18)
        hpackReader!!.readHeaders()
        assertThat(hpackReader!!.headerCount).isEqualTo(1)
      }
    
      /** Header table backing array is initially 8 long, let's ensure it grows.  */
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top