Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 3,125 for Pull (0.16 sec)

  1. docs/pt/docs/fastapi-people.md

    Estas são as pessoas que:
    
    * [Help others with issues (questions) in GitHub](help-fastapi.md#responda-perguntas-no-github){.internal-link target=_blank}.
    * [Create Pull Requests](help-fastapi.md#crie-um-pull-request){.internal-link target=_blank}.
    * Revisar Pull Requests, [especially important for translations](contributing.md#traducoes){.internal-link target=_blank}.
    
    Uma salva de palmas para eles. 👏 🙇
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. src/cmd/link/testdata/linkname/coro.go

    // license that can be found in the LICENSE file.
    
    // Linkname coroswitch is not allowed, even if iter.Pull
    // is instantiated in the same package.
    
    package main
    
    import (
    	"iter"
    	"unsafe"
    )
    
    func seq(yield func(int) bool) {
    	yield(123)
    }
    
    func main() {
    	next, stop := iter.Pull(seq)
    	next()
    	stop()
    	coroswitch(nil)
    }
    
    //go:linkname coroswitch runtime.coroswitch
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:05:33 UTC 2024
    - 506 bytes
    - Viewed (0)
  5. 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)
  6. cmd/kubeadm/app/cmd/phases/init/preflight.go

    	if err := preflight.RunInitNodeChecks(utilsexec.New(), data.Cfg(), data.IgnorePreflightErrors(), false, false); err != nil {
    		return err
    	}
    
    	if data.DryRun() {
    		fmt.Println("[preflight] Would pull the required images (like 'kubeadm config images pull')")
    		return nil
    	}
    
    	fmt.Println("[preflight] Pulling images required for setting up a Kubernetes cluster")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/cmd/phases/upgrade/node/preflight.go

    			fmt.Println("[preflight] You can also perform this action beforehand using 'kubeadm config images pull'")
    			if err := preflight.RunPullImagesCheck(utilsexec.New(), initConfig, data.IgnorePreflightErrors()); err != nil {
    				return err
    			}
    		} else {
    			fmt.Println("[preflight] Would pull the required images (like 'kubeadm config images pull')")
    		}
    	} else {
    		fmt.Println("[preflight] Skipping prepull. Not a control plane node.")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  8. 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)
  9. docs/zh/docs/fastapi-people.md

    ---
    
    **FastAPI** 得到了社区的大力支持。因此我想突出他们的贡献。
    
    这些人:
    
    * [帮助他人解决 GitHub 上的问题](help-fastapi.md#github_1){.internal-link target=_blank}。
    * [创建 Pull Requests](help-fastapi.md#pr){.internal-link target=_blank}。
    * 审核 Pull Requests, 对于 [翻译](contributing.md#_8){.internal-link target=_blank} 尤为重要。
    
    向他们致以掌声。 👏 🙇
    
    ## FastAPI 专家
    
    这些用户一直以来致力于 [帮助他人解决 GitHub 上的问题](help-fastapi.md#github_1){.internal-link target=_blank}。 🙇
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 25 17:09:48 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. pkg/wasm/cache_test.go

    	testWasmGet(url1, defaultPullPolicy, "1", wantFilePath1, 1)
    	// 2nd time: Should not pull the binary and use the cache because defaultPullPolicy is IfNotPresent
    	testWasmGet(url1, defaultPullPolicy, "2", wantFilePath1, 1)
    	// 3rd time: Should not pull the binary because the policy is IfNotPresent
    	testWasmGet(url1, IfNotPresent, "3", wantFilePath1, 1)
    	// 4th time: Should not pull the binary because the resource version is not changed
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 33.9K bytes
    - Viewed (0)
Back to top