- Sort Score
- Result 10 results
- Languages All
Results 251 - 260 of 529 for fetches (0.04 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleTest.java
if (!responseData.getUrl().matches(urlCondition)) { return false; } } // Check MIME type condition String mimeTypeCondition = conditions.get("mimeType"); if (mimeTypeCondition != null && responseData.getMimeType() != null) { if (!responseData.getMimeType().matches(mimeTypeCondition)) { return false;
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 22.7K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ServiceManager.java
* will become healthy after all the component services have reached the {@linkplain State#RUNNING * running} state. * * @throws IllegalStateException if the service manager reaches a state from which it cannot * become {@linkplain #isHealthy() healthy}. */ public void awaitHealthy() { state.awaitHealthy(); } /**Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 22 17:49:12 UTC 2025 - 33.2K bytes - Viewed (1) -
android/guava/src/com/google/common/net/InternetDomainName.java
if (!PART_CHAR_MATCHER.matchesAllOf(asciiChars)) { return false; } // No initial or final dashes or underscores. if (DASH_MATCHER.matches(part.charAt(0)) || DASH_MATCHER.matches(part.charAt(part.length() - 1))) { return false; } /* * Note that we allow (in contravention of a strict interpretation of the relevant RFCs) domainRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.9K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/ServiceManager.java
* will become healthy after all the component services have reached the {@linkplain State#RUNNING * running} state. * * @throws IllegalStateException if the service manager reaches a state from which it cannot * become {@linkplain #isHealthy() healthy}. */ public void awaitHealthy() { state.awaitHealthy(); } /**Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Sep 22 17:49:12 UTC 2025 - 32.9K bytes - Viewed (0) -
docs/de/docs/tutorial/index.md
---> 100% ``` </div> /// note | Hinweis Wenn Sie mit `pip install "fastapi[standard]"` installieren, werden einige optionale Standard-Abhängigkeiten mit installiert, einschließlich `fastapi-cloud-cli`, welches Ihnen das Deployment in der <a href="https://fastapicloud.com" class="external-link" target="_blank">FastAPI Cloud</a> ermöglicht.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Sep 20 15:10:09 UTC 2025 - 5.5K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/FindBadMultiLangSnippets.java
} } private static String parseSourceLang(String lineTrimmed) { var m = SOURCE_LANG_PATTERN.matcher(lineTrimmed); if (m.matches()) { return m.group(1).toLowerCase(Locale.ROOT); } return null; } private static Language deduceLanguage(String sourceLang) { if (sourceLang != null) {Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Aug 29 10:12:17 UTC 2025 - 7.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/FindMissingDocumentationFiles.java
// and captures the content within the brackets. Files.readAllLines(file).forEach(line -> { if (line.matches("^\\s*\\[\\[(.*)\\]\\].*")) { String anchorName = line.replaceAll("^\\s*\\[\\[(.*)\\]\\].*$", "$1"); allAnchors.add(anchorName); }Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Aug 21 15:38:58 UTC 2025 - 8.5K bytes - Viewed (0) -
KEYS.md
First, copy the public key block below into a new file called `gradle_pubkey.asc`, then import it with this command: ```bash gpg --import gradle_pubkey.asc ``` Alternatively, you can fetch the key directly from a key server: ```bash gpg --keyserver hkps://keys.openpgp.org --recv-keys 1BD97A6A154E7810EE0BC832E2F38302C8075E3D ``` ### Verifying signatures
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Thu Dec 04 14:29:13 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbSession.java
t = (SmbTree) e.nextElement(); if (t.matches(share, service)) { return t; } } t = new SmbTree(this, share, service); trees.addElement(t); return t; } boolean matches(final NtlmPasswordAuthentication auth) { return this.auth == auth || this.auth.equals(auth); }
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 20.7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTreeImpl.java
} } boolean matches(final String shr, final String servc) { return this.share.equalsIgnoreCase(shr) && (servc == null || servc.startsWith("??") || this.service.equalsIgnoreCase(servc)); } @Override public boolean equals(final Object obj) { if (obj instanceof final SmbTreeImpl tree) { return matches(tree.share, tree.service); }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 30K bytes - Viewed (0)