Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for 0x00ffffff (0.21 sec)

  1. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

      @Override
      <E extends Comparable<E>> ImmutableSortedSet.Builder<E> builder() {
        return ImmutableSortedSet.naturalOrder();
      }
    
      @Override
      int getComplexBuilderSetLastElement() {
        return 0x00FFFFFF;
      }
    
      public void testLegacyComparable_of() {
        ImmutableSortedSet<LegacyComparable> set0 = ImmutableSortedSet.of();
        assertThat(set0).isEmpty();
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 45.2K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

      @Override
      <E extends Comparable<E>> ImmutableSortedSet.Builder<E> builder() {
        return ImmutableSortedSet.naturalOrder();
      }
    
      @Override
      int getComplexBuilderSetLastElement() {
        return 0x00FFFFFF;
      }
    
      public void testLegacyComparable_of() {
        ImmutableSortedSet<LegacyComparable> set0 = ImmutableSortedSet.of();
        assertThat(set0).isEmpty();
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 07 18:34:03 GMT 2024
    - 46.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/collection/ArrayMap.java

        public boolean containsKey(final Object key) {
            final Entry<K, V>[] tbl = mapTable;
            if (key != null) {
                final int hashCode = key.hashCode();
                final int index = (hashCode & 0x7FFFFFFF) % tbl.length;
                for (Entry<K, V> e = tbl[index]; e != null; e = e.next) {
                    if (e.hashCode == hashCode && key.equals(e.key)) {
                        return true;
                    }
                }
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 20.6K bytes
    - Viewed (1)
  4. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Writer.kt

            streamId = streamId,
            length = length + 4,
            type = TYPE_PUSH_PROMISE,
            flags = if (byteCount == length.toLong()) FLAG_END_HEADERS else 0,
          )
          sink.writeInt(promisedStreamId and 0x7fffffff)
          sink.write(hpackBuffer, length.toLong())
    
          if (byteCount > length) writeContinuationFrames(streamId, byteCount - length)
        }
      }
    
      @Throws(IOException::class)
      fun flush() {
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sat Apr 20 17:03:43 GMT 2024
    - 11.3K bytes
    - Viewed (0)
  5. src/archive/zip/zip_test.go

    	testZip64DirectoryRecordLength(buf, t)
    }
    
    func TestZip64EdgeCase(t *testing.T) {
    	if testing.Short() {
    		t.Skip("slow test; skipping")
    	}
    	t.Parallel()
    	// Test a zip file with uncompressed size 0xFFFFFFFF.
    	// That's the magic marker for a 64-bit file, so even though
    	// it fits in a 32-bit field we must use the 64-bit field.
    	// Go 1.5 and earlier got this wrong,
    	// writing an invalid zip file.
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 19.5K bytes
    - Viewed (0)
  6. cni/pkg/iptables/iptables.go

    		// "--on-ip", "127.0.0.1",
    		"--tproxy-mark", inpodTproxyMark,
    	)
    
    	// CLI: -A ISTIO_OUTPUT -m connmark --mark 0x111/0xfff -j CONNMARK --restore-mark --nfmask 0xffffffff --ctmask 0xffffffff
    	//
    	// DESC: Propagate/restore connmark (if we had one) for outbound
    	iptablesBuilder.AppendRule(
    		iptableslog.UndefinedCommand, ChainInpodOutput, iptablesconstants.MANGLE,
    		"-m", "connmark",
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue May 07 19:54:50 GMT 2024
    - 19.7K bytes
    - Viewed (0)
  7. src/archive/tar/stat_unix.go

    			h.Devmajor, h.Devminor = int64(major), int64(minor)
    		case "darwin", "ios":
    			// Copied from golang.org/x/sys/unix/dev_darwin.go.
    			major := uint32((dev >> 24) & 0xff)
    			minor := uint32(dev & 0xffffff)
    			h.Devmajor, h.Devminor = int64(major), int64(minor)
    		case "dragonfly":
    			// Copied from golang.org/x/sys/unix/dev_dragonfly.go.
    			major := uint32((dev >> 8) & 0xff)
    			minor := uint32(dev & 0xffff00ff)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Mar 15 16:01:50 GMT 2024
    - 3.2K bytes
    - Viewed (0)
Back to top