Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 680 for Pull (0.51 sec)

  1. CHANGELOG/CHANGELOG-1.29.md

    - CRI: image pull per runtime class is now supported. ([#121121](https://github.com/kubernetes/kubernetes/pull/121121), [@kiashok](https://github.com/kiashok))
    - Certain `requestBody` parameters in the OpenAPI `v3` are now correctly marked as required. ([#120735](https://github.com/kubernetes/kubernetes/pull/120735), [@Jefftree](https://github.com/Jefftree))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.27.md

    ### Feature
    
    - Kubernetes is now built with go 1.21.10 ([#124832](https://github.com/kubernetes/kubernetes/pull/124832), [@cpanato](https://github.com/cpanato)) [SIG Release and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.28.md

    - The Kubernetes apiserver now emits a warning message for Pods with a null labelSelector in podAffinity or topologySpreadConstraints. The null labelSelector means "match none". Using it in podAffinity or topologySpreadConstraint could lead to unintended behavior. ([#117025](https://github.com/kubernetes/kubernetes/pull/117025), [@sanposhiho](https://github.com/sanposhiho)) [SIG...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:47:59 UTC 2024
    - 408.3K bytes
    - Viewed (0)
  4. CHANGELOG/CHANGELOG-1.30.md

    ### Feature
    
    - Kubernetes is now built with go 1.22.3 ([#124829](https://github.com/kubernetes/kubernetes/pull/124829), [@cpanato](https://github.com/cpanato)) [SIG Release and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 04:05:28 UTC 2024
    - 253.2K bytes
    - Viewed (0)
  5. docs/en/docs/release-notes.md

    * 📝 Update External Links . PR [#11500](https://github.com/tiangolo/fastapi/pull/11500) by [@devon2018](https://github.com/devon2018).
    * 📝 Add External Link: Tutorial de FastAPI, ¿el mejor framework de Python?. PR [#11618](https://github.com/tiangolo/fastapi/pull/11618) by [@EduardoZepeda](https://github.com/EduardoZepeda).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.31.md

    - Fix Deep Copy issue in getting controller reference ([#124116](https://github.com/kubernetes/kubernetes/pull/124116), [@HiranmoyChowdhury](https://github.com/HiranmoyChowdhury)) [SIG API Machinery and Release]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  7. docs/zh-hant/docs/fastapi-people.md

    ---
    
    **FastAPI** 獲得了許多社群的大力支持。我想特別表揚他們的貢獻。
    
    這些人包括:
    
    * [在 GitHub 中幫助他人解答問題](help-fastapi.md#help-others-with-questions-in-github){.internal-link target=_blank}。
    * [建立 Pull Requests](help-fastapi.md#create-a-pull-request){.internal-link target=_blank}。
    * 審查 Pull Requests,[尤其是翻譯方面的貢獻](contributing.md#translations){.internal-link target=_blank}。
    
    讓我們為他們熱烈鼓掌。 👏 🙇
    
    ## FastAPI 專家
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 05 00:07:01 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. src/iter/iter.go

    type coro struct{}
    
    //go:linkname newcoro runtime.newcoro
    func newcoro(func(*coro)) *coro
    
    //go:linkname coroswitch runtime.coroswitch
    func coroswitch(*coro)
    
    // Pull converts the “push-style” iterator sequence seq
    // into a “pull-style” iterator accessed by the two functions
    // next and stop.
    //
    // Next returns the next value in the sequence
    // and a boolean indicating whether the value is valid.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. manifests/charts/ztunnel/values.yaml

    defaults:
      # Hub to pull from. Image will be `Hub/Image:Tag-Variant`
      hub: gcr.io/istio-testing
      # Tag to pull from. Image will be `Hub/Image:Tag-Variant`
      tag: latest
      # Variant to pull. Options are "debug" or "distroless". Unset will use the default for the given version.
      variant: ""
    
      # Image name to pull from. Image will be `Hub/Image:Tag-Variant`
      # If Image contains a "/", it will replace the entire `image` in the pod.
      image: ztunnel
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:30 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. src/iter/pull_test.go

    		var stop func()
    		if !goexits(t, func() {
    			next, stop = Pull(goexitSeq())
    			next()
    		}) {
    			t.Fatal("failed to Goexit from next")
    		}
    		if x, ok := next(); x != 0 || ok {
    			t.Fatal("iterator returned valid value after iterator Goexited")
    		}
    		stop()
    	})
    	t.Run("stop", func(t *testing.T) {
    		next, stop := Pull(goexitCleanupSeq())
    		x, ok := next()
    		if !ok || x != 55 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:28 UTC 2024
    - 10.2K bytes
    - Viewed (0)
Back to top