- Sort Score
- Result 10 results
- Languages All
Results 731 - 740 of 1,217 for settings (0.05 sec)
-
docs/es/docs/tutorial/body-nested-models.md
Así, en nuestro ejemplo, podemos hacer que `tags` sea específicamente una "lista de strings": {* ../../docs_src/body_nested_models/tutorial002_py310.py hl[12] *} ## Tipos de conjunto Pero luego pensamos en ello, y nos damos cuenta de que los tags no deberían repetirse, probablemente serían strings únicos. Y Python tiene un tipo de datos especial para conjuntos de elementos únicos, el `set`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 7.5K bytes - Viewed (0) -
docs/sts/web-identity.go
"client_id": {c.ClientID}, } if c.RedirectURL != "" { v.Set("redirect_uri", c.RedirectURL) } if len(c.Scopes) > 0 { v.Set("scope", strings.Join(c.Scopes, " ")) } v.Set("state", state) v.Set("nonce", state) if strings.Contains(c.Endpoint.AuthURL, "?") { buf.WriteByte('&') } else { buf.WriteByte('?') } buf.WriteString(v.Encode()) return buf.String() }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 19 09:13:33 UTC 2023 - 7.8K bytes - Viewed (0) -
cmd/bucket-replication-utils.go
} if len(s) == 0 { return } for p := range strings.SplitSeq(s, ",") { if p == "" { continue } slc := strings.Split(p, "=") if len(slc) != 2 { return r, errInvalidReplicateDecisionFormat } tgtStr := strings.TrimSuffix(strings.TrimPrefix(slc[1], `"`), `"`) tgt := strings.Split(tgtStr, ";") if len(tgt) != 4 { return r, errInvalidReplicateDecisionFormat
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 26K bytes - Viewed (0) -
src/test/java/jcifs/http/HandlerTest.java
URLStreamHandlerFactory mockFactory = mock(URLStreamHandlerFactory.class); assertDoesNotThrow(() -> Handler.setURLStreamHandlerFactory(mockFactory), "Setting the factory for the first time should not throw an exception."); } @Test void testSetURLStreamHandlerFactory_ThrowsIllegalStateExceptionOnSecondAttempt() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.1K bytes - Viewed (0) -
compat/maven-builder-support/pom.xml
<version>4.1.0-SNAPSHOT</version> </parent> <artifactId>maven-builder-support</artifactId> <name>Maven Builder Support (deprecated)</name> <description>Support for descriptor builders (model, setting, toolchains)</description> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-api-core</artifactId> <scope>provided</scope> </dependency>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Sun Jun 29 22:37:39 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/jcifs/util/transport/MessageTest.java
// Set null payload and verify message.setRawPayload(null); assertNull(message.getRawPayload(), "rawPayload should be null after setting null"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcMessageTest.java
@DisplayName("setFlag should add specified flags") void testSetFlag() { // Test setting a new flag message.flags = 0; message.setFlag(DcerpcConstants.RPC_C_PF_BROADCAST); assertTrue(message.isFlagSet(DcerpcConstants.RPC_C_PF_BROADCAST)); // Test setting an already existing flag message.flags = DcerpcConstants.RPC_C_PF_BROADCAST;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.3K bytes - Viewed (0) -
cmd/httprange.go
if !strings.HasPrefix(rangeString, byteRangePrefix) { return nil, fmt.Errorf("'%s' does not start with '%s'", rangeString, byteRangePrefix) } // Trim byte range prefix. byteRangeString := strings.TrimPrefix(rangeString, byteRangePrefix) // Check if range string contains delimiter '-', else return error. eg. "bytes=8" sepIndex := strings.Index(byteRangeString, "-") if sepIndex == -1 {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/WebApiUtil.java
*/ package org.codelibs.fess.util; import org.codelibs.fess.exception.WebApiException; import org.lastaflute.web.util.LaRequestUtil; /** * Utility class for web API operations. * Provides functionality for setting and retrieving objects from request attributes, * error handling, and validation in web API context. */ public final class WebApiUtil { /** * Request attribute key for storing web API exceptions. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/EncodingHelper.java
import java.util.Locale; import java.util.Map; import org.codelibs.core.lang.StringUtil; /** * EncodingHelper provides utility methods for managing and normalizing character encodings. * It allows setting a default encoding, mapping various encoding names to preferred ones, * and normalizing an encoding string to its preferred form or the default if no mapping is found. */ public class EncodingHelper {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.2K bytes - Viewed (0)