Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 706 for IsSubstring (0.11 sec)

  1. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/PublicApi.kt

        private val includePackagePatterns: List<Pattern> by lazy {
            includes.map {
                if (it.endsWith("/**")) {
                    Pattern.compile(it.substring(0, it.length - 3).replace("/", "\\.") + "(\\..+)?")
                } else {
                    Pattern.compile(it.substring(0, it.length - 2).replace("/", "\\.") + "\\.[^.]+")
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 11:35:53 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/ParsedModuleStringNotation.java

                if (':' == moduleNotation.charAt(cur)) {
                    String fragment = moduleNotation.substring(idx, cur);
                    assignValue(count, fragment);
                    idx = cur + 1;
                    count++;
                }
            }
            assignValue(count, moduleNotation.substring(idx, cur));
            count++;
            if (count < 2 || count > 4) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/driver/interactive.go

    }
    
    // functionCompleter replaces provided substring with a function
    // name retrieved from a profile if a single match exists. Otherwise,
    // it returns unchanged substring. It defaults to no-op if the profile
    // is not specified.
    func functionCompleter(substring string, fns []string) string {
    	found := ""
    	for _, fName := range fns {
    		if strings.Contains(fName, substring) {
    			if found != "" {
    				return substring
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/http/NtlmHttpFilter.java

                } else {
                    String auth = new String(Base64.decode(msg.substring(6)),
                            "US-ASCII");
                    int index = auth.indexOf(':');
                    String user = (index != -1) ? auth.substring(0, index) : auth;
                    String password = (index != -1) ? auth.substring(index + 1) :
                            "";
                    index = user.indexOf('\\');
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 10.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/filter/EncodingFilter.java

                        locationBuf.append(contextPath);
                    }
                    locationBuf.append('/');
                    locationBuf.append(servletPath.substring(path.length()));
                    boolean append = false;
                    final Map<String, String[]> parameterMap = new HashMap<>(req.getParameterMap());
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  6. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt

                    version = line.substring(line.indexOf("\"", 11) + 1, line.lastIndexOf("\""))
                }
                if (line.startsWith("\"buildTime\"")) {
                    var date = line.substring(line.indexOf("\"", 12) + 1, line.lastIndexOf("\""))
                    date = date.substring(0, 4) + "-" + date.substring(4, 6) + "-" + date.substring(6, 8)
                    versions[version!!] = date
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jun 25 02:53:14 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs-asciidoctor-extensions-base/src/main/java/org/gradle/docs/asciidoctor/IdGenerator.java

            // strip separator from the end
            if (result.endsWith(PART_SEPARATOR)) {
                result = result.substring(0, result.length() - 1);
            }
    
            // string separator from the start
            if (result.startsWith(PART_SEPARATOR)) {
                result = result.substring(1);
            }
            return result;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/main/java/jcifs/smb1/http/NtlmHttpURLConnection.java

                    user = (index != -1) ? userInfo.substring(0, index) : userInfo;
                    if (index != -1) password = userInfo.substring(index + 1);
                    index = user.indexOf('\\');
                    if (index == -1) index = user.indexOf('/');
                    domain = (index != -1) ? user.substring(0, index) : domain;
                    user = (index != -1) ? user.substring(index + 1) : user;
                }
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 20.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/util/NameMatcher.java

                String prefix = name.substring(pos, matcher.start());
                if (prefix.length() > 0) {
                    builder.append(Pattern.quote(prefix));
                }
                builder.append(Pattern.quote(matcher.group()));
                builder.append("[\\p{javaLowerCase}\\p{Digit}]*");
                pos = matcher.end();
            }
            builder.append(Pattern.quote(name.substring(pos)));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:48:18 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/MavenVersionSelectorScheme.java

            }
            if (version.equals(LATEST_RELEASE)) {
                return RELEASE;
            }
            if (version.startsWith("]")) {
                version = '(' + version.substring(1);
            }
            if (version.endsWith("[")) {
                version = version.substring(0, version.length() - 1) + ')';
            }
            return version;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
Back to top