Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 116 for ctlname (0.09 sec)

  1. internal/bucket/lifecycle/transition.go

    	return e.EncodeElement(int(tDays), startElement)
    }
    
    // Transition - transition actions for a rule in lifecycle configuration.
    type Transition struct {
    	XMLName      xml.Name       `xml:"Transition"`
    	Days         TransitionDays `xml:"Days,omitempty"`
    	Date         TransitionDate `xml:"Date,omitempty"`
    	StorageClass string         `xml:"StorageClass,omitempty"`
    
    	set bool
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jan 10 17:07:49 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_dragonfly.go

    	err := sysctl(mib, old, oldlen, nil, 0)
    	if err != nil {
    		// Utsname members on Dragonfly are only 32 bytes and
    		// the syscall returns ENOMEM in case the actual value
    		// is longer.
    		if err == ENOMEM {
    			err = nil
    		}
    	}
    	return err
    }
    
    func Uname(uname *Utsname) error {
    	mib := []_C_int{CTL_KERN, KERN_OSTYPE}
    	n := unsafe.Sizeof(uname.Sysname)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. cmd/erasure-sets.go

    					return nil
    				}
    				return err
    			}
    			for _, volName := range volsInfo {
    				vi, err := storageDisks[index].StatVol(ctx, pathJoin(minioMetaBucket, bucketMetaPrefix, deletedBucketsPrefix, volName))
    				if err == nil {
    					vi.Name = strings.TrimSuffix(volName, SlashSeparator)
    					mu.Lock()
    					if _, ok := delBuckets[volName]; !ok {
    						delBuckets[volName] = vi
    					}
    					mu.Unlock()
    				}
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  4. pkg/volume/iscsi/attacher.go

    		klog.Warningf("failed to get iscsi mounter: %v", err)
    		return "", err
    	}
    	if mounter.InitiatorName != "" {
    		// new iface name is <target portal>:<volume name>
    		mounter.Iface = mounter.Portals[0] + ":" + mounter.VolName
    	}
    	return attacher.manager.MakeGlobalPDName(*mounter.iscsiDisk), nil
    }
    
    func (attacher *iscsiAttacher) MountDevice(spec *volume.Spec, devicePath string, deviceMountPath string, mountArgs volume.DeviceMounterArgs) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 04 08:51:31 UTC 2022
    - 6.8K bytes
    - Viewed (0)
  5. pkg/controller/volume/expand/expand_controller.go

    	return expc.kubeClient
    }
    
    func (expc *expandController) NewWrapperMounter(volName string, spec volume.Spec, pod *v1.Pod, opts volume.VolumeOptions) (volume.Mounter, error) {
    	return nil, fmt.Errorf("NewWrapperMounter not supported by expand controller's VolumeHost implementation")
    }
    
    func (expc *expandController) NewWrapperUnmounter(volName string, spec volume.Spec, podUID types.UID) (volume.Unmounter, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go

    	POLLHUP    = 0x10
    	POLLIN     = 0x1
    	POLLNVAL   = 0x20
    	POLLOUT    = 0x4
    	POLLPRI    = 0x2
    	POLLRDBAND = 0x80
    	POLLRDNORM = 0x40
    	POLLWRBAND = 0x100
    	POLLWRNORM = 0x4
    )
    
    type Utsname struct {
    	Sysname  [32]byte
    	Nodename [32]byte
    	Release  [32]byte
    	Version  [32]byte
    	Machine  [32]byte
    }
    
    const SizeofClockinfo = 0x14
    
    type Clockinfo struct {
    	Hz      int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. src/testing/benchmark.go

    		fmt.Fprintf(b.w, "goos: %s\n", runtime.GOOS)
    		fmt.Fprintf(b.w, "goarch: %s\n", runtime.GOARCH)
    		if b.importPath != "" {
    			fmt.Fprintf(b.w, "pkg: %s\n", b.importPath)
    		}
    		if cpu := sysinfo.CPUName(); cpu != "" {
    			fmt.Fprintf(b.w, "cpu: %s\n", cpu)
    		}
    	})
    	if b.context != nil {
    		// Running go test --test.bench
    		b.context.processBench(b) // Must call doBench.
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  8. internal/bucket/lifecycle/expiration.go

    type Boolean struct {
    	val    bool
    	set    bool
    	Unused struct{} // Needed for GOB compatibility
    }
    
    // Expiration - expiration actions for a rule in lifecycle configuration.
    type Expiration struct {
    	XMLName      xml.Name           `xml:"Expiration"`
    	Days         ExpirationDays     `xml:"Days,omitempty"`
    	Date         ExpirationDate     `xml:"Date,omitempty"`
    	DeleteMarker ExpireDeleteMarker `xml:"ExpiredObjectDeleteMarker"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 21 20:28:34 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_volumes_test.go

    	return nil
    }
    
    type stubBlockVolume struct {
    	dirPath string
    	volName string
    }
    
    func (f *stubBlockVolume) GetGlobalMapPath(spec *volume.Spec) (string, error) {
    	return "", nil
    }
    
    func (f *stubBlockVolume) GetPodDeviceMapPath() (string, string) {
    	return f.dirPath, f.volName
    }
    
    func (f *stubBlockVolume) SetUpDevice() (string, error) {
    	return "", nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 17 16:53:28 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go

    	POLLIN     = 0x1
    	POLLNVAL   = 0x20
    	POLLOUT    = 0x4
    	POLLPRI    = 0x2
    	POLLRDBAND = 0x80
    	POLLRDNORM = 0x40
    	POLLWRBAND = 0x100
    	POLLWRNORM = 0x4
    )
    
    type Sigset_t uint32
    
    type Utsname struct {
    	Sysname  [256]byte
    	Nodename [256]byte
    	Release  [256]byte
    	Version  [256]byte
    	Machine  [256]byte
    }
    
    const SizeofUvmexp = 0x158
    
    type Uvmexp struct {
    	Pagesize           int32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 9.4K bytes
    - Viewed (0)
Back to top