Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 57 for svmapi (0.21 sec)

  1. pkg/registry/storagemigration/storagemigration/storage/storage.go

    		NewFunc:     func() runtime.Object { return &svmapi.StorageVersionMigration{} },
    		NewListFunc: func() runtime.Object { return &svmapi.StorageVersionMigrationList{} },
    		ObjectNameFunc: func(obj runtime.Object) (string, error) {
    			return obj.(*svmapi.StorageVersionMigration).Name, nil
    		},
    		DefaultQualifiedResource:  svmapi.Resource("storageversionmigrations"),
    		SingularQualifiedResource: svmapi.Resource("storageversionmigration"),
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  2. docs/tr/docs/tutorial/first-steps.md

    #### API "Şeması"
    
    Bu durumda, <a href="https://github.com/OAI/OpenAPI-Specification" class="external-link" target="_blank">OpenAPI</a>, API şemasını nasıl tanımlayacağınızı belirten bir şartnamedir.
    
    Bu şema tanımı, API yollarınızla birlikte yollarınızın aldığı olası parametreler gibi tanımlamaları içerir.
    
    #### Veri "Şeması"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Feb 08 13:10:55 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. docs/em/docs/advanced/sub-applications.md

    <img src="/img/tutorial/sub-applications/image01.png">
    
    &amp; ⤴️, 📂 🩺 🎧-🈸, <a href="http://127.0.0.1:8000/subapi/docs" class="external-link" target="_blank">http://127.0.0.1:8000/subapi/docs</a>.
    
    👆 🔜 👀 🏧 🛠️ 🩺 🎧-🈸, ✅ 🕴 🚮 👍 _➡ 🛠️_, 🌐 🔽 ☑ 🎧-➡ 🔡 `/subapi`:
    
    <img src="/img/tutorial/sub-applications/image02.png">
    
    🚥 👆 🔄 🔗 ⏮️ 🙆 2️⃣ 👩‍💻 🔢, 👫 🔜 👷 ☑, ↩️ 🖥 🔜 💪 💬 🔠 🎯 📱 ⚖️ 🎧-📱.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta2/api.pb.go

    		n += 1 + l + sovApi(uint64(l))
    	}
    	return n
    }
    
    func (m *ExampleResponse) Size() (n int) {
    	if m == nil {
    		return 0
    	}
    	var l int
    	_ = l
    	l = len(m.Error)
    	if l > 0 {
    		n += 1 + l + sovApi(uint64(l))
    	}
    	return n
    }
    
    func sovApi(x uint64) (n int) {
    	return (math_bits.Len64(x|1) + 6) / 7
    }
    func sozApi(x uint64) (n int) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 17:31:18 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler.go

    	apiserversi, ok := h.svMap.Load(gvr)
    
    	// no value found for the requested gvr in svMap
    	if !ok || apiserversi == nil {
    		return serviceableByResponse{}, fmt.Errorf("no StorageVersions found for the GVR: %v", gvr)
    	}
    	apiservers := apiserversi.(*sync.Map)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 19 00:36:22 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. pkg/kubelet/pluginmanager/pluginwatcher/example_plugin_apis/v1beta1/api.pb.go

    		n += 1 + l + sovApi(uint64(l))
    	}
    	return n
    }
    
    func (m *ExampleResponse) Size() (n int) {
    	if m == nil {
    		return 0
    	}
    	var l int
    	_ = l
    	l = len(m.Error)
    	if l > 0 {
    		n += 1 + l + sovApi(uint64(l))
    	}
    	return n
    }
    
    func sovApi(x uint64) (n int) {
    	return (math_bits.Len64(x|1) + 6) / 7
    }
    func sozApi(x uint64) (n int) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 23 17:31:18 UTC 2023
    - 17.3K bytes
    - Viewed (0)
  7. docs_src/sub_applications/tutorial001.py

    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/app")
    def read_main():
        return {"message": "Hello World from main app"}
    
    
    subapi = FastAPI()
    
    
    @subapi.get("/sub")
    def read_sub():
        return {"message": "Hello World from sub API"}
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jun 11 21:53:19 UTC 2020
    - 274 bytes
    - Viewed (0)
  8. tests/test_tutorial/test_sub_applications/test_tutorial001.py

        assert response.json() == {"message": "Hello World from main app"}
    
    
    def test_openapi_schema_sub():
        response = client.get("/subapi/openapi.json")
        assert response.status_code == 200, response.text
        assert response.json() == openapi_schema_sub
    
    
    def test_sub():
        response = client.get("/subapi/sub")
        assert response.status_code == 200, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 30 18:25:16 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  9. docs/fa/docs/advanced/sub-applications.md

    <img src="/img/tutorial/sub-applications/image01.png">
    
    و سپس اسناد زیر برنامه را در آدرس <a href="http://127.0.0.1:8000/subapi/docs" class="external-link" target="_blank">http://127.0.0.1:8000/subapi/docs</a>. باز کنید.
    
    اسناد API خودکار برای زیر برنامه را خواهید دید، که فقط شامل path operations خود می شود، همه در زیر مسیر `/subapi` قرار دارند:
    
    <img src="/img/tutorial/sub-applications/image02.png">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  10. docs/de/docs/advanced/sub-applications.md

    Öffnen Sie dann die Dokumentation für die Unteranwendung unter <a href="http://127.0.0.1:8000/subapi/docs" class="external-link" target="_blank">http://127.0.0.1:8000/subapi/docs</a>.
    
    Sie sehen die automatische API-Dokumentation für die Unteranwendung, welche nur deren eigene _Pfadoperationen_ anzeigt, alle unter dem korrekten Unterpfad-Präfix `/subapi`:
    
    <img src="/img/tutorial/sub-applications/image02.png">
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:18:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top