Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for Pull (0.28 sec)

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

    Bu insanlar:
    
    * [GitHubdaki soruları cevaplayarak diğerlerine yardım ediyor](help-fastapi.md#help-others-with-questions-in-github){.internal-link target=_blank}.
    * [Pull Request'ler oluşturuyor](help-fastapi.md#create-a-pull-request){.internal-link target=_blank}.
    * Pull Request'leri gözden geçiriyorlar, [özellikle çeviriler için bu çok önemli](contributing.md#translations){.internal-link target=_blank}.
    
    Onları bir alkışlayalım. 👏 🙇
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 16 23:54:24 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. pilot/pkg/xds/ecds_test.go

    		},
    		Spec: spec,
    	}
    }
    
    var (
    	// Secrets
    	defaultPullSecret = makeDockerCredentials("default-pull-secret", "default", map[string]string{
    		corev1.DockerConfigJsonKey: "default-docker-credential",
    	}, corev1.SecretTypeDockerConfigJson)
    	rootPullSecret = makeDockerCredentials("root-pull-secret", "istio-system", map[string]string{
    		corev1.DockerConfigJsonKey: "root-docker-credential",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 12K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.26.md

    - Fixes creationTimestamp: null causing unnecessary writes to etcd ([#116865](https://github.com/kubernetes/kubernetes/pull/116865), [@alexzielenski](https://github.com/alexzielenski)) [SIG API Machinery and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  4. docs/fr/docs/fastapi-people.md

    * [Aident les autres à résoudre des problèmes (questions) dans GitHub](help-fastapi.md#aider-les-autres-a-resoudre-les-problemes-dans-github){.internal-link target=_blank}.
    * [Créent des Pull Requests](help-fastapi.md#creer-une-pull-request){.internal-link target=_blank}.
    * Review les Pull Requests, [particulièrement important pour les traductions](contributing.md#traductions){.internal-link target=_blank}.
    
    Une salve d'applaudissements pour eux. 👏 🙇
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. pkg/kubelet/images/image_manager_test.go

    	pullerErr      error
    	qps            float32
    	burst          int
    	expected       []pullerExpects
    }
    
    func pullerTestCases() []pullerTestCase {
    	return []pullerTestCase{
    		{ // pull missing image
    			testName:       "image missing, pull",
    			containerImage: "missing_image",
    			policy:         v1.PullIfNotPresent,
    			inspectErr:     nil,
    			pullerErr:      nil,
    			qps:            0.0,
    			burst:          0,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprog/coro.go

    }
    
    func callerExhaust(i iter.Seq[int]) error {
    	next, _ := iter.Pull(i)
    	for {
    		v, ok := next()
    		if !ok {
    			break
    		}
    		if v != 5 {
    			return fmt.Errorf("bad iterator: wanted value %d, got %d", 5, v)
    		}
    	}
    	return nil
    }
    
    func callerExhaustLocked(i iter.Seq[int]) error {
    	runtime.LockOSThread()
    	next, _ := iter.Pull(i)
    	for {
    		v, ok := next()
    		if !ok {
    			break
    		}
    		if v != 5 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. src/runtime/testdata/testprogcgo/coro.go

    }
    
    func callerExhaust(i iter.Seq[int]) error {
    	next, _ := iter.Pull(i)
    	for {
    		v, ok := next()
    		if !ok {
    			break
    		}
    		if v != 5 {
    			return fmt.Errorf("bad iterator: wanted value %d, got %d", 5, v)
    		}
    	}
    	return nil
    }
    
    func callerExhaustCallback(i iter.Seq[int]) (err error) {
    	callFromC(func() {
    		next, _ := iter.Pull(i)
    		for {
    			v, ok := next()
    			if !ok {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. .github/workflows/stale-pr.yml

                Please report it to @gradle/bt-support team
              close-issue-reason: not_planned
    
              # PULL REQUESTS -----------------------------------------------------
              days-before-pr-stale: 30
              exempt-pr-labels: "from:contributor"
              stale-pr-label: stale
              stale-pr-message: >
                This pull request has been automatically marked as stale because it has not had recent activity.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. CONTRIBUTING.md

    [well-formed commit message]: https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
    
    #### Merging pull requests ####
    
    Due to Guava's nature as a subset of Google's internal codebase which is
    automatically synced to the public GitHub repository, we are unable to merge
    pull requests directly into the master branch. Instead, once a pull request is
    ready for merging, we'll make the appropriate changes in the internal codebase
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. pkg/kubelet/images/types.go

    	runtimeapi "k8s.io/cri-api/pkg/apis/runtime/v1"
    )
    
    var (
    	// ErrImagePullBackOff - Container image pull failed, kubelet is backing off image pull
    	ErrImagePullBackOff = errors.New("ImagePullBackOff")
    
    	// ErrImageInspect - Unable to inspect image
    	ErrImageInspect = errors.New("ImageInspectError")
    
    	// ErrImagePull - General image pull error
    	ErrImagePull = errors.New("ErrImagePull")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 22:52:46 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top