Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,009 for Images (0.23 sec)

  1. docs_src/body_nested_models/tutorial008_py39.py

    from fastapi import FastAPI
    from pydantic import BaseModel, HttpUrl
    
    app = FastAPI()
    
    
    class Image(BaseModel):
        url: HttpUrl
        name: str
    
    
    @app.post("/images/multiple/")
    async def create_multiple_images(images: list[Image]):
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Jan 07 14:11:31 GMT 2022
    - 248 bytes
    - Viewed (0)
  2. docs_src/body_nested_models/tutorial008.py

    from typing import List
    
    from fastapi import FastAPI
    from pydantic import BaseModel, HttpUrl
    
    app = FastAPI()
    
    
    class Image(BaseModel):
        url: HttpUrl
        name: str
    
    
    @app.post("/images/multiple/")
    async def create_multiple_images(images: List[Image]):
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Fri Jun 12 19:41:44 GMT 2020
    - 273 bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.27.md

    [registry.k8s.io/kube-apiserver:v1.27.11](https://console.cloud.google.com/gcr/images/k8s-artifacts-prod/us/kube-apiserver) | [amd64](...
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Apr 16 15:20:21 GMT 2024
    - 434.3K bytes
    - Viewed (3)
  4. CHANGELOG/CHANGELOG-1.23.md

    [registry.k8s.io/kube-apiserver:v1.23.17](ht...
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Feb 28 21:06:52 GMT 2023
    - 424.5K bytes
    - Viewed (0)
  5. manifests/charts/istio-cni/values.yaml

      global:
        # Default hub for Istio images.
        # Releases are published to docker hub under 'istio' project.
        # Dev builds from prow are on gcr.io
        hub: gcr.io/istio-testing
    
        # Default tag for Istio images.
        tag: latest
    
        # Variant of the image to use.
        # Currently supported are: [debug, distroless]
        variant: ""
    
        # Specify image pull policy if default behavior isn't desired.
    Others
    - Registered: Wed Mar 20 22:53:08 GMT 2024
    - Last Modified: Wed Feb 28 17:29:38 GMT 2024
    - 5.1K bytes
    - Viewed (1)
  6. CHANGELOG/CHANGELOG-1.22.md

    [registry.k8s.io/kube-apiserver:v1.22.17](ht...
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Tue Dec 13 12:43:45 GMT 2022
    - 454.1K bytes
    - Viewed (1)
  7. CHANGELOG/CHANGELOG-1.21.md

    [k8s.gcr.io/kube-apiserver:v1.21.14](https://co...
    Plain Text
    - Registered: Fri May 03 09:05:14 GMT 2024
    - Last Modified: Fri Oct 14 07:03:14 GMT 2022
    - 367.3K bytes
    - Viewed (4)
  8. internal/event/config_test.go

    	rulesMapCase2 := NewRulesMap([]Name{ObjectCreatedPut}, "images/*jpg", TargetID{"1", "webhook"})
    
    	rulesMapCase3 := NewRulesMap([]Name{ObjectAccessedAll, ObjectCreatedAll, ObjectRemovedAll}, "*", TargetID{"1", "webhook"})
    	rulesMapCase3.add([]Name{ObjectCreatedPut}, "images/*jpg", TargetID{"2", "amqp"})
    
    	testCases := []struct {
    		config         *Config
    		expectedResult RulesMap
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Dec 05 10:16:33 GMT 2023
    - 29K bytes
    - Viewed (0)
  9. docs/features/events.md

    ![Events Diagram](../assets/images/******@****.***)
    
    Here’s a [sample event listener](https://github.com/square/okhttp/blob/master/samples/guide/src/main/java/okhttp3/recipes/PrintEventsNonConcurrent.java) that prints each event with a timestamp.
    
    ```java
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Feb 06 02:19:09 GMT 2022
    - 7.7K bytes
    - Viewed (0)
  10. src/test/resources/data/gsaconfig.xml

    <?xml version="1.0" encoding="UTF-8" ?>
    <eef>
    	<config Schema="2.0" EnterpriseVersion="'7.6.50'">
    		<collections Count="3">
    			<collection Name="fess">
    				<bad_urls><![CDATA[
    https://fess.codelibs.org/images/
                  ]]></bad_urls>
    				<good_urls><![CDATA[
    https://fess.codelibs.org/
    https://www.codelibs.org/
                  ]]></good_urls>
    				<prerequisite_results><![CDATA[
    20
                  ]]></prerequisite_results>
    XML
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sun May 13 06:51:57 GMT 2018
    - 1.7K bytes
    - Viewed (0)
Back to top