Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 116 for ctlname (0.38 sec)

  1. pkg/volume/portworx/portworx_util.go

    	if err != nil || driver == nil {
    		klog.Errorf("Failed to get portworx driver. Err: %v", err)
    		return "", err
    	}
    
    	devicePath, err := driver.Attach(m.volName, attachOptions)
    	if err != nil {
    		klog.Errorf("Error attaching Portworx Volume (%v): %v", m.volName, err)
    		return "", err
    	}
    	return devicePath, nil
    }
    
    // DetachVolume detaches a Portworx Volume
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 11:12:06 UTC 2022
    - 12.2K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/pod_devices.go

    	pdev.RLock()
    	defer pdev.RUnlock()
    	for podUID, containerDevices := range pdev.devs {
    		for conName, resources := range containerDevices {
    			for resource, devices := range resources {
    				if devices.allocResp == nil {
    					klog.ErrorS(nil, "Can't marshal allocResp, allocation response is missing", "podUID", podUID, "containerName", conName, "resourceName", resource)
    					continue
    				}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jan 27 02:10:25 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  3. cmd/api-response.go

    )
    
    // LocationResponse - format for location response.
    type LocationResponse struct {
    	XMLName  xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ LocationConstraint" json:"-"`
    	Location string   `xml:",chardata"`
    }
    
    // PolicyStatus captures information returned by GetBucketPolicyStatusHandler
    type PolicyStatus struct {
    	XMLName  xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ PolicyStatus" json:"-"`
    	IsPublic string
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods_linux_test.go

    				"disk1": kubecontainer.VolumeInfo{BlockVolumeMapper: &stubBlockVolume{dirPath: "/dev/", volName: "sda"}},
    				"disk2": kubecontainer.VolumeInfo{BlockVolumeMapper: &stubBlockVolume{dirPath: "/dev/disk/by-path/", volName: "diskPath"}, ReadOnly: true},
    				"disk3": kubecontainer.VolumeInfo{BlockVolumeMapper: &stubBlockVolume{dirPath: "/dev/disk/by-id/", volName: "diskUuid"}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 18:00:59 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  5. src/encoding/xml/marshal.go

    	// 0. startTemplate
    	// 1. XMLName field in underlying struct;
    	// 2. field name/tag in the struct field; and
    	// 3. type name
    	var start StartElement
    
    	if startTemplate != nil {
    		start.Name = startTemplate.Name
    		start.Attr = append(start.Attr, startTemplate.Attr...)
    	} else if tinfo.xmlname != nil {
    		xmlname := tinfo.xmlname
    		if xmlname.name != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    		}
    	}
    
    	if MainModules.Index(mainModule).goVersion == "" && rs.pruning != workspace {
    		// TODO(#45551): Do something more principled instead of checking
    		// cfg.CmdName directly here.
    		if cfg.BuildMod == "mod" && cfg.CmdName != "mod graph" && cfg.CmdName != "mod why" {
    			// go line is missing from go.mod; add one there and add to derived requirements.
    			v := gover.Local()
    			if opts != nil && opts.TidyGoVersion != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. src/syscall/types_aix.go

    // +godefs map struct_in6_addr [16]byte /* in6_addr */
    
    package syscall
    
    /*
    #include <sys/types.h>
    #include <sys/time.h>
    #include <sys/limits.h>
    #include <sys/un.h>
    #include <sys/utsname.h>
    #include <sys/ptrace.h>
    #include <sys/statfs.h>
    
    #include <net/if.h>
    #include <net/if_dl.h>
    #include <netinet/in.h>
    #include <netinet/icmp6.h>
    
    #include <termios.h>
    
    #include <dirent.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.4K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    	allErrs := field.ErrorList{}
    	for _, altname := range altnames {
    		if errs := validation.IsDNS1123Subdomain(altname); len(errs) != 0 {
    			if errs2 := validation.IsWildcardDNS1123Subdomain(altname); len(errs2) != 0 {
    				if netutils.ParseIPSloppy(altname) == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  9. src/internal/sysinfo/sysinfo.go

    // Package sysinfo implements high level hardware information gathering
    // that can be used for debugging or information purposes.
    package sysinfo
    
    import (
    	"internal/cpu"
    	"sync"
    )
    
    var CPUName = sync.OnceValue(func() string {
    	if name := cpu.Name(); name != "" {
    		return name
    	}
    
    	if name := osCPUInfoName(); name != "" {
    		return name
    	}
    
    	return ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 18:42:42 UTC 2024
    - 518 bytes
    - Viewed (0)
  10. src/cmd/internal/osinfo/os_unix.go

    // license that can be found in the LICENSE file.
    
    //go:build unix
    
    package osinfo
    
    import "golang.org/x/sys/unix"
    
    // Version returns the OS version name/number.
    func Version() (string, error) {
    	var uts unix.Utsname
    	if err := unix.Uname(&uts); err != nil {
    		return "", err
    	}
    
    	sysname := unix.ByteSliceToString(uts.Sysname[:])
    	release := unix.ByteSliceToString(uts.Release[:])
    	version := unix.ByteSliceToString(uts.Version[:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 23:58:34 UTC 2022
    - 666 bytes
    - Viewed (0)
Back to top