- Sort Score
- Num 10 results
- Language All
Results 751 - 760 of 836 for urls (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
docs/es/docs/tutorial/security/simple-oauth2.md
/// info | Información En OAuth2 un "scope" es solo un string que declara un permiso específico requerido. No importa si tiene otros caracteres como `:` o si es una URL. Esos detalles son específicos de la implementación. Para OAuth2 son solo strings. /// ## Código para obtener el `username` y `password` { #code-to-get-the-username-and-password }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 10.2K bytes - Click Count (0) -
docs/fr/docs/features.md
* champs String (`str`), définition des longueurs minimale et maximale. * nombres (`int`, `float`) avec valeurs minimale et maximale, etc. * Validation pour des types plus exotiques, comme : * URL. * Email. * UUID. * ... et autres. Toutes les validations sont gérées par le **Pydantic** bien établi et robuste. ### Sécurité et authentification { #security-and-authentication }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 10.7K bytes - Click Count (0) -
docs/ru/docs/advanced/settings.md
Большинство таких настроек являются изменяемыми (могут меняться), например URL базы данных. И многие из них могут быть «чувствительными», например секреты. По этой причине обычно их передают через переменные окружения, которые считываются приложением. /// tip | Совет
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 16.5K bytes - Click Count (0) -
internal/dsync/dsync_test.go
func TestMain(m *testing.M) { startLockServers() // Initialize locker clients for dsync. var clnts []NetLocker for i := range nodes { clnts = append(clnts, newClient(nodes[i].URL)) } ds = &Dsync{ GetLockers: func() ([]NetLocker, string) { return clnts, uuid.New().String() }, Timeouts: Timeouts{ Acquire: testDrwMutexAcquireTimeout,
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 10.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/plugin/AdminPluginAction.java
item.put("id", artifact.getName() + ":" + artifact.getVersion()); item.put("name", artifact.getName()); item.put("version", artifact.getVersion()); item.put("url", artifact.getUrl()); return item; } private Artifact getArtifactFromInstallForm(final InstallForm form) { final String[] values = form.id.split(":");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 11.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/WebFsIndexHelperTest.java
} @Test public void test_constants_coverage() { // Test coverage for private constants indirectly // The DISABLE_URL_ENCODE constant is used in URL processing assertTrue(true); } @Test public void test_getAvailableBoostDocumentRuleList_emptyResult() { // Mock FessConfig with minimal settingsCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 15.6K bytes - Click Count (0) -
docs/tr/docs/tutorial/security/simple-oauth2.md
* `https://www.googleapis.com/auth/drive` Google tarafından kullanılır. /// info | Bilgi OAuth2’de bir "scope", gerekli olan belirli bir izni ifade eden basit bir string’dir. `:` gibi başka karakterler içermesi veya URL olması önemli değildir. Bu detaylar implementasyon’a özeldir. OAuth2 açısından bunlar sadece string’lerdir. /// ## `username` ve `password`’ü Almak İçin Kod { #code-to-get-the-username-and-password }
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 07:53:17 GMT 2026 - 10.4K bytes - Click Count (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/props/MavenProperties.java
import java.io.InputStream; import java.io.InputStreamReader; import java.io.LineNumberReader; import java.io.OutputStream; import java.io.OutputStreamWriter; import java.io.Reader; import java.io.Writer; import java.net.URL; import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java.nio.file.Path; import java.util.AbstractMap; import java.util.AbstractSet; import java.util.ArrayList; import java.util.Collections;
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Wed Jul 23 17:27:08 GMT 2025 - 38.4K bytes - Click Count (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/props/MavenProperties.java
import java.io.InputStream; import java.io.InputStreamReader; import java.io.LineNumberReader; import java.io.OutputStream; import java.io.OutputStreamWriter; import java.io.Reader; import java.io.Writer; import java.net.URL; import java.nio.charset.Charset; import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java.nio.file.Path; import java.util.AbstractMap; import java.util.AbstractSet; import java.util.ArrayList;
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Oct 16 09:03:48 GMT 2025 - 38.5K bytes - Click Count (0) -
docs/fr/docs/tutorial/query-params-str-validations.md
Ensuite, avec une URL comme : ``` http://localhost:8000/items/?q=foo&q=bar ``` vous recevriez les valeurs des multiples paramètres de requête `q` (`foo` et `bar`) dans une `list` Python à l’intérieur de votre fonction de *chemin d'accès*, dans le *paramètre de fonction* `q`. Donc, la réponse pour cette URL serait : ```JSON { "q": [ "foo", "bar"Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 19K bytes - Click Count (0)