Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 87 for mincore (0.19 sec)

  1. src/runtime/os_linux.go

    	// Fall back to /proc/self/auxv.
    	fd := open(&procAuxv[0], 0 /* O_RDONLY */, 0)
    	if fd < 0 {
    		// On Android, /proc/self/auxv might be unreadable (issue 9229), so we fallback to
    		// try using mincore to detect the physical page size.
    		// mincore should return EINVAL when address is not a multiple of system page size.
    		const size = 256 << 10 // size of memory region to allocate
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  2. istioctl/pkg/precheck/precheck.go

    		return nil, err
    	}
    	major, minors, ok := strings.Cut(version, ".")
    	if !ok {
    		return nil, fmt.Errorf("invalid version %v, expected format like '1.0'", version)
    	}
    	if major != "1" {
    		return nil, fmt.Errorf("expected major version 1, got %v", version)
    	}
    	minor, err := strconv.Atoi(minors)
    	if err != nil {
    		return nil, fmt.Errorf("minor version is not a number: %v", minors)
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionBean.java

                }
            }
    
            public void setExplain(boolean explain) {
                this.explain = explain;
            }
    
            public void setMinScore(float minScore) {
                this.minScore = minScore;
            }
    
            public void setPreference(String preference) {
                this.preference = preference;
            }
    
            public void setRouting(String routing) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/config/allcommon/EsAbstractConditionBean.java

                }
            }
    
            public void setExplain(boolean explain) {
                this.explain = explain;
            }
    
            public void setMinScore(float minScore) {
                this.minScore = minScore;
            }
    
            public void setPreference(String preference) {
                this.preference = preference;
            }
    
            public void setRouting(String routing) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionBean.java

                }
            }
    
            public void setExplain(boolean explain) {
                this.explain = explain;
            }
    
            public void setMinScore(float minScore) {
                this.minScore = minScore;
            }
    
            public void setPreference(String preference) {
                this.preference = preference;
            }
    
            public void setRouting(String routing) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/api/core/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *Binding) APILifecycleIntroduced() (major, minor int) {
    	return 1, 0
    }
    
    // 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: Thu May 23 17:42:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. 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)
  9. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    //
    // Files in the "minor changes" directory (the unique directory matching the glob
    // "*stdlib/*minor") are named after the package to which they refer, and will have
    // the package heading inserted automatically and links to other standard library
    // symbols expanded automatically. For example, if a file *stdlib/minor/bytes/f.md
    // contains the text
    //
    //	[Reader] implements [io.Reader].
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/phases/upgrade/compute_test.go

    	return etcdVer.String()
    }
    
    const fakeCurrentCoreDNSVersion = "1.0.6"
    
    func TestGetAvailableUpgrades(t *testing.T) {
    
    	// constansts for test cases
    	// variables are in the form v{MAJOR}{MINOR}{PATCH}, where MINOR is a variable so test are automatically uptodate to the latest MinimumControlPlaneVersion/
    
    	// v1.X series, e.g. v1.14
    	v1X0 := versionutil.MustParseSemantic("v1.14.0")
    	v1X5 := v1X0.WithPatch(5)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 08:39:51 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top