Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 75 for filemap (0.13 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/Sitemap.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.crawler.entity;
    
    import java.io.Serializable;
    
    /**
     * @author shinsuke
     *
     */
    public interface Sitemap extends Serializable {
    
        String getLoc();
    
        String getLastmod();
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 824 bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/debuginfo/v1_1.0_224_frozen.wrong_attr.line.part.pbtxt.debug

    files: "fake/user/code/file_A.py"
    files: "fake/user/code/file_B.py"
    files: "fake/user/code/file_C.py"
    files: "fake/user/code/file_D.py"
    files: "fake/user/code/file_E.py"
    files: "fake/user/code/file_F.py"
    files: "fake/user/code/file_G.py"
    files: "fake/user/code/file_H.py"
    files: "fake/user/code/file_I.py"
    files: "fake/user/code/file_J.py"
    files: "fake/user/code/file_K.py"
    files: "fake/user/code/file_L.py"
    files: "fake/user/code/file_M.py"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 11 15:36:55 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/tests/debuginfo/v1_1.0_224_frozen.wrong_attr.stack.part.pbtxt.debug

    files: "fake/user/code/file_A.py"
    files: "fake/user/code/file_B.py"
    files: "fake/user/code/file_C.py"
    files: "fake/user/code/file_D.py"
    files: "fake/user/code/file_E.py"
    files: "fake/user/code/file_F.py"
    files: "fake/user/code/file_G.py"
    files: "fake/user/code/file_H.py"
    files: "fake/user/code/file_I.py"
    files: "fake/user/code/file_J.py"
    files: "fake/user/code/file_K.py"
    files: "fake/user/code/file_L.py"
    files: "fake/user/code/file_M.py"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Dec 11 15:36:55 UTC 2019
    - 3.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/DefaultFilePropertyFactoryTest.groovy

            expect:
            def fileVar = factory.newFileProperty()
            def fileProvider = fileVar.asFile
            !fileVar.present
            fileVar.getOrNull() == null
            !fileProvider.present
            fileProvider.getOrNull() == null
    
            fileVar.set(otherFile)
            fileVar.present
            fileVar.get().getAsFile() == otherFile
            fileProvider.present
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/impl/SitemapsRuleTest.java

            sitemapsRule.addRule("url", Pattern.compile(".*sitemap.*"));
            assertTrue(sitemapsRule.match(responseData));
            InputStream is = responseData.getResponseBody();
            assertTrue(is instanceof InputStream);
            CloseableUtil.closeQuietly(responseData);
        }
    
        private void assertMatchFalse(ResponseData responseData) {
            sitemapsRule.addRule("url", Pattern.compile(".*sitemap.*"));
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapSet.java

        public static final String INDEX = "Index";
    
        private final List<Sitemap> sitemapList = new ArrayList<>();
    
        private String type = URLSET;
    
        public void addSitemap(final Sitemap sitemap) {
            sitemapList.add(sitemap);
        }
    
        public void removeSitemap(final Sitemap sitemap) {
            sitemapList.remove(sitemap);
        }
    
        public Sitemap[] getSitemaps() {
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. fess-crawler/src/test/resources/sitemaps/sitemap2.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
       <sitemap>
          <loc>http://www.example.com/sitemap1.xml.gz</loc>
          <lastmod>2004-10-01T18:23:17+00:00</lastmod>
       </sitemap>
       <sitemap>
          <loc>http://www.example.com/sitemap2.xml.gz</loc>
          <lastmod>2005-01-01</lastmod>
       </sitemap>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 376 bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/extension/wasmplugin.go

    func PopAppendHTTP(list []*hcm.HttpFilter,
    	filterMap map[extensions.PluginPhase][]*model.WasmPluginWrapper,
    	phase extensions.PluginPhase,
    ) []*hcm.HttpFilter {
    	for _, ext := range filterMap[phase] {
    		list = append(list, toEnvoyHTTPFilter(ext))
    	}
    	delete(filterMap, phase)
    	return list
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  9. fess-crawler/src/main/java/org/codelibs/fess/crawler/processor/impl/SitemapsResponseProcessor.java

                final Set<RequestData> requestDataSet = new LinkedHashSet<>();
                for (final Sitemap sitemap : sitemapSet.getSitemaps()) {
                    if (sitemap != null) {
                        requestDataSet.add(RequestDataBuilder.newRequestData().get().url(sitemap.getLoc()).build());
                    }
                }
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. pkg/config/analysis/diag/helper.go

    	return o.name
    }
    
    func (o testOrigin) Namespace() resource.Namespace {
    	return ""
    }
    
    func (o testOrigin) Reference() resource.Reference {
    	return o.ref
    }
    
    func (o testOrigin) FieldMap() map[string]int {
    	return o.fieldMap
    }
    
    type testReference struct {
    	name string
    }
    
    func (r testReference) String() string {
    	return r.name
    }
    
    func MockResource(name string) *resource.Instance {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.6K bytes
    - Viewed (0)
Back to top