search for: checkvalue

Displaying 4 results from an estimated 4 matches for "checkvalue".

Did you mean: checkvalues
2016 Apr 13
1
[Fwd: Re: Samba_dlz, dhcp y zona inversa no actualiza]
>> what is in '/usr/bin/dhcpd-update-samba-dns.sh' ? # will receive addresses from this DHCP server. Instructions are found here: # https://wiki.archlinux.org/index.php/Samba_4_Active_Directory_Domain_Controller#DHCP sleep 5 checkvalues() { [ -z "${2}" ] && echo "Error: argument '${1}' requires a parameter." && exit 1 case ${2} in -*) echo "Error: Invalid parameter '${2}' passed to ${1}." exit 1 ;; *) return 0 ;; esac } showhelp() { echo -e "\n"`basename ${0}...
2006 Jul 26
2
return values from a function - basic question
I thought this would be simple, but I just cant seem to get it to work. # only allow numbers. Need to check for nil / NAN def saveHours(val) if val < 0 val = 0 end return val end current_item.product.v1 = checkValue(values[:val1]) current_item.product.v2 = checkValue(values[:val2]) but when I run the code, nothing is ever returned from the checkValue function. If I remove the function call and just have values[:val1] things work fine. Ive also tried removing the return and just having ''val'...
2010 Jan 04
3
Extract vector elements until cumsum <= x
Hi All, I have a vector n, and for each n[i] I want to extract n[i], n[i+1], n[i+2]..., until the cumulative sum of n[i] and subsequent elements exceeds a CheckValue, whereupon I move to the next index and repeat. I am trying to find a Vectorized approach, and have seen similar posts where filter{stat} and rollmean{zoo} were suggested, but, I haven't been able to figure a way to use them for this problem. Best wishes to all, and thanks for the help! Dgn...
2013 Jul 30
0
[LLVMdev] LLVM (opt) -profile-verifier is not pass resilient
...ed -O3 flag. This caused OPT to give a warning "WARNING: profile information is inconsistent with the current program!" and then fail with an assert (ASSERT:inWeight and outWeight do not match opt: ProfileVerifierPass.cpp:226: void<unnamed>::ProfileVerifierPassT<FType, BType>::CheckValue(bool, const char*, <unnamed>::ProfileVerifierPassT<FType, BType>::DetailedBlockInfo*) [with FType = llvm::Function, BType = llvm::BasicBlock]: Assertion `0 && (Message)' failed.) Instead of passing -O3, if I pass only one optimization pass with the profile, then there is no...