Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 110 for ditamap (0.2 sec)

  1. src/cmd/link/internal/loader/loader.go

    }
    
    // return current length of bitmap in bits.
    func (bm Bitmap) Len() int {
    	return len(bm) * 32
    }
    
    // return the number of bits set.
    func (bm Bitmap) Count() int {
    	s := 0
    	for _, x := range bm {
    		s += bits.OnesCount32(x)
    	}
    	return s
    }
    
    func MakeBitmap(n int) Bitmap {
    	return make(Bitmap, (n+31)/32)
    }
    
    // growBitmap insures that the specified bitmap has enough capacity,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  2. src/runtime/mpagecache.go

    // a pageCachePages*pageSize chunk of memory with 0 or more free
    // pages in it.
    type pageCache struct {
    	base  uintptr // base address of the chunk
    	cache uint64  // 64-bit bitmap representing free pages (1 means free)
    	scav  uint64  // 64-bit bitmap representing scavenged pages (1 means scavenged)
    }
    
    // empty reports whether the page cache has no free pages.
    func (c *pageCache) empty() bool {
    	return c.cache == 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:30:00 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/RobotsTxtHelper.java

        protected static final Pattern CRAWL_DELAY_RECORD = Pattern.compile("^crawl-delay:\\s*([^\\s]+)\\s*$", Pattern.CASE_INSENSITIVE);
    
        protected static final Pattern SITEMAP_RECORD = Pattern.compile("^sitemap:\\s*([^\\s]+)\\s*$", Pattern.CASE_INSENSITIVE);
    
        protected boolean enabled = true;
    
        public RobotsTxt parse(final InputStream stream) {
            return parse(stream, Constants.UTF_8);
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  4. src/runtime/mpallocbits_test.go

    		i, n uint // bit range to popcnt over.
    		want uint // expected popcnt result on that range.
    	}
    	tests := map[string]struct {
    		init  []BitRange // bit ranges to set to 1 in the bitmap.
    		tests []test     // a set of popcnt tests to run over the bitmap.
    	}{
    		"None": {
    			tests: []test{
    				{0, 1, 0},
    				{5, 3, 0},
    				{2, 11, 0},
    				{PallocChunkPages/4 + 1, PallocChunkPages / 2, 0},
    				{0, PallocChunkPages, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 22:00:17 UTC 2020
    - 13.7K bytes
    - Viewed (0)
  5. pkg/registry/core/service/portallocator/storage/storage_test.go

    	}
    
    	// Allocate a port inside the valid port range
    	if err := storage.Allocate(30100); err != nil {
    		t.Fatal(err)
    	}
    
    	// Try to allocate the same port in the local bitmap
    	// The local bitmap stores the offset of the port
    	// offset = port - base (30100 - 30000 = 100)
    	ok, err := backing.Allocate(100)
    	if err != nil {
    		t.Fatal(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 07:15:02 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  6. src/runtime/mheap.go

    	spans [pagesPerArena]*mspan
    
    	// pageInUse is a bitmap that indicates which spans are in
    	// state mSpanInUse. This bitmap is indexed by page number,
    	// but only the bit corresponding to the first page in each
    	// span is used.
    	//
    	// Reads and writes are atomic.
    	pageInUse [pagesPerArena / 8]uint8
    
    	// pageMarks is a bitmap that indicates which spans have any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  7. pkg/controller/nodeipam/ipam/cidrset/cidr_set.go

    	nextCandidate int
    	// used is a bitmap used to track the CIDRs allocated
    	used big.Int
    	// label is used to identify the metrics
    	label string
    }
    
    const (
    	// The subnet mask size cannot be greater than 16 more than the cluster mask size
    	// TODO: https://github.com/kubernetes/kubernetes/issues/44918
    	// clusterSubnetMaxDiff limited to 16 due to the uncompressed bitmap
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 11 08:53:03 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  8. src/internal/abi/type.go

    )
    
    // MaxPtrmaskBytes is the maximum length of a GC ptrmask bitmap,
    // which holds 1-bit entries describing where pointers are in a given type.
    // Above this length, the GC information is recorded as a GC program,
    // which can express repetition compactly. In either form, the
    // information is used by the runtime to initialize the heap bitmap,
    // and for large types (like 128 or more words), they are roughly the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/pcln.go

    	ldr.SetAttrReachable(state.findfunctab, true)
    	ldr.SetAttrLocal(state.findfunctab, true)
    }
    
    // findContainerSyms returns a bitmap, indexed by symbol number, where there's
    // a 1 for every container symbol.
    func (ctxt *Link) findContainerSyms() loader.Bitmap {
    	ldr := ctxt.loader
    	container := loader.MakeBitmap(ldr.NSym())
    	// Find container symbols and mark them as such.
    	for _, s := range ctxt.Textp {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

     */
    package org.codelibs.fess.crawler.entity;
    
    import org.codelibs.core.lang.StringUtil;
    
    /**
     * @author shinsuke
     *
     */
    public class SitemapUrl implements Sitemap {
    
        private static final long serialVersionUID = 1L;
    
        /**
         * URL of the page. This URL must begin with the protocol (such as http) and
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top