Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for CNT (0.02 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/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)
  5. 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)
Back to top