Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 577 for __major (0.13 sec)

  1. src/internal/syscall/windows/version_windows.go

    	if err != nil {
    		// Fallback to checking the Windows version.
    		major, _, build := version()
    		supportTCPKeepAliveIdle = major >= 10 && build >= 16299
    		supportTCPKeepAliveInterval = major >= 10 && build >= 16299
    		supportTCPKeepAliveCount = major >= 10 && build >= 15063
    		return
    	}
    	defer syscall.Closesocket(s)
    	var optSupported = func(opt int) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storagemigration/v1alpha1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *StorageVersionMigration) APILifecycleIntroduced() (major, minor int) {
    	return 1, 30
    }
    
    // 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: Fri Mar 08 04:18:56 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/dev_darwin.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 Darwin's sys/types.h header.
    
    package unix
    
    // Major returns the major component of a Darwin device number.
    func Major(dev uint64) uint32 {
    	return uint32((dev >> 24) & 0xff)
    }
    
    // Minor returns the minor component of a Darwin device number.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 19:01:58 UTC 2018
    - 747 bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/networking/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *Ingress) APILifecycleIntroduced() (major, minor int) {
    	return 1, 19
    }
    
    // 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
    - 2.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/deleted_kinds_test.go

    				t.Fatal(actual)
    			}
    		})
    	}
    }
    
    func storageRemovedIn(major, minor int) removedInStorage {
    	return removedInStorage{major: major, minor: minor}
    }
    
    func storageNeverRemoved() removedInStorage {
    	return removedInStorage{neverRemoved: true}
    }
    
    type removedInStorage struct {
    	major, minor int
    	neverRemoved bool
    }
    
    func (r removedInStorage) New() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authentication/v1alpha1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *SelfSubjectReview) APILifecycleIntroduced() (major, minor int) {
    	return 1, 26
    }
    
    // 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: Wed Mar 08 23:42:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  7. pilot/pkg/model/context_test.go

    			fields: fields{Major: 2, Minor: 1, Patch: 1},
    			args:   args{&model.IstioVersion{Major: 2, Minor: 1, Patch: -1}},
    			want:   0,
    		},
    		{
    			name:   "less at patch",
    			fields: fields{Major: 2, Minor: 1, Patch: 0},
    			args:   args{&model.IstioVersion{Major: 2, Minor: 1, Patch: 1}},
    			want:   -1,
    		},
    		{
    			name:   "ignore minor",
    			fields: fields{Major: 2, Minor: 1, Patch: 11},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 05 23:51:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *ConversionReview) 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
    - 1.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *ConversionReview) APILifecycleIntroduced() (major, minor int) {
    	return 1, 13
    }
    
    // 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 Aug 24 19:47:49 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/dev_netbsd.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 NetBSD's sys/types.h header.
    
    package unix
    
    // Major returns the major component of a NetBSD device number.
    func Major(dev uint64) uint32 {
    	return uint32((dev & 0x000fff00) >> 8)
    }
    
    // Minor returns the minor component of a NetBSD device number.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 23 19:01:58 UTC 2018
    - 913 bytes
    - Viewed (0)
Back to top