Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 577 for __major (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/dev_linux.go

    // 32-bit dev_t, encoded as mmmM MMmm.
    
    package unix
    
    // Major returns the major component of a Linux device number.
    func Major(dev uint64) uint32 {
    	major := uint32((dev & 0x00000000000fff00) >> 8)
    	major |= uint32((dev & 0xfffff00000000000) >> 32)
    	return major
    }
    
    // Minor returns the minor component of a Linux device number.
    func Minor(dev uint64) uint32 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 19:01:58 UTC 2018
    - 1.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/networking/v1alpha1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *IPAddress) APILifecycleIntroduced() (major, minor int) {
    	return 1, 27
    }
    
    // APILifecycleDeprecated is an autogenerated function, returning the release in which the API struct was or will be deprecated as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  3. src/internal/syscall/unix/kernel_version_solaris_test.go

    		}
    	} else { // Solaris
    		if gotSock && gotAccept4 && (major < 11 || (major == 11 && minor < 4)) {
    			t.Fatalf("SupportSockNonblockCloexec and SupportAccept4 are true, but kernel version is older than 11.4, Solaris version: %d.%d", major, minor)
    		}
    		if !gotSock && !gotAccept4 && (major > 11 || (major == 11 && minor >= 4)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:17:25 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/dev_openbsd.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Functions to access/create device major and minor numbers matching the
    // encoding used in OpenBSD's sys/types.h header.
    
    package unix
    
    // Major returns the major component of an OpenBSD device number.
    func Major(dev uint64) uint32 {
    	return uint32((dev & 0x0000ff00) >> 8)
    }
    
    // Minor returns the minor component of an OpenBSD device number.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 19:01:58 UTC 2018
    - 918 bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/dev_zos.go

    //go:build zos && s390x
    
    // Functions to access/create device major and minor numbers matching the
    // encoding used by z/OS.
    //
    // The information below is extracted and adapted from <sys/stat.h> macros.
    
    package unix
    
    // Major returns the major component of a z/OS device number.
    func Major(dev uint64) uint32 {
    	return uint32((dev >> 16) & 0x0000FFFF)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 830 bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/dev_freebsd.go

    package unix
    
    // Major returns the major component of a FreeBSD device number.
    func Major(dev uint64) uint32 {
    	return uint32((dev >> 8) & 0xff)
    }
    
    // Minor returns the minor component of a FreeBSD device number.
    func Minor(dev uint64) uint32 {
    	return uint32(dev & 0xffff00ff)
    }
    
    // Mkdev returns a FreeBSD device number generated from the given major and
    // minor components.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 19:01:58 UTC 2018
    - 1013 bytes
    - Viewed (0)
  7. platforms/jvm/jacoco/src/testFixtures/groovy/org/gradle/testing/jacoco/plugins/fixtures/JacocoCoverage.groovy

                this.minor = minor
                this.patch = patch
            }
    
            @Override
            int compareTo(JacocoVersion o) {
                if (major > o.major) {
                    return 1
                }
                if (major < o.major) {
                    return -1
                }
    
                if (minor > o.minor) {
                    return 1
                }
                if (minor < o.minor) {
                    return -1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:50:44 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *MutatingWebhookConfiguration) APILifecycleIntroduced() (major, minor int) {
    	return 1, 16
    }
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *ClusterRole) APILifecycleIntroduced() (major, minor int) {
    	return 1, 8
    }
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/util/VersionNumber.java

            this(major, minor, micro, patch, qualifier, PATCH_SCHEME, true);
        }
    
        private VersionNumber(int major, int minor, int micro, int patch, @Nullable String qualifier, AbstractScheme scheme, boolean logDeprecation) {
            this.major = major;
            this.minor = minor;
            this.micro = micro;
            this.patch = patch;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:46:00 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top