Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 147 for Tags (0.29 sec)

  1. cmd/bucket-metadata.go

    	lifecycleConfig        *lifecycle.Lifecycle
    	objectLockConfig       *objectlock.Config
    	versioningConfig       *versioning.Versioning
    	sseConfig              *bucketsse.BucketSSEConfig
    	taggingConfig          *tags.Tags
    	quotaConfig            *madmin.BucketQuota
    	replicationConfig      *replication.Config
    	bucketTargetConfig     *madmin.BucketTargets
    	bucketTargetConfigMeta map[string]string
    }
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 16.5K bytes
    - Viewed (0)
  2. docs/em/docs/tutorial/body-nested-models.md

        ```
    
    === "๐Ÿ 3๏ธโƒฃ.1๏ธโƒฃ0๏ธโƒฃ & ๐Ÿ”›"
    
        ```Python hl_lines="12"
        {!> ../../../docs_src/body_nested_models/tutorial001_py310.py!}
        ```
    
    ๐Ÿ‘‰ ๐Ÿ”œ โš’ `tags` ๐Ÿ“‡, ๐Ÿ‘ โšซ๏ธ ๐Ÿšซ ๐Ÿ“ฃ ๐Ÿ†Ž ๐Ÿ”ฃ ๐Ÿ“‡.
    
    ## ๐Ÿ“‡ ๐Ÿ‘ โฎ๏ธ ๐Ÿ†Ž ๐Ÿ”ข
    
    โœ‹๏ธ ๐Ÿ โœ”๏ธ ๐ŸŽฏ ๐ŸŒŒ ๐Ÿ“ฃ ๐Ÿ“‡ โฎ๏ธ ๐Ÿ”— ๐Ÿ†Ž, โš–๏ธ "๐Ÿ†Ž ๐Ÿ”ข":
    
    ### ๐Ÿ—„ โŒจ `List`
    
    ๐Ÿ 3๏ธโƒฃ.9๏ธโƒฃ & ๐Ÿ”› ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ ๐Ÿฉ `list` ๐Ÿ“ฃ ๐Ÿ‘ซ ๐Ÿ†Ž โœ ๐Ÿ‘ฅ ๐Ÿ”œ ๐Ÿ‘€ ๐Ÿ”›. ๐Ÿ‘ถ
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 9.2K bytes
    - Viewed (0)
  3. common/config/.golangci-format.yml

    # common-files repo, make the change there and check it in. Then come back to this repo and run
    # "make update-common".
    
    run:
      # Timeout for analysis, e.g. 30s, 5m.
      # Default: 1m
      timeout: 20m
      build-tags:
      - integ
      - integfuzz
    linters:
      disable-all: true
      enable:
      - goimports
      - gofumpt
      - gci
      fast: false
    linters-settings:
      gci:
        sections:
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Fri Apr 05 03:02:37 GMT 2024
    - 2K bytes
    - Viewed (0)
  4. cmd/bucket-replication.go

    	}
    }
    
    // proxyTaggingToRepTarget proxies tagging requests to remote targets for
    // active-active replicated setups
    func proxyTaggingToRepTarget(ctx context.Context, bucket, object string, tags *tags.Tags, opts ObjectOptions, proxyTargets *madmin.BucketTargets) (proxy proxyResult) {
    	// this option is set when active-active replication is in place between site A -> B,
    	// and request hits site B that does not have the object yet.
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  5. cmd/erasure-sets.go

    }
    
    // PutObjectTags - replace or add tags to an existing object
    func (s *erasureSets) PutObjectTags(ctx context.Context, bucket, object string, tags string, opts ObjectOptions) (ObjectInfo, error) {
    	er := s.getHashedSet(object)
    	return er.PutObjectTags(ctx, bucket, object, tags, opts)
    }
    
    // DeleteObjectTags - delete object tags from an existing object
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 20:08:20 GMT 2024
    - 37.7K bytes
    - Viewed (5)
  6. cmd/utils.go

    	entry.API.Status = opts.Status
    	entry.Tags = make(map[string]interface{}, len(opts.Tags))
    	for k, v := range opts.Tags {
    		entry.Tags[k] = v
    	}
    
    	// Merge tag information if found - this is currently needed for tags
    	// set during decommissioning.
    	if reqInfo := logger.GetReqInfo(ctx); reqInfo != nil {
    		reqInfo.PopulateTagsMap(entry.Tags)
    	}
    	ctx = logger.SetAuditEntry(ctx, &entry)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 15:18:21 GMT 2024
    - 31.4K bytes
    - Viewed (0)
  7. cmd/object-handlers-common.go

    			}
    			traceFn := globalLifecycleSys.trace(oi)
    			// Note: NewerNoncurrentVersions action is performed only scanner today
    			tags := newLifecycleAuditEvent(lcEventSrc_Scanner, lcEvent).Tags()
    
    			// Send audit for the lifecycle delete operation
    			auditLogLifecycle(
    				ctx,
    				oi,
    				ILMExpiry, tags, traceFn)
    
    			evArgs := eventArgs{
    				EventName:  event.ObjectRemovedDelete,
    				BucketName: bucket,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 09 08:17:49 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  8. docs/zh/docs/tutorial/body-nested-models.md

        {!> ../../../docs_src/body_nested_models/tutorial001_py310.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="14"
        {!> ../../../docs_src/body_nested_models/tutorial001.py!}
        ```
    
    ่ฟ™ๅฐ†ไฝฟ `tags` ๆˆไธบไธ€ไธช็”ฑๅ…ƒ็ด ็ป„ๆˆ็š„ๅˆ—่กจใ€‚ไธ่ฟ‡ๅฎƒๆฒกๆœ‰ๅฃฐๆ˜Žๆฏไธชๅ…ƒ็ด ็š„็ฑปๅž‹ใ€‚
    
    ## ๅ…ทๆœ‰ๅญ็ฑปๅž‹็š„ List ๅญ—ๆฎต
    
    ไฝ†ๆ˜ฏ Python ๆœ‰ไธ€็ง็‰นๅฎš็š„ๆ–นๆณ•ๆฅๅฃฐๆ˜Žๅ…ทๆœ‰ๅญ็ฑปๅž‹็š„ๅˆ—่กจ๏ผš
    
    ### ไปŽ typing ๅฏผๅ…ฅ `List`
    
    ้ฆ–ๅ…ˆ๏ผŒไปŽ Python ็š„ๆ ‡ๅ‡†ๅบ“ `typing` ๆจกๅ—ไธญๅฏผๅ…ฅ `List`๏ผš
    
    ```Python hl_lines="1"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  9. cmd/data-scanner.go

    		ilmLogOnceIf(ctx, err, "non-transition-expiry")
    		return false
    	}
    	if dobj.Name == "" {
    		dobj = obj
    	}
    
    	tags := newLifecycleAuditEvent(src, lcEvent).Tags()
    	// Send audit for the lifecycle delete operation
    	auditLogLifecycle(ctx, dobj, ILMExpiry, tags, traceFn)
    
    	eventName := event.ObjectRemovedDelete
    	if obj.DeleteMarker {
    		eventName = event.ObjectRemovedDeleteMarkerCreated
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Fri May 03 11:18:58 GMT 2024
    - 47.6K bytes
    - Viewed (0)
  10. docs/ja/docs/tutorial/response-model.md

    ID`baz`ใฎitemใฎใ‚ˆใ†ใซใƒ‡ใƒ•ใ‚ฉใƒซใƒˆๅ€คใจๅŒใ˜ๅ€คใ‚’ๆŒใคใƒ‡ใƒผใ‚ฟใฎๅ ดๅˆ:
    
    ```Python hl_lines="3 5 6"
    {
        "name": "Baz",
        "description": None,
        "price": 50.2,
        "tax": 10.5,
        "tags": []
    }
    ```
    
    FastAPIใฏๅๅˆ†ใซ่ณขใ„ใฎใง๏ผˆๅฎŸ้š›ใซใฏใ€PydanticใŒๅๅˆ†ใซ่ณขใ„๏ผ‰`description`ใ‚„`tax`ใ€`tags`ใฏใƒ‡ใƒ•ใ‚ฉใƒซใƒˆๅ€คใจๅŒใ˜ๅ€คใ‚’ๆŒใฃใฆใ„ใ‚‹ใซใ‚‚ใ‹ใ‹ใ‚ใ‚‰ใšใ€ๆ˜Ž็คบ็š„ใซ่จญๅฎšใ•ใ‚Œใฆใ„ใ‚‹ใ“ใจใ‚’็†่งฃใ—ใฆใ„ใพใ™ใ€‚๏ผˆใƒ‡ใƒ•ใ‚ฉใƒซใƒˆใ‹ใ‚‰ๅ–ๅพ—ใ™ใ‚‹ใฎใงใฏใชใ๏ผ‰
    
    ใใฎใŸใ‚ใ€ใใ‚Œใ‚‰ใฏJSONใƒฌใ‚นใƒใƒณใ‚นใซๅซใพใ‚Œใ‚‹ใ“ใจใซใชใ‚Šใพใ™ใ€‚
    
    !!! tip "่ฑ†็Ÿฅ่ญ˜"
        ใƒ‡ใƒ•ใ‚ฉใƒซใƒˆๅ€คใฏ`None`ใ ใ‘ใงใชใใ€ใชใ‚“ใงใ‚‚่‰ฏใ„ใ“ใจใซๆณจๆ„ใ—ใฆใใ ใ•ใ„ใ€‚
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Mar 22 01:42:11 GMT 2024
    - 9.3K bytes
    - Viewed (0)
Back to top