- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 389 for tag6 (0.03 sec)
-
docs/es/docs/tutorial/metadata.md
/// ### Usar tus etiquetas Usa el parámetro `tags` con tus *path operations* (y `APIRouter`s) para asignarlas a diferentes etiquetas: {* ../../docs_src/metadata/tutorial004.py hl[21,26] *} /// info | Información Lee más sobre etiquetas en [Configuración de Path Operation](path-operation-configuration.md#tags){.internal-link target=_blank}. /// ### Revisa la documentación
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 6.1K bytes - Viewed (0) -
docs/uk/docs/tutorial/body-nested-models.md
Отже, у нашому прикладі, ми можемо зробити `tags` саме "списком рядків": {* ../../docs_src/body_nested_models/tutorial002_py310.py hl[12] *} ## Типи множин Але потім ми подумали, що теги не повинні повторюватися, вони, ймовірно, повинні бути унікальними рядками. І Python має спеціальний тип даних для множин унікальних елементів — це `set`. Тому ми можемо оголосити `tags` як множину рядків:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri Feb 28 14:18:01 UTC 2025 - 10.8K bytes - Viewed (0) -
schema/index.go
for _, value := range strings.Split(field.Tag.Get("gorm"), ";") { if value != "" { v := strings.Split(value, ":") k := strings.TrimSpace(strings.ToUpper(v[0])) if k == "INDEX" || k == "UNIQUEINDEX" { var ( name string tag = strings.Join(v[1:], ":") idx = strings.IndexByte(tag, ',') tagSetting = strings.Join(strings.Split(tag, ",")[1:], ",")
Registered: Sun Sep 07 09:35:13 UTC 2025 - Last Modified: Wed May 21 02:35:56 UTC 2025 - 3.8K bytes - Viewed (0) -
src/test/java/jcifs/spnego/NegTokenInitTest.java
// Tag [3] byte[] tokenTag3 = buildInitToken(new ASN1ObjectIdentifier[] { OID_KRB }, null, null, mic, false, null, null, null); NegTokenInit p3 = new NegTokenInit(tokenTag3); assertArrayEquals(mic, p3.getMechanismListMIC(), "MIC should be parsed from tag [3]"); } @Test @DisplayName("Tag [3] MIC with non-OctetString is ignored (no crash)")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21K bytes - Viewed (0) -
docs/ru/docs/tutorial/body-nested-models.md
{* ../../docs_src/body_nested_models/tutorial002_py310.py hl[12] *} ## Типы множеств Но затем мы подумали и поняли, что теги не должны повторяться и, вероятно, они должны быть уникальными строками. И в Python есть специальный тип данных для множеств уникальных элементов - `set`. Тогда мы можем обьявить поле `tags` как множество строк:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 12.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/PrunedTag.java
/** * Creates a new PrunedTag instance with the specified tag name. * * @param tag the HTML tag name to match (e.g., "div", "span", "p") */ public PrunedTag(final String tag) { this.tag = tag; } /** * Checks if this pruned tag configuration matches the given DOM node. * The matching is based on tag name, and optionally ID, CSS class, or custom attributes. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/BasicDerAdapter.kt
/** * Handles basic types that always use the same tag. This supports optional types and may set a type * hint for further adapters to process. * * Types like ANY and CHOICE that don't have a consistent tag cannot use this. */ internal data class BasicDerAdapter<T>( private val name: String, /** The tag class this adapter expects, or -1 to match any tag class. */ val tagClass: Int, /** The tag this adapter expects, or -1 to match any tag. */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 4.4K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.storage_bucket_name=Bucket Name labels.storage_file=File labels.storage_folder_name=Folder Name labels.storage_button_download=Download labels.storage_button_tags=Tags labels.storage_title_tag=Tag: labels.storage_tag_key=Tag Key labels.storage_tag_value=Tag Value labels.login.newpassword=You need to update your password labels.login.placeholder_new_password=New Password
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
docs/ko/docs/tutorial/body-nested-models.md
``` 이 모든 것은 타입 선언을 위한 표준 파이썬 문법입니다. 내부 타입을 갖는 모델 어트리뷰트에 대해 동일한 표준 문법을 사용하세요. 마찬가지로 예제에서 `tags`를 구체적으로 "문자열의 리스트"로 만들 수 있습니다: {* ../../docs_src/body_nested_models/tutorial002.py hl[14] *} ## 집합 타입 그런데 생각해보니 태그는 반복되면 안 되고, 고유한(Unique) 문자열이어야 할 것 같습니다. 그리고 파이썬은 집합을 위한 특별한 데이터 타입 `set`이 있습니다. 그렇다면 `Set`을 임포트 하고 `tags`를 `str`의 `set`으로 선언할 수 있습니다: {* ../../docs_src/body_nested_models/tutorial003.py hl[1,14] *}
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 7.3K bytes - Viewed (0) -
cmd/post-policy-fan-out.go
// along with this program. If not, see <http://www.gnu.org/licenses/>. package cmd import ( "bytes" "context" "maps" "sync" "github.com/minio/minio-go/v7" "github.com/minio/minio-go/v7/pkg/tags" "github.com/minio/minio/internal/crypto" "github.com/minio/minio/internal/hash" xhttp "github.com/minio/minio/internal/http" "github.com/minio/minio/internal/kms" ) type fanOutOptions struct {
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 3.5K bytes - Viewed (0)