Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 502 for mincore (0.23 sec)

  1. src/cmd/cgo/internal/swig/swig_test.go

    	atoi := func(s string) int {
    		x, err := strconv.Atoi(s)
    		if err != nil && parseError == nil {
    			parseError = err
    		}
    		return x
    	}
    	var major, minor, patch int
    	major = atoi(string(matches[1]))
    	if len(matches[2]) > 0 {
    		minor = atoi(string(matches[2][1:]))
    	}
    	if len(matches[3]) > 0 {
    		patch = atoi(string(matches[3][1:]))
    	}
    	if parseError != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:38:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  2. src/net/sock_linux.go

    //   - uint32 in kernel version >= 4.1
    //
    // Truncate number to avoid wrapping.
    //
    // See issue 5030 and 41470.
    func maxAckBacklog(n int) int {
    	major, minor := unix.KernelVersion()
    	size := 16
    	if major > 4 || (major == 4 && minor >= 1) {
    		size = 32
    	}
    
    	var max uint = 1<<size - 1
    	if uint(n) > max {
    		n = int(max)
    	}
    	return n
    }
    
    func maxListenerBacklog() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 03 18:39:45 UTC 2022
    - 993 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/3rd-party-lib/boost_1_55_0/boost/version.hpp

    //
    //  BOOST_VERSION % 100 is the patch level
    //  BOOST_VERSION / 100 % 1000 is the minor version
    //  BOOST_VERSION / 100000 is the major version
    
    #define BOOST_VERSION 105500
    
    //
    //  BOOST_LIB_VERSION must be defined to be the same as BOOST_VERSION
    //  but as a *string* in the form "x_y[_z]" where x is the major version
    //  number, y is the minor version number, and z is the patch level if not 0.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  4. pkg/proxy/winkernel/hns_test.go

    		IpAddress: epIpv6Address,
    	}
    	Endpoint := &hcn.HostComputeEndpoint{
    		IpConfigurations: []hcn.IpConfig{*ipv4Config, *ipv6Config},
    		MacAddress:       epMacAddress,
    		SchemaVersion: hcn.SchemaVersion{
    			Major: 2,
    			Minor: 0,
    		},
    	}
    	Endpoint, err := Network.CreateEndpoint(Endpoint)
    	if err != nil {
    		t.Error(err)
    	}
    
    	mapEndpointsInfo, err := hns.getAllEndpointsByNetwork(Network.Name)
    	if err != nil {
    		t.Error(err)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/admission/v1/zz_generated.prerelease-lifecycle.go

    package v1
    
    // APILifecycleIntroduced is an autogenerated function, returning the release in which the API struct was introduced as int versions of major and minor for comparison.
    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *AdmissionReview) APILifecycleIntroduced() (major, minor int) {
    	return 1, 19
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. tests/integration/helm/upgrade/helm_upgrade_test.go

    		return err
    	}
    
    	previousVersion := semver.New(v.Major(), v.Minor()-1, v.Patch(), v.Prerelease(), v.Metadata())
    
    	// If the previous version is not published yet, use the latest one
    	if exists, err := image.Exists(imageToCheck + ":" + previousVersion.String()); err != nil {
    		return err
    	} else if !exists {
    		previousVersion = semver.New(v.Major(), v.Minor()-2, v.Patch(), v.Prerelease(), v.Metadata())
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 20:31:47 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/ConscryptTest.kt

        assertTrue(ConscryptPlatform.atLeastVersion(version.major(), version.minor()))
        assertTrue(ConscryptPlatform.atLeastVersion(version.major(), version.minor(), version.patch()))
        assertFalse(ConscryptPlatform.atLeastVersion(version.major(), version.minor(), version.patch() + 1))
        assertFalse(ConscryptPlatform.atLeastVersion(version.major(), version.minor() + 1))
        assertFalse(ConscryptPlatform.atLeastVersion(version.major() + 1))
      }
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/version/types.go

    // Info contains versioning information.
    // TODO: Add []string of api versions supported? It's still unclear
    // how we'll want to distribute that information.
    type Info struct {
    	Major        string `json:"major"`
    	Minor        string `json:"minor"`
    	GitVersion   string `json:"gitVersion"`
    	GitCommit    string `json:"gitCommit"`
    	GitTreeState string `json:"gitTreeState"`
    	BuildDate    string `json:"buildDate"`
    	GoVersion    string `json:"goVersion"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 17 11:34:05 UTC 2017
    - 1.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/resolver/SourceDistributionProvider.kt

        private
        fun minimumGradleVersion(): String {
            val baseVersionString = GradleVersion.version(gradleVersion).baseVersion.version
            val (major, minor) = baseVersionString.split('.')
            return when (minor) {
                // TODO:kotlin-dsl consider commenting out this clause once the 1st 6.0 snapshot is out
                "0" -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. pkg/kube/version.go

    		return -1
    	}
    	v, err := strconv.Atoi(clusterVersion.Major + clusterVersion.Minor)
    	if err != nil {
    		// Apparently some clusters don't put proper numbers here. Try GitVersion
    		vp, err := version.ParseGeneric(clusterVersion.GitVersion)
    		if err != nil {
    			// no good
    			return -1
    		}
    		np, err := strconv.Atoi(fmt.Sprintf("%d%d", vp.Major(), vp.Minor()))
    		if err != nil {
    			// no good...
    			return -1
    		}
    		return np
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 23:16:29 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top