Displaying 6 results from an estimated 6 matches for "140365".
Did you mean:
140345
2011 Jul 27
2
for loop help
...lt;- dat1[,1] #list of stations
lat <- dat1[,2] #latitude of station
lon <- dat1[,3] #longitude of station
year <- dat1[,4] # data year
month <- dat1[,5] #data month
ppt <- dat2 #precipiation data
#### station's missing zero years ###
ppt2 <- matrix(ppt[,which(stnid == '140365')],ncol=1)
year2 <- year[which(stnid == '140365')]
year2 <- year2[which(duplicated(year2) == FALSE)]
month2 <- month[which(stnid == '140365')]
ppt3 <- matrix(ppt[,which(stnid == '140405')],ncol=1)
year3 <- year[which(stnid == '140405')]
year3 <...
2007 Jan 10
1
[sfs: dovecot-auth file descriptor usage]
I am re-posting this message from last Friday, as I have seen no replies.
It is critical that we address this problem, since until then we cannot
put more than a few hundred users on our server.
If Dovecot-auth TRULY needs to keep open a file descriptor for every single
login session, we will have to start looking at alternatives.
In short: Help!
----- Forwarded message from Steven F Siirila
2017 Oct 03
0
[PATCH v2 1/2] daemon: Reimplement statvfs API in OCaml.
...(PULARGE_INTEGER) &total_number_of_free_bytes))
+ unix_error (EIO, (char *) "statvfs: GetDiskFreeSpaceEx", pathv);
+
+ /* XXX I couldn't determine how to get block size. MSDN has a
+ * unhelpful hard-coded list here:
+ * http://support.microsoft.com/kb/140365
+ * but this depends on the filesystem type, the size of the disk and
+ * the version of Windows. So this code assumes the disk is NTFS
+ * and the version of Windows is >= Win2K.
+ */
+ if (total_number_of_bytes < UINT64_C (16) * 1024 * 1024 * 1024 * 1024)
+ f_bsize = 4096;
+ e...
2017 Oct 04
2
[PATCH v3 0/2] builder: Choose better weights in the planner.
v2 -> v3:
- Drop gnulib fallback.
2017 Oct 02
3
[PATCH 0/2] builder: Choose better weights in the planner.
It started out as "this'll be just a simple fix ..."
and turned into something a bit over-engineered in the end.
Here it is anyway.
Rich.
2017 Oct 03
4
[PATCH v2 0/2] builder: Choose better weights in the planner.
v1 -> v2:
- Removed the f_type field from StatVFS.statvfs structure.
- New function StatVFS.filesystem_is_remote, written in C.
[Thinking about it, this should probably be called
?is_network_filesystem?, but I can change that before
pushing].
- Use statvfs instead of fstatvfs, and statfs instead of fstatfs.
- Rejigged the comments in builder/builder.ml to make them simpler