Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 72 for CNT (0.03 sec)

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

    		err = errnoErr(Errno(value))
    	} else {
    		if buf[0] == '$' {
    			if isSpecialPath(buf[1:9]) {
    				cnt, err1 := realpath(path, buf)
    				if err1 == 0 {
    					n = cnt
    				}
    			}
    		}
    	}
    	return
    }
    
    func impl_Readlinkat(dirfd int, path string, buf []byte) (n int, err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. src/runtime/mgcmark.go

    		}
    
    	case i == fixedRootFinalizers:
    		for fb := allfin; fb != nil; fb = fb.alllink {
    			cnt := uintptr(atomic.Load(&fb.cnt))
    			scanblock(uintptr(unsafe.Pointer(&fb.fin[0])), cnt*unsafe.Sizeof(fb.fin[0]), &finptrmask[0], gcw, nil)
    		}
    
    	case i == fixedRootFreeGStacks:
    		// Switch to the system stack so we can call
    		// stackfree.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller.go

    		metrics.PodFailuresHandledByFailurePolicy.WithLabelValues(action).Add(float64(count))
    	}
    }
    
    func countReadyPods(pods []*v1.Pod) int32 {
    	cnt := int32(0)
    	for _, p := range pods {
    		if podutil.IsPodReady(p) {
    			cnt++
    		}
    	}
    	return cnt
    }
    
    // This checks if we should apply PodReplacementPolicy.
    // PodReplacementPolicy controls when we recreate pods if they are marked as terminating
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/tables.go

    	CMGT:      "CMGT",
    	CMHI:      "CMHI",
    	CMHS:      "CMHS",
    	CMLE:      "CMLE",
    	CMLT:      "CMLT",
    	CMN:       "CMN",
    	CMP:       "CMP",
    	CMTST:     "CMTST",
    	CNEG:      "CNEG",
    	CNT:       "CNT",
    	CRC32B:    "CRC32B",
    	CRC32CB:   "CRC32CB",
    	CRC32CH:   "CRC32CH",
    	CRC32CW:   "CRC32CW",
    	CRC32CX:   "CRC32CX",
    	CRC32H:    "CRC32H",
    	CRC32W:    "CRC32W",
    	CRC32X:    "CRC32X",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 211.8K bytes
    - Viewed (0)
  5. src/syscall/zsyscall_darwin_arm64.go

    func writev(fd int, iovecs []Iovec) (cnt uintptr, err error) {
    	var _p0 unsafe.Pointer
    	if len(iovecs) > 0 {
    		_p0 = unsafe.Pointer(&iovecs[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    	r0, _, e1 := syscallX(abi.FuncPCABI0(libc_writev_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(iovecs)))
    	cnt = uintptr(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
  6. src/debug/elf/file.go

    		if vers != 1 {
    			break
    		}
    		cnt := f.ByteOrder.Uint16(d[i+2 : i+4])
    		fileoff := f.ByteOrder.Uint32(d[i+4 : i+8])
    		aux := f.ByteOrder.Uint32(d[i+8 : i+12])
    		next := f.ByteOrder.Uint32(d[i+12 : i+16])
    		file, _ := getString(str, int(fileoff))
    
    		var name string
    		j := i + int(aux)
    		for c := 0; c < int(cnt); c++ {
    			if j+16 > len(d) {
    				break
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 23 16:49:58 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  7. src/syscall/zsyscall_darwin_amd64.go

    func writev(fd int, iovecs []Iovec) (cnt uintptr, err error) {
    	var _p0 unsafe.Pointer
    	if len(iovecs) > 0 {
    		_p0 = unsafe.Pointer(&iovecs[0])
    	} else {
    		_p0 = unsafe.Pointer(&_zero)
    	}
    	r0, _, e1 := syscallX(abi.FuncPCABI0(libc_writev_trampoline), uintptr(fd), uintptr(_p0), uintptr(len(iovecs)))
    	cnt = uintptr(r0)
    	if e1 != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 21:34:30 UTC 2023
    - 51.7K bytes
    - Viewed (0)
  8. src/archive/tar/reader.go

    	var (
    		cntNewline int64
    		buf        bytes.Buffer
    		blk        block
    	)
    
    	// feedTokens copies data in blocks from r into buf until there are
    	// at least cnt newlines in buf. It will not read more blocks than needed.
    	feedTokens := func(n int64) error {
    		for cntNewline < n {
    			if _, err := mustReadFull(r, blk[:]); err != nil {
    				return err
    			}
    			buf.Write(blk[:])
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 01:59:14 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/inst.json

    {"Name":"CMTST","Bits":"0|Q|0|0|1|1|1|0|size:2|1|Rm:5|1|0|0|0|1|1|Rn:5|Rd:5","Arch":"Vector Vector variant","Syntax":"CMTST <Vd>.<T>, <Vn>.<T>, <Vm>.<T>","Code":"","Alias":""},
    {"Name":"CNT","Bits":"0|Q|0|0|1|1|1|0|size:2|1|0|0|0|0|0|0|1|0|1|1|0|Rn:5|Rd:5","Arch":"Vector variant","Syntax":"CNT <Vd>.<T>, <Vn>.<T>","Code":"","Alias":""},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 17:57:48 UTC 2017
    - 234.7K bytes
    - Viewed (0)
  10. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    cloudns.info cloudns.org cloudns.pro cloudns.pw cloudns.us cloudsite.builders cloudycluster.net club club.aero club.tw clubmed cm cn cn-north-1.eb.amazonaws.com.cn cn-northwest-1.eb.amazonaws.com.cn cn.com cn.eu.org cn.in cn.it cn.ua cn.vu cng.br cnpy.gdn cnt.br co co.ae co.ag co.am co.ao co.at co.bb co.bi co.bj co.bn co.business co.bw co.ca co.ci co.cl co.cm co.com co.cr co.cz co.dk co.education co.events co.financial co.gg co.gl co.gy co.hu co.id co.il co.im co.in co.ir co.it co.je co.jp co.ke co.kr co.krd...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
Back to top