Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 118 for Sitemap (0.2 sec)

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

       */
      @GwtIncompatible // java.io.ObjectOutputStream
      @J2ktIncompatible
      private void writeObject(ObjectOutputStream stream) throws IOException {
        stream.defaultWriteObject();
        Serialization.writeMap(this, stream);
      }
    
      @GwtIncompatible // java.io.ObjectInputStream
      @J2ktIncompatible
      private void readObject(ObjectInputStream stream) throws IOException, ClassNotFoundException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 06 16:06:58 UTC 2023
    - 36.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/constants/constants.go

    	// We need at least more than services, an IPv4 /28 or IPv6 /128 subnet means 14 util addresses
    	MinimumAddressesInPodSubnet = 14
    
    	// PodSubnetNodeMaskMaxDiff is limited to 16 due to an issue with uncompressed IP bitmap in core:
    	// xref: #44918
    	// The node subnet mask size must be no more than the pod subnet mask size + 16
    	PodSubnetNodeMaskMaxDiff = 16
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. pkg/proxy/ipvs/ipset/ipset_test.go

    				Name:       "foo",
    				SetType:    BitmapPort,
    				HashFamily: ProtocolFamilyIPV6,
    				HashSize:   65535,
    				MaxElem:    2048,
    			},
    			expectErr: true,
    			desc:      "should specify right port range for bitmap type set",
    		},
    		{ // case[3]
    			ipset: &IPSet{
    				Name:       "bar",
    				SetType:    HashIPPort,
    				HashFamily: ProtocolFamilyIPV6,
    				HashSize:   0,
    				MaxElem:    2048,
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/MediaType.java

       *
       * @since 20.0
       */
      public static final MediaType VTT_UTF_8 = createConstantUtf8(TEXT_TYPE, "vtt");
    
      /* image types */
      /**
       * <a href="https://en.wikipedia.org/wiki/BMP_file_format">Bitmap file format</a> ({@code bmp}
       * files).
       *
       * @since 13.0
       */
      public static final MediaType BMP = createConstant(IMAGE_TYPE, "bmp");
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  5. src/runtime/symtab.go

    		if b&0x80 == 0 {
    			break
    		}
    		shift += 7
    	}
    	return n, v
    }
    
    type stackmap struct {
    	n        int32   // number of bitmaps
    	nbit     int32   // number of bits in each bitmap
    	bytedata [1]byte // bitmaps, each starting on a byte boundary
    }
    
    // stackmapdata should be an internal detail,
    // but widely used packages access it using linkname.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  6. guava/src/com/google/common/net/MediaType.java

       *
       * @since 20.0
       */
      public static final MediaType VTT_UTF_8 = createConstantUtf8(TEXT_TYPE, "vtt");
    
      /* image types */
      /**
       * <a href="https://en.wikipedia.org/wiki/BMP_file_format">Bitmap file format</a> ({@code bmp}
       * files).
       *
       * @since 13.0
       */
      public static final MediaType BMP = createConstant(IMAGE_TYPE, "bmp");
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Aug 07 16:17:10 UTC 2023
    - 46.2K bytes
    - Viewed (0)
  7. fess-crawler-lasta/src/main/resources/crawler/extractor.xml

    				"image/x-freehand",
    				"image/x-jp2-codestream",
    				"image/x-jp2-container",
    				"image/x-niff",
    				"image/x-pcx",
    				"image/x-pict",
    				"image/x-portable-anymap",
    				"image/x-portable-bitmap",
    				"image/x-portable-graymap",
    				"image/x-portable-pixmap",
    				"image/x-raw-adobe",
    				"image/x-raw-hasselblad",
    				"image/x-raw-fuji",
    				"image/x-raw-canon",
    				"image/x-raw-kodak",
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sat Aug 01 21:40:30 UTC 2020
    - 49K bytes
    - Viewed (0)
  8. src/regexp/regexp.go

    func (re *Regexp) ReplaceAllFunc(src []byte, repl func([]byte) []byte) []byte {
    	return re.replaceAll(src, "", 2, func(dst []byte, match []int) []byte {
    		return append(dst, repl(src[match[0]:match[1]])...)
    	})
    }
    
    // Bitmap used by func special to check whether a character needs to be escaped.
    var specialBytes [16]byte
    
    // special reports whether byte b needs to be escaped by QuoteMeta.
    func special(b byte) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    		// may be larger than we expect.
    		return
    	}
    	_, _, line, _ := runtime.Caller(1)
    	t.Errorf("line %d: heapBits incorrect for %v\nhave %v\nwant %v", line, typ, heapBits, bits)
    }
    
    func verifyGCBitsSlice(t *testing.T, typ Type, cap int, bits []byte) {
    	// Creating a slice causes the runtime to repeat a bitmap,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. src/reflect/type.go

    		etyp = ptrTo(etyp)
    	}
    
    	// Prepare GC data if any.
    	// A bucket is at most bucketSize*(1+maxKeySize+maxValSize)+ptrSize bytes,
    	// or 2064 bytes, or 258 pointer-size words, or 33 bytes of pointer bitmap.
    	// Note that since the key and value are known to be <= 128 bytes,
    	// they're guaranteed to have bitmaps instead of GC programs.
    	var gcdata *byte
    	var ptrdata uintptr
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
Back to top