Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,269 for pattern1 (0.13 sec)

  1. src/strings/search.go

    	// rightmost "abc" (at position 6) is a prefix of the whole pattern, so
    	// goodSuffixSkip[3] == shift+len(suffix) == 6+5 == 11.
    	goodSuffixSkip []int
    }
    
    func makeStringFinder(pattern string) *stringFinder {
    	f := &stringFinder{
    		pattern:        pattern,
    		goodSuffixSkip: make([]int, len(pattern)),
    	}
    	// last is the index of the last character in the pattern.
    	last := len(pattern) - 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 18:49:51 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/staticdata/embed.go

    	// Build list of files to store.
    	have := make(map[string]bool)
    	var list []string
    	for _, e := range *v.Embed {
    		for _, pattern := range e.Patterns {
    			files, ok := base.Flag.Cfg.Embed.Patterns[pattern]
    			if !ok {
    				base.ErrorfAt(e.Pos, 0, "invalid go:embed: build system did not map pattern: %s", pattern)
    			}
    			for _, file := range files {
    				if base.Flag.Cfg.Embed.Files[file] == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 10 18:22:02 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. src/main/assemblies/extension/kibana/README.md

    1. Go to kibana home [http://localhost:5601/](http://localhost:5601/).
    1. Click **Management**.
    1. Click **Index Patterns**.
    1. Click **Create index pattern** button
    1. Input "fess\_log\*" to the textbox of **index pattern**.
    1. Click **Next step**.
    1. Set "requestedAt" to the **Time Filter field name**.
    1. Click **Create index pattern**.
    1. Click **Saved Objects**.
    1. Click **Import** and select "fess\_log.ndjson" to import example settings.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Aug 12 01:26:21 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  4. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/internal/execution/XCTestSelection.java

            }
        }
    
        private String disallowForwardSlash(String testFilter) {
            if (testFilter.contains("/")) {
                throw new IllegalArgumentException(String.format("'%s' is an invalid pattern. Patterns cannot contain forward slash.", testFilter));
            }
            return testFilter;
        }
    
        private String prepareIncludedTest(String testFilter, Set<String> testSuiteCache) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  5. src/io/fs/glob.go

    	}
    	if fsys, ok := fsys.(GlobFS); ok {
    		return fsys.Glob(pattern)
    	}
    
    	// Check pattern is well-formed.
    	if _, err := path.Match(pattern, ""); err != nil {
    		return nil, err
    	}
    	if !hasMeta(pattern) {
    		if _, err = Stat(fsys, pattern); err != nil {
    			return nil, nil
    		}
    		return []string{pattern}, nil
    	}
    
    	dir, file := path.Split(pattern)
    	dir = cleanGlobPath(dir)
    
    	if !hasMeta(dir) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:25:50 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. pilot/pkg/security/authz/builder/extauthz.go

    			pattern.MatchPattern = &envoy_type_matcher_v3.StringMatcher_Prefix{
    				Prefix: strings.TrimSuffix(header, "*"),
    			}
    		} else {
    			pattern.MatchPattern = &envoy_type_matcher_v3.StringMatcher_Exact{
    				Exact: header,
    			}
    		}
    		patterns = append(patterns, pattern)
    	}
    	return &envoy_type_matcher_v3.ListStringMatcher{Patterns: patterns}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/DefaultCppComponent.java

        public FileTree getHeaderFiles() {
            PatternSet patterns = new PatternSet();
            // if you would like to add more endings to this pattern, make sure to also edit DefaultCppLibrary.java and default.vcxproj.filters
            patterns.include("**/*.h");
            patterns.include("**/*.hpp");
            patterns.include("**/*.h++");
            patterns.include("**/*.hxx");
            patterns.include("**/*.hm");
            patterns.include("**/*.inl");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 04:34:07 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    	if search.IsMetaPackage(q.pattern) {
    		panic(fmt.Sprintf("internal error: queryNone called with pattern %q", q.pattern))
    	}
    
    	if !q.isWildcard() {
    		q.pathOnce(q.pattern, func() pathSet {
    			hasModRoot := modload.HasModRoot()
    			if hasModRoot && modload.MainModules.Contains(q.pattern) {
    				v := module.Version{Path: q.pattern}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/util/internal/PatternSpecFactory.java

            }
        }
    
        protected Spec<FileTreeElement> createSpec(Collection<String> patterns, boolean include, boolean caseSensitive) {
            if (patterns.isEmpty()) {
                return include ? Specs.satisfyAll() : Specs.satisfyNone();
            }
    
            PatternMatcher matcher = PatternMatcherFactory.getPatternsMatcher(include, caseSensitive, patterns);
    
            return new RelativePathSpec(matcher);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 02:21:10 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. src/go/doc/comment/testdata/text8.txt

    To eliminate ambiguity about which module versions are used in the build, the
    arguments must satisfy the following constraints:
    
     - Arguments must be package paths or package patterns (with "..." wildcards).
     They must not be standard packages (like fmt), meta-patterns (std, cmd,
     all), or relative or absolute file paths.
    
     - All arguments must have the same version suffix. Different queries are not
     allowed, even if they refer to the same version.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:48 UTC 2022
    - 3.5K bytes
    - Viewed (0)
Back to top