Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/SitemapsHelperTest.java

    import java.io.ByteArrayInputStream;
    import java.io.InputStream;
    
    import org.codelibs.core.io.ResourceUtil;
    import org.codelibs.fess.crawler.container.StandardCrawlerContainer;
    import org.codelibs.fess.crawler.entity.Sitemap;
    import org.codelibs.fess.crawler.entity.SitemapSet;
    import org.codelibs.fess.crawler.entity.SitemapUrl;
    import org.codelibs.fess.crawler.exception.CrawlingAccessException;
    import org.dbflute.utflute.core.PlainTestCase;
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  5. src/main/resources/crawler/rule.xml

    			<component class="org.codelibs.fess.crawler.processor.impl.SitemapsResponseProcessor">
    			</component>
    		</property>
    		<postConstruct name="addRule">
    			<arg>"url"</arg>
    			<arg>"http[s]?:.*sitemap[^/]*\.xml.*|http[s]?:.*sitemap[^/]*\.gz.*|http[s]?:.*sitemap[^/]*\.txt.*"</arg>
    		</postConstruct>
    	</component>
    
    	<component name="webHtmlRule" class="org.codelibs.fess.crawler.rule.impl.RegexRule" >
    		<property name="ruleId">"webHtmlRule"</property>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jun 04 08:42:49 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  6. internal/mountinfo/mountinfo_windows.go

    		// Recognize "fixed", "removable", "remote" and "ramdisk" drives as proper drives
    		// which can be treated as an actual mount-point, rest can be ignored.
    		// https://docs.microsoft.com/en-us/windows/desktop/api/fileapi/nf-fileapi-getdrivetypew
    		mountPointCache.Store(path, true)
    		return true
    	}
    	mountPointCache.Store(path, false)
    	return false
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Aug 19 01:35:22 UTC 2021
    - 2K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/util/find_errorline_utils_test.go

    package util
    
    import (
    	"fmt"
    	"testing"
    
    	. "github.com/onsi/gomega"
    
    	legacykube "istio.io/istio/pkg/config/analysis/legacy/source/kube"
    	"istio.io/istio/pkg/config/resource"
    )
    
    var fieldMap = map[string]int{
    	"{.metadata.name}":                                              1,
    	"{.metadata.namespace}":                                         1,
    	"{.metadata.annotations.test}":                                  1,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/io/FilesFileTraverserTest.java

          throws Exception {
        File fileA = newFile("file-a");
        File dir1 = newDir("dir-1");
        newFile("dir-1/file-b");
        newFile("dir-1/dir-2");
    
        assertThat(Iterables.limit(Files.fileTraverser().breadthFirst(rootDir), 3))
            .containsExactly(rootDir, fileA, dir1);
      }
    
      public void testFileTraverser_multipleDirectoryLayers_traversalReturnsAll() throws Exception {
        File fileA = newFile("file-a");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 20:17:27 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  9. pkg/config/resource/origin.go

    type Origin interface {
    	FriendlyName() string
    	Namespace() Namespace
    	Reference() Reference
    
    	// FieldMap returns the flat map containing paths of the fields in the resource as keys,
    	// and their corresponding line numbers as values
    	FieldMap() map[string]int
    	Comparator() string
    
    	// ClusterName returns the cluster name where the resource is located
    	ClusterName() cluster.ID
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/outbuf_windows.go

    	// Windows DOC links:
    	//
    	// https://docs.microsoft.com/en-us/windows/win32/api/memoryapi/nf-memoryapi-flushviewoffile
    	// https://docs.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-flushfilebuffers
    	err = syscall.FlushFileBuffers(syscall.Handle(out.f.Fd()))
    	if err != nil {
    		Exitf("FlushFileBuffers failed: %v", err)
    	}
    	err = syscall.UnmapViewOfFile(uintptr(unsafe.Pointer(&out.buf[0])))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 01:59:25 UTC 2022
    - 2.3K bytes
    - Viewed (0)
Back to top