Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for Pull (0.07 sec)

  1. pkg/kubelet/images/image_manager.go

    		backOff:                imageBackOff,
    		puller:                 puller,
    		podPullingTimeRecorder: podPullingTimeRecorder,
    	}
    }
    
    // shouldPullImage returns whether we should pull an image according to
    // the presence and pull policy of the image.
    func shouldPullImage(container *v1.Container, imagePresent bool) bool {
    	if container.ImagePullPolicy == v1.PullNever {
    		return false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. 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)
  3. docs/en/docs/contributing.md

        Check the docs about <a href="https://help.github.com/en/github/collaborating-with-issues-and-pull-requests/about-pull-request-reviews" class="external-link" target="_blank">adding a pull request review</a> to approve it or request changes.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 17:42:43 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. .github/PULL_REQUEST_TEMPLATE.md

    ## Community Contribution License
    All community contributions in this pull request are licensed to the project maintainers
    under the terms of the [Apache 2 license](https://www.apache.org/licenses/LICENSE-2.0). 
    By creating this pull request I represent that I have the right to license the 
    contributions to the project maintainers under the Apache 2 license.
    
    ## Description
    
    
    ## Motivation and Context
    
    
    ## How to test this PR?
    
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Nov 14 17:29:11 UTC 2023
    - 1K bytes
    - Viewed (0)
  7. .github/workflows/codeql-analysis.yml

          uses: actions/checkout@v2
          with:
            # We must fetch at least the immediate parents so that if this is
            # a pull request then we can checkout the head.
            fetch-depth: 2
    
        # If this run was triggered by a pull request event, then checkout
        # the head of the pull request instead of the merge commit.
        - run: git checkout HEAD^2
          if: ${{ github.event_name == 'pull_request' }}
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Fri Nov 17 21:22:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. .github/workflows/invalid_question.yml

    name: "Close invalid questions issues"
    on:
      schedule:
      - cron: "*/10 * * * *"
    
    permissions:
      contents: read
    
    jobs:
      stale:
        permissions:
          issues: write  # for actions/stale to close stale issues
          pull-requests: write  # for actions/stale to close stale PRs
        runs-on: ubuntu-latest
        env:
          ACTIONS_STEP_DEBUG: true
        steps:
        - name: Close Stale Issues
          uses: actions/stale@v8
          with:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Apr 11 02:27:05 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. docs/orchestration/docker-compose/README.md

    ### GNU/Linux and macOS
    
    ```sh
    docker-compose pull
    docker-compose up
    ```
    
    or
    
    ```sh
    docker stack deploy --compose-file docker-compose.yaml minio
    ```
    
    ### Windows
    
    ```sh
    docker-compose.exe pull
    docker-compose.exe up
    ```
    
    or
    
    ```sh
    docker stack deploy --compose-file docker-compose.yaml minio
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 31 19:20:56 UTC 2023
    - 3K bytes
    - Viewed (0)
  10. .github/workflows/missing_playground.yml

    on:
      schedule:
      - cron: "*/10 * * * *"
    
    permissions:
      contents: read
    
    jobs:
      stale:
        permissions:
          issues: write  # for actions/stale to close stale issues
          pull-requests: write  # for actions/stale to close stale PRs
        runs-on: ubuntu-latest
        env:
          ACTIONS_STEP_DEBUG: true
        steps:
        - name: Close Stale Issues
          uses: actions/stale@v8
          with:
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Apr 11 02:27:05 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top