- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 724 for tag1 (0.03 sec)
-
cmd/erasure-metadata.go
objInfo.Expires = t.UTC() } } // Extract etag from metadata. objInfo.ETag = extractETag(fi.Metadata) // Add user tags to the object info tags := fi.Metadata[xhttp.AmzObjectTagging] if len(tags) != 0 { objInfo.UserTags = tags } // Add replication status to the object info objInfo.ReplicationStatusInternal = fi.ReplicationState.ReplicationStatusInternal
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 31 22:10:24 UTC 2024 - 21.3K bytes - Viewed (0) -
build-logic-commons/code-quality-rules/src/main/resources/checkstyle/checkstyle-api.xml
<property name="checkEmptyJavadoc" value="true"/> </module> <module name="JavadocType"> <property name="scope" value="protected"/> <!-- Allow the use of unrecognized tags like @apiNote --> <property name="allowUnknownTags" value="true"/> </module> <!-- TODO - switch this on --> <!--<module name="JavadocMethod">-->
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Nov 17 23:20:14 UTC 2022 - 1.6K bytes - Viewed (0) -
docs/em/docs/tutorial/response-model.md
```Python hl_lines="3 5-6" { "name": "Baz", "description": None, "price": 50.2, "tax": 10.5, "tags": [] } ``` FastAPI đ đĨ (đ¤, Pydantic đ đĨ) đ¤ đ, âī¸ `description`, `tax`, & `tags` âī¸ đ đ˛ đĸ, đĢ â đ¯ (âŠī¸ â âĒī¸âĄī¸ đĸ). , đĢ đ đ đģ đ¨. /// tip đ đ đĸ đ˛ đĒ đŗ, đĢ đ´ `None`. đĢ đĒ đ (`[]`), `float` `10.5`, âī¸.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 15.8K bytes - Viewed (0) -
internal/etag/etag_test.go
{ETag: "7b976cc68452e003eec7cb0eb631a19a-10000"}, // 4 } func TestIsEncrypted(t *testing.T) { for i, test := range isEncryptedTests { tag, err := Parse(test.ETag) if err != nil { t.Fatalf("Test %d: failed to parse ETag: %v", i, err) } if isEncrypted := tag.IsEncrypted(); isEncrypted != test.IsEncrypted { t.Fatalf("Test %d: got '%v' - want '%v'", i, isEncrypted, test.IsEncrypted) } } }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 18 17:00:54 UTC 2023 - 12.6K bytes - Viewed (0) -
istioctl/pkg/kubeinject/testdata/inject-config-inline-iop.yaml
spec: initContainers: - name: istio-init image: docker.io/istio/proxy_init:unittest-{{.Values.global.tag}} containers: - name: istio-proxy
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Jun 15 15:02:17 UTC 2023 - 207 bytes - Viewed (0) -
schema/field.go
FieldType: fieldStruct.Type, IndirectFieldType: fieldStruct.Type, StructField: fieldStruct, Tag: fieldStruct.Tag, TagSettings: tagSetting, Schema: schema, Creatable: true, Updatable: true, Readable: true,
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Mon Apr 15 03:20:20 UTC 2024 - 32K bytes - Viewed (0) -
doc/next/6-stdlib/99-minor/encoding/json/45669.md
When marshaling, a struct field with the new `omitzero` option in the struct field tag will be omitted if its value is zero. If the field type has an `IsZero() bool` method, that will be used to determine whether the value is zero. Otherwise, the value is zero if it is [the zero value for its type](/ref/spec#The_zero_value). If both `omitempty` and `omitzero` are specified, the field will be omitted if the
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Oct 02 14:22:27 UTC 2024 - 452 bytes - Viewed (0) -
docs/hotfixes.md
``` commit 99bf4d0c429f04dbd013ba98840d07b759ae1702 (tag: RELEASE.2019-06-15T23-07-18Z) Author: Harshavardhana <******@****.***> Date: Sat Jun 15 11:27:17 2019 -0700 [security] Match ${aws:username} exactly instead of prefix match (#7791)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Feb 14 21:36:02 UTC 2024 - 5K bytes - Viewed (0) -
api/maven-api-meta/src/main/java/org/apache/maven/api/annotations/package-info.java
// CHECKSTYLE_OFF: RegexpHeader /** * This package contains non-functional annotations which are * used to tag various elements and help users understanding * how those types should be used. * * @since 4.0.0 */ @Experimental
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Mar 23 05:29:39 UTC 2023 - 273 bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/admin/FileAuthTests.java
import java.util.Map; import org.codelibs.fess.it.CrudTestBase; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Tag; import org.junit.jupiter.api.Test; import io.restassured.path.json.JsonPath; @Tag("it") public class FileAuthTests extends CrudTestBase { private static final String NAME_PREFIX = "fileAuthTest_";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.9K bytes - Viewed (0)