Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for mincore (0.33 sec)

  1. cmd/xl-storage-format-v2.go

    	buf, major, minor, err := checkXL2V1(buf)
    	if err != nil {
    		return fmt.Errorf("xlMetaV2.Load %w", err)
    	}
    	var allMeta []byte
    	switch major {
    	case 1:
    		switch minor {
    		case 0:
    			allMeta = buf
    		case 1, 2:
    			v, buf, err := msgp.ReadBytesZC(buf)
    			if err != nil {
    				return fmt.Errorf("xlMetaV2.Load version(%d), bufLen(%d) %w", minor, len(buf), err)
    			}
    			if minor >= 2 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/client/SearchEngineClient.java

                this.trackTotalHits = trackTotalHits;
                return this;
            }
    
            public SearchConditionBuilder minScore(final Float minScore) {
                this.minScore = minScore;
                return this;
            }
    
            public boolean build() {
                if (StringUtil.isBlank(query)) {
                    return false;
                }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  3. src/net/http/request.go

    		}
    		r2.otherValues = s2
    	}
    	return r2
    }
    
    // ProtoAtLeast reports whether the HTTP protocol used
    // in the request is at least major.minor.
    func (r *Request) ProtoAtLeast(major, minor int) bool {
    	return r.ProtoMajor > major ||
    		r.ProtoMajor == major && r.ProtoMinor >= minor
    }
    
    // UserAgent returns the client's User-Agent, if sent in the request.
    func (r *Request) UserAgent() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  4. cmd/xl-storage.go

    	if err != nil {
    		s.drivePath = ep.Path
    		return s, err
    	}
    
    	info, err := disk.GetInfo(s.drivePath, true)
    	if err != nil {
    		return s, err
    	}
    	s.major = info.Major
    	s.minor = info.Minor
    	s.fsType = info.FSType
    
    	if !globalIsCICD && !globalIsErasureSD {
    		var rootDrive bool
    		if globalRootDiskThreshold > 0 {
    			// Use MINIO_ROOTDISK_THRESHOLD_SIZE to figure out if
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/mips/asm0.go

    }
    
    func OP_VI10(op uint32, df uint32, s10 int32, wd uint32, minor uint32) uint32 {
    	return 0x1e<<26 | (op&7)<<23 | (df&3)<<21 | uint32(s10&0x3FF)<<11 | (wd&31)<<6 | minor&0x3F
    }
    
    func OP_VMI10(s10 int32, rs uint32, wd uint32, minor uint32, df uint32) uint32 {
    	return 0x1e<<26 | uint32(s10&0x3FF)<<16 | (rs&31)<<11 | (wd&31)<<6 | (minor&15)<<2 | df&3
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 53.6K bytes
    - Viewed (0)
  6. src/runtime/pprof/pprof_test.go

    	}
    
    	// Linux [5.9,5.16) has a kernel bug that can break CPU timers on newly
    	// created threads, breaking our CPU accounting.
    	major, minor := unix.KernelVersion()
    	t.Logf("Running on Linux %d.%d", major, minor)
    	defer func() {
    		if t.Failed() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  8. src/cmd/go/go_test.go

    	}
    
    	major, err1 := strconv.Atoi(upxVersion[1])
    	minor, err2 := strconv.Atoi(upxVersion[2])
    	if err1 != nil || err2 != nil {
    		t.Fatalf("bad upx version string: %s", upxVersion[0])
    	}
    
    	// Anything below 3.94 is known not to work with go binaries
    	if (major < 3) || (major == 3 && minor < 94) {
    		t.Skipf("skipping because upx version %v.%v is too old", major, minor)
    	}
    
    	tg := testgo(t)
    	defer tg.cleanup()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go

    		err = errnoErr(e1)
    	}
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    func __makedev(version int, major uint, minor uint) (val uint64) {
    	r0, _, _ := sysvicall6(uintptr(unsafe.Pointer(&proc__makedev)), 3, uintptr(version), uintptr(major), uintptr(minor), 0, 0, 0)
    	val = uint64(r0)
    	return
    }
    
    // THIS FILE IS GENERATED BY THE COMMAND AT THE TOP; DO NOT EDIT
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 59.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/route/route_test.go

    			IPAddresses: []string{"1.1.1.1"},
    			ID:          "someID",
    			DNSDomain:   "foo.com",
    			IstioVersion: &model.IstioVersion{
    				Major: 1,
    				Minor: 20,
    			},
    		})
    	}
    
    	nodeWithExtended := func(cg *core.ConfigGenTest) *model.Proxy {
    		out := node(cg)
    		out.IstioVersion.Minor = 21
    		return out
    	}
    
    	gatewayNames := sets.New("some-gateway")
    
    	t.Run("for virtual service", func(t *testing.T) {
    		g := NewWithT(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 88.1K bytes
    - Viewed (0)
Back to top