search for: some_path

Displaying 15 results from an estimated 15 matches for "some_path".

2024 Jan 03
1
Files exist, but sometimes are not seen by the clients: "No such file or directory"
...#39;m mentioning ls, but the problem also manifests when trying to access the file in any other way, not only when listing it with the ls command. Example: (The file names and location were edited for brevity) 1. ls file returns "No such file or directory" $ ls -l /home/RESEARCH/user.x/some_path/idtracker.log ls: cannot access /home/RESEARCH/user.x/some_path/idtracker.log: No such file or directory 2. ls parent directory. The file is shown in the results. $ ls -l /home/RESEARCH/user.x/some_path/ total 334500 -rw-r--r-- 1 user.x group_x 348521772 Jan 19 15:26 file_17.avi -rw-r--r-- 1 user...
2011 Dec 13
0
Using ActiveSupport's autoload_at
After discovering http://api.rubyonrails.org/classes/ActiveSupport/Autoload.html I thought it''d be nice if we could replace our zillion occurences of: autoload :Something, ''some_path/something'' with: autoload_at ''some_path'' do autoload :Something end But I keep getting undefined method autoload_at. I tried digging - ActionSupport::Autoload is being loaded by the time it reaches the above line (I tested by putting a puts ''loaded''...
2010 Aug 18
2
[Rails 3] remote_function ?
Is the remote_function still valid in Rails 3 as it seems many of the Prototype helpers have been replaced ? (link_to_remote, ...) where can I find any link on it ? not in the standard doc I guess .. thanks for you feedback -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to
1998 Dec 17
4
oplock_break: client failure in break - shutting down
We recently tried the upgrade to 2.0 Beta series (just finished testing Beta 4) on our network. Everything works fine with 1.9.18pl10, but once we start 2.0 in its place we start getting the following in the log files: [1998/12/17 05:00:12, 1] smbd/files.c:file_init(219) file_init: Information only: requested 10000 open files, 246 are available. [1998/12/17 05:07:52, 1]
2010 Aug 13
11
Link to remote and the equivalent in Rails 3
Hi WOW! Is Rails 3 another interesting learning curve. Just when I think I have a general working knowledge of Rails 2 ... things change. I''m trying to replicate the following in Rails 3: <%= link_to_remote image_tag("creditcard.png", :border => 0), :url => {:action => :make_payment, :type => "Credit", :id => @appt.id },
2011 Jan 07
1
[RFC/PATCH] ssh: config directive to modify the local environment
...} /* @@ -1420,3 +1508,85 @@ parse_forward(Forward *fwd, const char *fwdspec, int dynamicfwd, int remotefwd) } return (0); } + +/* + * variablename[whitespace][{+,%}[separator]]=[whitespace]value + * value may be optional for set command (ie. w/o +) + * SSHFS_MOUNT += mars-fastfs:/fastfs + * SOME_PATH +:= /some/bin + * SOME_PATH %:= /some/other/bin + * '+' and '%' shouldn't be used as separator + * TODO: don't overwrite? + * VAR ?= value + */ +int +parse_env_mod(EnvMod *mod, const char *modspec) +{ + char *p, *cp, *ne, *eq; + size_t len; + + memset(mod, '\0', size...
2017 Jul 18
2
[Bug 12916] New: when rsync fails to chown, it gives up and does not set timestamp
...OS: All Status: NEW Severity: minor Priority: P5 Component: core Assignee: wayned at samba.org Reporter: iank at fsf.org QA Contact: rsync-qa at samba.org If I do rsync -ot VFAT_FS_MOUNT It outputs rsync: chown "SOME_PATH" failed: Operation not permitted (1) And it's timestamp is the current time, not the source time as specified by -t. Rsync should not give up on setting the time just because it couldn't set the owner. rsync -t works fine. I tested on git master from today, ce854cf021cb7207ee504c6bad...
2008 Jun 09
2
DESTDIR usage
Hi, I've been patching OpenSSH [portable] so that I can override DESTDIR when cross-compiling. Is there any reason not to allow this in the general case? Thanks! -- Matthew L. Creech
2011 Dec 29
1
How to get device for drive letter?
In .wine/dosdevices I have links d: -> /some_path d:: -> /dev/some_device How can I get the device name (/dev/some_device) in a Wine program for drive (letter) D: ? Is there an API-Call?
2002 Nov 21
4
Rgenerating headers
...ent header. If comments were really needed, they could also be communicated out of band in the SDP file something like a=vorbis_comment: "Copyright" "Some One" a=vorbis_comment: "Date" "Some date" or a=vorbis_comment_url: "http://some_server/some_path/some_file" but that's rather dangerous for multicast if the client auto download the URL. So, back to my question - is there any reason why you shouldn't be able to completely regenerate the header packets/frames from what I have outlined ? --PMM -----------------------------------...
2024 Jan 06
11
[Bug 3649] New: Control sockets do not connect anymore (after updating OpenSSH)
https://bugzilla.mindrot.org/show_bug.cgi?id=3649 Bug ID: 3649 Summary: Control sockets do not connect anymore (after updating OpenSSH) Product: Portable OpenSSH Version: 9.6p1 Hardware: ARM OS: Mac OS X Status: NEW Severity: enhancement Priority: P5 Component: ssh
2004 May 04
6
Runtime Error - abnormal program termination
Hi, I'd like to run a win-prog with Linux but it fails: Runtime Error - abnormal program termination. In the console I get the following infos: fixme:ole:CoCreateInstance no classfactory created for CLSID {48071bd8-a9f0-11d0-954b-00a0c911760e}, hres is 0x80040154 fixme:ole:MSFT_ReadValue BSTR length = -1? fixme:ole:ITypeLibComp_fnBind (L"Now", 10ba25, 0x3, 0x406ef200,
2012 Dec 12
0
[PATCH 2/5] autogen.sh: replace this by a simple call to autoreconf
...iff --git a/autogen.sh b/autogen.sh index 3290f2e..2aa4c30 100755 --- a/autogen.sh +++ b/autogen.sh @@ -1,166 +1,6 @@ #!/bin/sh # Run this to set up the build system: configure, makefiles, etc. -# (based on the version in enlightenment's cvs) - -# Some notes: -# -# You may need to specify -I /SOME_PATH/share/aclocal in ACLOCAL_FLAGS -# if any packages FLAC relies on (autotools, libogg, libiconv) are -# installed in non-standard places. -# -# If you don't have XMMS installed at all, you should comment out -# AM_PATH_XMMS in configure.in. -# -# FLAC uses iconv but not gettext. iconv requires c...
2012 Dec 12
8
[PATCH 0/5] update build system
This patch series modernizes various aspects of the autotools based build system. There is a lot more that could and should be done, but I tried to stay conservative for now and just resolve some of the most obvious issues. Max Horn (5): configure: replace XIPH_C_FIND_ENDIAN by AC_C_BIGENDIAN autogen.sh: replace this by a simple call to autoreconf configure: always print
2012 May 11
14
What is the point of using :format in routes?
Today I had a strange behavior that made me suspect of jQuery at first, but then it happened that I''ve faced two gotchas, one from CoffeeScript and one from Rails itself. I have something like this: routes.rb post ''/fields/:id.:format'' => ''fields#show'', as: :field, constraints: {id: /\d+/} post ''/fields/remove/:id''