Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 486 for uuid (0.05 sec)

  1. cmd/storage-interface.go

    	// Returns the entire endpoint.
    	Endpoint() Endpoint
    
    	// Close the disk, mark it purposefully closed, only implemented for remote disks.
    	Close() error
    
    	// Returns the unique 'uuid' of this disk.
    	GetDiskID() (string, error)
    
    	// Set a unique 'uuid' for this disk, only used when
    	// disk is replaced and formatted.
    	SetDiskID(id string)
    
    	// Returns healing information for a newly replaced disk,
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Aug 12 08:38:15 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_extra_data_types/test_tutorial001_an_py39.py

                                "required": True,
                                "schema": {
                                    "title": "Item Id",
                                    "type": "string",
                                    "format": "uuid",
                                },
                                "name": "item_id",
                                "in": "path",
                            }
                        ],
                        "requestBody": {
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Apr 19 00:11:40 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/util/PublishKotlinDslPlugin.kt

    import jetbrains.buildServer.configs.kotlin.DslContext
    import vcsroots.useAbsoluteVcs
    
    object PublishKotlinDslPlugin : BuildType({
        name = "Publish Kotlin DSL Plugin"
        id("Util_PublishKotlinDslPlugin")
        uuid = "${DslContext.uuidPrefix}_Util_PublishKotlinDslPlugin"
        vcs.useAbsoluteVcs(VersionedSettingsBranch.fromDslContext().vcsRootId())
    
        requirements {
            requiresOs(Os.LINUX)
        }
    
        params {
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. docs/en/docs/tutorial/extra-data-types.md

    * Data conversion for response data.
    * Data validation.
    * Automatic annotation and documentation.
    
    ## Other data types
    
    Here are some of the additional data types you can use:
    
    * `UUID`:
        * A standard "Universally Unique Identifier", common as an ID in many databases and systems.
        * In requests and responses will be represented as a `str`.
    * `datetime.datetime`:
        * A Python `datetime.datetime`.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. docs/em/docs/tutorial/extra-data-types.md

    โœ‹๏ธ ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ ๐ŸŒ… ๐Ÿ— ๐Ÿ“Š ๐Ÿ†Ž.
    
    & ๐Ÿ‘† ๐Ÿ”œ โœ”๏ธ ๐ŸŽ โš’ ๐Ÿ‘€ ๐Ÿ†™ ๐Ÿ”œ:
    
    * ๐Ÿ‘‘ ๐Ÿ‘จโ€๐ŸŽจ ๐Ÿ•โ€๐Ÿฆบ.
    * ๐Ÿ’ฝ ๐Ÿ› ๏ธ โšช๏ธโžก๏ธ ๐Ÿ“จ ๐Ÿ“จ.
    * ๐Ÿ’ฝ ๐Ÿ› ๏ธ ๐Ÿ“จ ๐Ÿ’ฝ.
    * ๐Ÿ’ฝ ๐Ÿ”ฌ.
    * ๐Ÿง โœ & ๐Ÿงพ.
    
    ## ๐ŸŽ ๐Ÿ’ฝ ๐Ÿ†Ž
    
    ๐Ÿ“ฅ ๐ŸŒ– ๐Ÿ“Š ๐Ÿ†Ž ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ:
    
    * `UUID`:
        * ๐Ÿฉ "โญ ๐Ÿ˜ ๐Ÿ†”", โš  ๐Ÿ†” ๐Ÿ“š ๐Ÿ’ฝ & โš™๏ธ.
        * ๐Ÿ“จ & ๐Ÿ“จ ๐Ÿ”œ ๐ŸŽจ `str`.
    * `datetime.datetime`:
        * ๐Ÿ `datetime.datetime`.
        * ๐Ÿ“จ & ๐Ÿ“จ ๐Ÿ”œ ๐ŸŽจ `str` ๐Ÿ’พ 8๏ธโƒฃ6๏ธโƒฃ0๏ธโƒฃ1๏ธโƒฃ ๐Ÿ“, ๐Ÿ’–: `2008-09-15T15:53:00+05:00`.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. cmd/object-api-options.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package cmd
    
    import (
    	"context"
    	"fmt"
    	"net/http"
    	"strconv"
    	"strings"
    	"time"
    
    	"github.com/google/uuid"
    	"github.com/minio/minio-go/v7/pkg/encrypt"
    	"github.com/minio/minio/internal/crypto"
    	"github.com/minio/minio/internal/hash"
    	xhttp "github.com/minio/minio/internal/http"
    )
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Wed Aug 21 21:13:59 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/QueryHelper.java

    import static org.codelibs.core.stream.StreamUtil.stream;
    
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.List;
    import java.util.Map;
    import java.util.Set;
    import java.util.UUID;
    import java.util.function.Consumer;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.apache.lucene.search.Query;
    import org.codelibs.core.lang.StringUtil;
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  8. docs/de/docs/tutorial/extra-data-types.md

    * Datenkonvertierung fรผr Response-Daten.
    * Datenvalidierung.
    * Automatische Annotation und Dokumentation.
    
    ## Andere Datentypen
    
    Hier sind einige der zusรคtzlichen Datentypen, die Sie verwenden kรถnnen:
    
    * `UUID`:
        * Ein standardmรครŸiger โ€žuniversell eindeutiger Bezeichnerโ€œ (โ€žUniversally Unique Identifierโ€œ), der in vielen Datenbanken und Systemen als ID รผblich ist.
        * Wird in Requests und Responses als `str` dargestellt.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. istioctl/pkg/proxyconfig/testdata/config_dump.json

                            "normalize_path": true,
                            "request_id_extension": {
                              "typed_config": {
                                "@type": "type.googleapis.com/envoy.extensions.request_id.uuid.v3.UuidRequestIdConfig",
                                "use_request_id_for_trace_sampling": true
                              }
                            },
                            "path_with_escaped_slashes_action": "KEEP_UNCHANGED"
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Wed Jan 03 23:08:06 UTC 2024
    - 54.8K bytes
    - Viewed (0)
  10. src/main/java/jcifs/smb1/dcerpc/DcerpcBind.java

            buf.enc_ndr_short(0); /* reserved2 */
            buf.enc_ndr_short(0); /* context id */
            buf.enc_ndr_small(1); /* number of items */
            buf.enc_ndr_small(0); /* reserved */
            binding.uuid.encode(buf);
            buf.enc_ndr_short(binding.major);
            buf.enc_ndr_short(binding.minor);
            DCERPC_UUID_SYNTAX_NDR.encode(buf);
            buf.enc_ndr_long(2); /* syntax version */
        }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.2K bytes
    - Viewed (0)
Back to top