Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,819 for Pulling (0.16 sec)

  1. tools/docker-builder/crane.go

    				bases.Insert(args.Base)
    				b.Args = append(b.Args, args)
    			}
    			builds = append(builds, b)
    		}
    	}
    
    	// Warm up our base images while we are building everything. This isn't pulling them -- we actually
    	// never pull them -- but it is pulling the config file from the remote registry.
    	builder.WarmBase(ctx, a.Architectures, sets.SortedList(bases)...)
    
    	// Build all dependencies
    	makeStart := time.Now()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. pkg/kubelet/images/types.go

    	ErrInvalidImageName = errors.New("InvalidImageName")
    )
    
    // ImageManager provides an interface to manage the lifecycle of images.
    // Implementations of this interface are expected to deal with pulling (downloading),
    // managing, and deleting container images.
    // Implementations are expected to abstract the underlying runtimes.
    // Implementations are expected to be thread safe.
    type ImageManager interface {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 22:52:46 UTC 2023
    - 2K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/cmd/phases/init/preflight.go

    		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")
    	fmt.Println("[preflight] This might take a minute or two, depending on the speed of your internet connection")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. futures/failureaccess/pom.xml

        InternalFutures. Most users will never need to use this artifact. Its
        classes are conceptually a part of Guava, but they're in this separate
        artifact so that Android libraries can use them without pulling in all of
        Guava (just as they can use ListenableFuture by depending on the
        listenablefuture artifact).
      </description>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-jar-plugin</artifactId>
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 17 02:24:23 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. .github/pull_request_template.md

           for the change (usually before you start working on it).  Trivial changes like typos do not
           require a JIRA issue. Your pull request should address just this issue, without
           pulling in other changes.
     - [ ] Each commit in the pull request should have a meaningful subject line and body.
     - [ ] Format the pull request title like `[MNG-XXX] SUMMARY`,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 20 13:14:27 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/options/options.go

    		"timeout per a HTTP request for pulling a Wasm module via http/https").Get()
    
    	wasmHTTPRequestMaxRetries = env.Register("WASM_HTTP_REQUEST_MAX_RETRIES", wasm.DefaultHTTPRequestMaxRetries,
    		"maximum number of HTTP/HTTPS request retries for pulling a Wasm module via http/https").Get()
    
    	enableWDSEnv = env.Register("PEER_METADATA_DISCOVERY", false,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. pkg/volume/util/recyclerclient/recycler_client_test.go

    				newPodEvent(watch.Added, "podRecyclerSuccess", v1.PodPending, ""),
    				newEvent(v1.EventTypeNormal, "Successfully assigned recycler-for-podRecyclerSuccess to 127.0.0.1"),
    				newEvent(v1.EventTypeNormal, "Pulling image \"registry.k8s.io/busybox\""),
    				newEvent(v1.EventTypeNormal, "Successfully pulled image \"registry.k8s.io/busybox\""),
    				newEvent(v1.EventTypeNormal, "Created container with docker id 83d929aeac82"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 31 14:16:53 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/cmd/phases/upgrade/node/preflight.go

    		initConfig.NodeRegistration.ImagePullPolicy = data.Cfg().Node.ImagePullPolicy
    		initConfig.NodeRegistration.ImagePullSerial = data.Cfg().Node.ImagePullSerial
    
    		if !data.DryRun() {
    			fmt.Println("[preflight] Pulling images required for setting up a Kubernetes cluster")
    			fmt.Println("[preflight] This might take a minute or two, depending on the speed of your internet connection")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/util/runtime/runtime.go

    	imageExistsFunc func(string) bool, pullImageFunc func(string) error) []error {
    
    	var errs []error
    	errChan := make(chan error, len(images))
    
    	klog.V(1).Info("pulling all images in parallel")
    	for _, img := range images {
    		image := img
    		go func() {
    			if ifNotPresent {
    				exists := imageExistsFunc(image)
    				if exists {
    					klog.V(1).Infof("image exists: %s", image)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/apis/kubeadm/types.go

    	// ImagePullPolicy specifies the policy for image pulling during kubeadm "init" and "join" operations.
    	// The value of this field must be one of "Always", "IfNotPresent" or "Never".
    	// If this field is unset kubeadm will default it to "IfNotPresent", or pull the required images if not present on the host.
    	ImagePullPolicy v1.PullPolicy `json:"imagePullPolicy,omitempty"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:12:52 UTC 2024
    - 32.6K bytes
    - Viewed (0)
Back to top