Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 118 for Sitemap (2.09 sec)

  1. fess-crawler-lasta/src/main/resources/crawler.xml

    	<include path="crawler/extractor.xml"/>
    	<include path="crawler/mimetype.xml"/>
    	<include path="crawler/encoding.xml"/>
    	<include path="crawler/urlconverter.xml"/>
    	<include path="crawler/log.xml"/>
    	<include path="crawler/sitemaps.xml"/>
    
    	<!-- Crawler -->
    	<component name="crawler" class="org.codelibs.fess.crawler.Crawler" instance="prototype" >
    	</component>
    
    	<!-- Crawler Thread -->
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Tue Nov 28 13:40:25 UTC 2017
    - 1.7K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java

        }
    
        protected void addSitemapsFromRobotsTxt(final UrlQueue<?> urlQueue) {
            final String[] sitemaps = crawlerContext.removeSitemaps();
            if (sitemaps != null) {
                for (final String childUrl : sitemaps) {
                    try {
                        storeChildUrl(childUrl, urlQueue.getUrl(), null, urlQueue.getDepth() == null ? 1 : urlQueue.getDepth() + 1);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. docs/debugging/xl-meta/main.go

    							if i > 1 {
    								file = fmt.Sprintf("%s/part.%d", file, i)
    								filemap[file] = make(map[string]string)
    								filemap[file][verID] = fmt.Sprintf("%s/part.%d/shard-%02d-of-%02d", verID, i, idx, ei.V2Obj.EcN+ei.V2Obj.EcM)
    								filemap[file][verID+".json"] = buf.String()
    							}
    							partDataToVerID[dataFile] = [2]string{file, verID}
    						}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:49:23 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  4. src/debug/gosym/pclntab.go

    	strings     map[uint32]string // interned substrings of Data, keyed by offset
    	// fileMap varies depending on the version of the object file.
    	// For ver12, it maps the name to the index in the file table.
    	// For ver116, it maps the name to the offset in filetab.
    	fileMap map[string]uint32
    }
    
    // NOTE(rsc): This is wrong for GOARCH=arm, which uses a quantum of 4,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  5. platforms/jvm/platform-jvm/src/test/groovy/org/gradle/api/java/archives/internal/DefaultManifestTest.groovy

        }
    
        def testInitWithPathFileResolver() {
            TestFile manifestFile = tmpDir.file('somefile')
            def fileMap = [Key2: 'value2File', key4: 'value4File', key6: 'value6File']
            def fileSectionMap = [Keysec2: 'value2Secfile', keysec4: 'value5Secfile', keysec6: 'value6Secfile']
            String content = ''
            fileMap.each {key, value ->
                content += String.format("%s: %s%n", key, value)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/util/mime.map

    image/x-cmu-raster             ras              #
    image/x-portable-anymap        pnm              #
    image/x-portable-bitmap        pbm              #
    image/x-portable-graymap       pgm              #
    image/x-portable-pixmap        ppm              #
    image/x-rgb                    rgb              # RGB Image File
    image/x-xbitmap                xbm              # X-bitmap Image File
    image/x-xpixmap                xpm              # X-pixmap Image File
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 5.9K bytes
    - Viewed (0)
  7. test/fixedbugs/issue15747.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Issue 15747: liveness analysis was marking heap-escaped params live too much,
    // and worse was using the wrong bitmap bits to do so.
    
    package p
    
    var global *[]byte
    
    type Q struct{}
    
    type T struct{ M string }
    
    var b bool
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. security/pkg/pki/ca/selfsignedcarootcertrotator_test.go

    }
    
    func verifyRootCertAndPrivateKey(t *testing.T, shouldMatch bool, itemA, itemB rootCertItem) {
    	isMatched := bytes.Equal(itemA.caSecret.Data[CACertFile], itemB.caSecret.Data[CACertFile])
    	if isMatched != shouldMatch {
    		t.Errorf("Verification of root cert in CA secret failed. Want %v got %v", shouldMatch, isMatched)
    	}
    	isMatched = bytes.Equal(itemA.rootCertInKeyCertBundle, itemB.rootCertInKeyCertBundle)
    	if isMatched != shouldMatch {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 11 23:33:41 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  9. 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)
  10. src/go/types/generate_test.go

    	// If filesToWrite is set, write the generated content to disk.
    	// In the special case of "all", write all files in filemap.
    	write := *filesToWrite != ""
    	var files []string // files to process
    	if *filesToWrite != "" && *filesToWrite != "all" {
    		files = strings.Split(*filesToWrite, ",")
    	} else {
    		for file := range filemap {
    			files = append(files, file)
    		}
    	}
    
    	for _, filename := range files {
    		generate(t, filename, write)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 16.5K bytes
    - Viewed (0)
Back to top