Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 110 for ditamap (0.14 sec)

  1. fess-crawler-lasta/src/test/java/org/codelibs/fess/crawler/util/CrawlerWebServer.java

                buf = new StringBuilder();
                buf.append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>").append('\n');
                buf.append("<urlset ").append("xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">").append('\n');
                buf.append("<url>").append('\n');
                buf.append("<loc>http://localhost:7070/index.html</loc>").append('\n');
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typebits/typebits.go

    // license that can be found in the LICENSE file.
    
    package typebits
    
    import (
    	"cmd/compile/internal/base"
    	"cmd/compile/internal/bitvec"
    	"cmd/compile/internal/types"
    )
    
    // NOTE: The bitmap for a specific type t could be cached in t after
    // the first run and then simply copied into bv at the correct offset
    // on future calls with the same type t.
    func Set(t *types.Type, off int64, bv bitvec.BitVec) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 01:53:41 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/util/CrawlerWebServer.java

                buf = new StringBuilder();
                buf.append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>").append('\n');
                buf.append("<urlset ").append("xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">").append('\n');
                buf.append("<url>").append('\n');
                buf.append("<loc>http://localhost:7070/index.html</loc>").append('\n');
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  4. src/runtime/heapdump.go

    		}
    		n := nptr/8 + 1
    		p := sysAlloc(n, &memstats.other_sys)
    		if p == nil {
    			throw("heapdump: out of memory")
    		}
    		tmpbuf = (*[1 << 30]byte)(p)[:n]
    	}
    	// Convert heap bitmap to pointer bitmap.
    	clear(tmpbuf[:nptr/8+1])
    	s := spanOf(p)
    	tp := s.typePointersOf(p, size)
    	for {
    		var addr uintptr
    		if tp, addr = tp.next(p + size); addr == 0 {
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  5. src/runtime/map.go

    		}
    
    		if oldB >= dst.B { // main bucket bits in dst is less than oldB bits in src
    			dstBmap := (*bmap)(add(dst.buckets, (uintptr(i)&bucketMask(dst.B))*uintptr(t.BucketSize)))
    			for dstBmap.overflow(t) != nil {
    				dstBmap = dstBmap.overflow(t)
    			}
    			pos := 0
    			for srcBmap != nil {
    				dstBmap, pos = moveToBmap(t, dst, dstBmap, pos, srcBmap)
    				srcBmap = srcBmap.overflow(t)
    			}
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  6. pkg/controller/nodeipam/node_ipam_controller.go

    	cidrAllocator ipam.CIDRAllocator
    }
    
    // NewNodeIpamController returns a new node IP Address Management controller to
    // sync instances from cloudprovider.
    // This method returns an error if it is unable to initialize the CIDR bitmap with
    // podCIDRs it has already allocated to nodes. Since we don't allow podCIDR changes
    // currently, this should be handled as a fatal error.
    func NewNodeIpamController(
    	ctx context.Context,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:18:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. cmd/erasure-sets.go

    func (s *erasureSets) getDiskMap() map[Endpoint]StorageAPI {
    	diskMap := make(map[Endpoint]StorageAPI)
    
    	s.erasureDisksMu.RLock()
    	defer s.erasureDisksMu.RUnlock()
    
    	for i := 0; i < s.setCount; i++ {
    		for j := 0; j < s.setDriveCount; j++ {
    			disk := s.erasureDisks[i][j]
    			if disk == OfflineDisk {
    				continue
    			}
    			if !disk.IsOnline() {
    				continue
    			}
    			diskMap[disk.Endpoint()] = disk
    		}
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/device_util.h

     private:
      int id_;
    
      explicit DeviceId(int id) : id_(id) {}
    
      int id() const { return id_; }
    
      friend class DeviceInfoCache;
      friend class DeviceSet;
    };
    
    // A set of DeviceIds, represented as a bitmap.
    class DeviceSet {
     public:
      void Insert(DeviceId device_id);
      void UnionWith(const DeviceSet& other);
      bool IsEmpty() const;
    
      // Calls `func` on each DeviceId in the set.  Stops iterating early if `func`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  9. src/go/doc/comment/parse.go

    		return true
    	}
    	return false
    }
    
    // isHost reports whether c is a byte that can appear in a URL host,
    // like www.example.com or user@[::1]:8080
    func isHost(c byte) bool {
    	// mask is a 128-bit bitmap with 1s for allowed bytes,
    	// so that the byte c can be tested with a shift and an and.
    	// If c > 128, then 1<<c and 1<<(c-64) will both be zero,
    	// and this function will return false.
    	const mask = 0 |
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  10. src/runtime/mgcsweep.go

    			} else {
    				mheap_.freeSpan(s)
    			}
    			if s.largeType != nil && s.largeType.TFlag&abi.TFlagUnrolledBitmap != 0 {
    				// The unrolled GCProg bitmap is allocated separately.
    				// Free the space for the unrolled bitmap.
    				systemstack(func() {
    					s := spanOf(uintptr(unsafe.Pointer(s.largeType)))
    					mheap_.freeManual(s, spanAllocPtrScalarBits)
    				})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top