Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 515 for Patches (0.05 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/source/SourceMetaDataVisitor.java

    1. findAnnotations(methodDeclaration, methodMetaData);
    2. extractParameters(methodDeclaration, methodMetaData);
    3.  
    4. Matcher matcher = GETTER_METHOD_NAME.matcher(name);
    5. if (matcher.matches()) {
    6. int startName = matcher.start(2);
    7. String propName = name.substring(startName, startName + 1).toLowerCase(Locale.ROOT) + name.substring(startName + 1);
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Mon Aug 19 15:07:24 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  2. cmd/metacache-entries.go

    1. func (e metaCacheEntry) hasPrefix(s string) bool {
    2. return strings.HasPrefix(e.name, s)
    3. }
    4.  
    5. // matches returns if the entries have the same versions.
    6. // If strict is false we allow signatures to mismatch.
    7. func (e *metaCacheEntry) matches(other *metaCacheEntry, strict bool) (prefer *metaCacheEntry, matches bool) {
    8. if e == nil && other == nil {
    9. return nil, true
    10. }
    11. if e == nil {
    12. return other, false
    13. }
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Aug 08 15:29:58 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/base/StringsTest.java

    1. }
    2.  
    3. @GwtIncompatible // GWT reflection includes less data
    4. public void testLenientFormat_badArgumentToString() {
    5. assertThat(Strings.lenientFormat("boiler %s plate", new ThrowsOnToString()))
    6. .matches(
    7. // J2kt nested class name does not use "$"
    8. "boiler <com\\.google\\.common\\.base\\.StringsTest[.$]ThrowsOnToString@[0-9a-f]+ "
    9. + "threw java\\.lang\\.UnsupportedOperationException> plate");
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Sep 17 18:14:12 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. src/main/webapp/js/clipboard.min.js

    ,Array.prototype.map.call(t,function(t){return i(t,e,n,o,r)}))}},function(t,e){if("undefined"!=typeof Element&&!Element.prototype.matches){var n=Element.prototype;n.matches=n.matchesSelector||n.mozMatchesSelector||n.msMatchesSelector||n.oMatchesSelector||n.webkitMatchesSelector}t.exports=function(t,e){for(;t&&9!==t.nodeType;){if("function"==typeof t.matches&&t.matches(e))return t;t=t.parentNode}}}])});...
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat May 28 04:16:16 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/base/internal/Finalizer.java

    1. break;
    2. }
    3. } catch (InterruptedException e) {
    4. // ignore
    5. }
    6. }
    7. }
    8.  
    9. /**
    10. * Cleans up the given reference and any other references already in the queue. Catches and logs
    11. * all throwables.
    12. *
    13. * @return true if the caller should continue to wait for more references to be added to the
    14. * queue, false if the associated FinalizableReferenceQueue is no longer referenced.
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Aug 23 12:54:09 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/client/ftp/FtpAuthenticationHolder.java

    1. }
    2.  
    3. public FtpAuthentication get(final String path) {
    4. if (path == null) {
    5. return null;
    6. }
    7.  
    8. for (final FtpAuthentication auth : authList) {
    9. if (auth.matches(path)) {
    10. return auth;
    11. }
    12. }
    13. return null;
    14. }
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. src/main/java/jcifs/smb1/smb1/SmbTree.java

    1. if( service != null && service.startsWith( "??" ) == false ) {
    2. this.service = service;
    3. }
    4. this.service0 = this.service;
    5. this.connectionState = 0;
    6. }
    7.  
    8. boolean matches( String share, String service ) {
    9. return this.share.equalsIgnoreCase( share ) &&
    10. ( service == null || service.startsWith( "??" ) ||
    11. this.service.equalsIgnoreCase( service ));
    12. }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 8K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/XpathTransformer.java

    1. // TODO support other type
    2. return "</doc>";
    3. }
    4.  
    5. protected String trimSpace(final String value) {
    6. if (trimSpaceEnabled) {
    7. final Matcher matcher = SPACE_PATTERN.matcher(value);
    8. return matcher.replaceAll(" ").trim();
    9. }
    10. return value;
    11. }
    12.  
    13. public void addFieldRule(final String name, final String xpath) {
    14. fieldRuleMap.put(name, xpath);
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Sat Oct 12 01:40:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  9. cmd/handler-utils.go

    1. }
    2. return path, nil
    3. }
    4.  
    5. var regexVersion = regexp.MustCompile(`^/minio.*/(v\d+)/.*`)
    6.  
    7. func extractAPIVersion(r *http.Request) string {
    8. if matches := regexVersion.FindStringSubmatch(r.URL.Path); len(matches) > 1 {
    9. return matches[1]
    10. }
    11. return "unknown"
    12. }
    13.  
    14. func methodNotAllowedHandler(api string) func(w http.ResponseWriter, r *http.Request) {
    15. return errorResponseHandler
    16. }
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (1)
  10. src/main/java/org/codelibs/fess/api/WebApiManagerFactory.java

    1. }
    2.  
    3. public WebApiManager get(final HttpServletRequest request) {
    4. for (final WebApiManager webApiManager : webApiManagers) {
    5. if (webApiManager.matches(request)) {
    6. return webApiManager;
    7. }
    8. }
    9. return null;
    10. }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top