Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 112 for runNames (0.12 sec)

  1. pkg/kubelet/kuberuntime/kuberuntime_image.go

    	allImages, err := m.imageService.ListImages(ctx, nil)
    	if err != nil {
    		klog.ErrorS(err, "Failed to list images")
    		return nil, err
    	}
    
    	for _, img := range allImages {
    		// Container runtimes may choose not to implement changes needed for KEP 4216. If
    		// the changes are not implemented by a container runtime, the exisiting behavior
    		// of not populating the runtimeHandler CRI field in ImageSpec struct is preserved.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 00:30:31 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/phases/init/waitcontrolplane.go

    		- 'journalctl -xeu kubelet'
    
    	Additionally, a control plane component may have crashed or exited when started by the container runtime.
    	To troubleshoot, list all containers using your preferred container runtimes CLI.
    	Here is one example how you may list all running Kubernetes containers by using crictl:
    		- 'crictl --runtime-endpoint {{ .Socket }} ps -a | grep kube | grep -v pause'
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/CallInterceptionClosureInstrumentingClassVisitor.java

     *          the new delegate. This ensures the invariant above.
     *     <li> Adds {@link InstrumentableClosure} to the set of interfaces.
     *     <li> Renames the {@code doCall} methods to {@code doCall$original} and adds new {@code doCall methods} that surrounds the original call with
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 01:16:36 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/swift/SwiftcToolChain.java

            addDefaultTools(configurableToolChain);
            configureActions.execute(configurableToolChain);
    
            // TODO: this is an approximation as we know swift currently supports only 64-bit runtimes - eventually, we'll want to query for this
            if (!isCurrentArchitecture(targetPlatform)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/provider.go

    	if err != nil {
    		return false, err
    	}
    	// KEP Enhancement: DedicatedImageFs can mean either container or image fs are separate from root
    	// CAdvisor reports this a bit differently than Container runtimes
    	if device == rootFsInfo.Device {
    		imageFs, containerFs, err := p.ImageFsStats(ctx)
    		if err != nil {
    			return false, err
    		}
    		if !equalFileSystems(imageFs, containerFs) {
    			return true, nil
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 15 13:56:22 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/dra/claiminfo.go

    func (info *ClaimInfo) setCDIDevices(pluginName string, cdiDevices []string) error {
    	// NOTE: Passing CDI device names as annotations is a temporary solution
    	// It will be removed after all runtimes are updated
    	// to get CDI device names from the ContainerConfig.CDIDevices field
    	annotations, err := cdi.GenerateAnnotations(info.ClaimUID, info.DriverName, cdiDevices)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 03 13:30:31 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. pkg/kubelet/server/stats/handler.go

    	// ListPodStatsAndUpdateCPUNanoCoreUsage returns the stats of all the
    	// containers managed by pods and force update the cpu usageNanoCores.
    	// This is a workaround for CRI runtimes that do not integrate with
    	// cadvisor. See https://github.com/kubernetes/kubernetes/issues/72788
    	// for more details.
    	ListPodStatsAndUpdateCPUNanoCoreUsage(ctx context.Context) ([]statsapi.PodStats, error)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 14 21:31:38 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  8. src/cmd/distpack/archive.go

    	})
    }
    
    // SetTime sets the modification time of all files in the archive to t.
    func (a *Archive) SetTime(t time.Time) {
    	for i := range a.Files {
    		a.Files[i].Time = t
    	}
    }
    
    // RenameGoMod renames the go.mod files in the archive to _go.mod,
    // for use with the module form, which cannot contain other go.mod files.
    func (a *Archive) RenameGoMod() {
    	for i, f := range a.Files {
    		if strings.HasSuffix(f.Name, "/go.mod") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 17:37:52 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  9. cmd/erasure-multipart.go

    			}
    			return disks[index].WriteAll(ctx, dstBucket, dstEntry, b)
    		}, index)
    	}
    
    	// Wait for all renames to finish.
    	errs := g.Wait()
    
    	// We can safely allow RenameFile errors up to len(er.getDisks()) - writeQuorum
    	// otherwise return failure. Cleanup successful renames.
    	err := reduceWriteQuorumErrs(ctx, errs, objectOpIgnoredErrs, writeQuorum)
    	if errors.Is(err, errErasureWriteQuorum) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/runtime/runtime.go

    var defaultKnownCRISockets = []string{
    	constants.CRISocketContainerd,
    	constants.CRISocketCRIO,
    	constants.CRISocketDocker,
    }
    
    // ContainerRuntime is an interface for working with container runtimes
    type ContainerRuntime interface {
    	Connect() error
    	SetImpl(impl)
    	IsRunning() error
    	ListKubeContainers() ([]string, error)
    	RemoveContainers(containers []string) error
    	PullImage(image string) error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 06:33:22 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top