Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 9,427 for and (0.03 sec)

  1. internal/bucket/replication/and.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package replication
    
    import (
    	"encoding/xml"
    )
    
    // And - a tag to combine a prefix and multiple tags for replication configuration rule.
    type And struct {
    	XMLName xml.Name `xml:"And" json:"And"`
    	Prefix  string   `xml:"Prefix,omitempty" json:"Prefix,omitempty"`
    	Tags    []Tag    `xml:"Tag,omitempty" json:"Tag,omitempty"`
    }
    
    Registered: 2024-11-03 19:28
    - Last Modified: 2021-06-01 21:59
    - 1.8K bytes
    - Viewed (0)
  2. internal/bucket/lifecycle/and.go

    package lifecycle
    
    import (
    	"encoding/xml"
    )
    
    var errDuplicateTagKey = Errorf("Duplicate Tag Keys are not allowed")
    
    // And - a tag to combine a prefix and multiple tags for lifecycle configuration rule.
    type And struct {
    	XMLName               xml.Name `xml:"And"`
    	ObjectSizeGreaterThan int64    `xml:"ObjectSizeGreaterThan,omitempty"`
    	ObjectSizeLessThan    int64    `xml:"ObjectSizeLessThan,omitempty"`
    Registered: 2024-11-03 19:28
    - Last Modified: 2024-01-18 07:03
    - 2.9K bytes
    - Viewed (0)
  3. docs/pt/docs/how-to/custom-request-and-route.md

    Fernando Alzueta <******@****.***> 1729618380 -0300
    Registered: 2024-11-03 07:19
    - Last Modified: 2024-10-22 17:33
    - 4.9K bytes
    - Viewed (0)
  4. src/archive/tar/testdata/file-and-dir.tar

    Caio Marcelo de Oliveira Filho <******@****.***> 1514852203 -0800
    Registered: 2024-11-05 11:13
    - Last Modified: 2018-02-13 18:36
    - 2.5K bytes
    - Viewed (0)
  5. docs/de/docs/how-to/custom-request-and-route.md

    Sebastián Ramírez <******@****.***> 1728247014 +0200
    Registered: 2024-11-03 07:19
    - Last Modified: 2024-10-06 20:36
    - 5.2K bytes
    - Viewed (0)
  6. BUGS-AND-FEATURE-REQUESTS.md

    # Bugs and Feature Requests
    
    You can report bugs and feature requests to the Istio team in one of three places:
    
    - [Product Bugs and Feature Requests](https://github.com/istio/istio/issues)
    - [Documentation Bugs and Feature Requests](https://github.com/istio/istio.io/issues)
    - [Community and Governance Issues](https://github.com/istio/community/issues)
    
    For security vulnerabilities, please don't report a bug (which is public) and instead follow
    Registered: 2024-11-06 22:53
    - Last Modified: 2019-06-17 16:57
    - 519 bytes
    - Viewed (0)
  7. docs/em/docs/tutorial/request-forms-and-files.md

    Sebastián Ramírez <******@****.***> 1728247014 +0200
    Registered: 2024-11-03 07:19
    - Last Modified: 2024-10-06 20:36
    - 1.1K bytes
    - Viewed (0)
  8. docs/ru/docs/tutorial/request-forms-and-files.md

    Sebastián Ramírez <******@****.***> 1728247014 +0200
    Registered: 2024-11-03 07:19
    - Last Modified: 2024-10-06 20:36
    - 2.9K bytes
    - Viewed (0)
  9. docs/en/docs/how-to/custom-request-and-route.md

    A `Request` also has a `request.receive`, that's a function to "receive" the body of the request.
    
    The `scope` `dict` and `receive` function are both part of the ASGI specification.
    
    And those two things, `scope` and `receive`, are what is needed to create a new `Request` instance.
    
    Registered: 2024-11-03 07:19
    - Last Modified: 2024-10-27 22:39
    - 4.3K bytes
    - Viewed (0)
  10. docs/en/docs/tutorial/request-forms-and-files.md

    ```Python hl_lines="8"
    {!> ../../docs_src/request_forms_and_files/tutorial001.py!}
    ```
    
    ////
    
    The files and form fields will be uploaded as form data and you will receive the files and form fields.
    
    And you can declare some of the files as `bytes` and some as `UploadFile`.
    
    /// warning
    
    Registered: 2024-11-03 07:19
    - Last Modified: 2024-10-06 20:36
    - 2.1K bytes
    - Viewed (0)
Back to top