search for: l162

Displaying 10 results from an estimated 10 matches for "l162".

Did you mean: 162
2012 Mar 25
2
Hiera: Bug with false booleans
...operly but a workaround is to change parse_answer[2] to return a string instead: return data.to_s Another workaround is to quote (false) booleans in the YAML files. Not sure if there are other implications. Cheers, Lars [1] <https://github.com/puppetlabs/hiera/blob/master/lib/hiera/backend.rb#L162> [2] <https://github.com/puppetlabs/hiera/blob/master/lib/hiera/backend.rb#L109> -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com. To unsubscribe from this group...
2023 Mar 11
1
Multiple Assignment built into the R Interpreter?
...ngth(rhs)") list2env(`names<-`(rhs, lhs), envir = parent.frame()) invisible() } but as you say, the input needs to be converted to a list, and it calls several R functions, which led me to end up writing `%=%` in C: https://github.com/SebKrantz/collapse/blob/master/src/small_helper.c#L162. This implementation works in the way you describe, i.e. it has separate methods for all the standard vector types, and coerces to list otherwise. That being said, all implementations in packages falls short of being very useful, because R CMD Check it will still require global bindings for variab...
2023 Mar 11
1
Multiple Assignment built into the R Interpreter?
...mes<-`(rhs, lhs), envir = parent.frame()) > ?? invisible() > } > > but as you say, the input needs to be converted to a list, and it calls > several R functions, which led me to end up writing `%=%` in C: > https://github.com/SebKrantz/collapse/blob/master/src/small_helper.c#L162 <https://github.com/SebKrantz/collapse/blob/master/src/small_helper.c#L162>. > This implementation works in the way you describe, i.e. it has separate > methods for all the standard vector types, and coerces to list otherwise. > > That being said, all implementations in packages...
2020 May 20
2
[ORC JIT][MLIR] GDBRegistrationListener "second attempt to perform debug registration" assert
...t we are using for a key) at newly freed address X 4. Unit test B calls `notifyObjectLoaded` to register the object at K=X and locks the ` JITDebugLock` here<https://github.com/llvm/llvm-project/blob/3d5360a4398bfa6878f94ca9ac55bc568692c765/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp#L162> with unit test A still waiting in step #2 above 5. This goes on to assert as the key was not erased (step #2) before it was added (step #4) I could use a little help to debug the error further. Curiously, we do hit this issue in continuous integration (CI) --- only when running on developm...
2009 Feb 26
1
sftp SSH2_FXP_SYMLINK argument order
Reading 6.10 Dealing with Symbolic links in http://www.openssh.org/txt/draft-ietf-secsh-filexfer-02.txt it seems to say that the first argument ('linkpath') specifies the name of the symlink file to create. ("linkpath' specifies the path name of the symlink to be created"). However, sftp-server.c:process_symlink() seems to reverse this. I.E. the first argument
2020 May 21
2
[ORC JIT][MLIR] GDBRegistrationListener "second attempt to perform debug registration" assert
...freed address X >> 4. Unit test B calls `notifyObjectLoaded` to register the object at >> K=X and locks the ` JITDebugLock` here >> <https://github.com/llvm/llvm-project/blob/3d5360a4398bfa6878f94ca9ac55bc568692c765/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp#L162> >> with unit test A still waiting in step #2 above >> 5. This goes on to assert as the key was not erased (step #2) before >> it was added (step #4) >> >> >> >> I could use a little help to debug the error further. Curiously, we do >> hi...
2020 May 26
2
[ORC JIT][MLIR] GDBRegistrationListener "second attempt to perform debug registration" assert
...t we are using for a key) at newly freed address X 4. Unit test B calls `notifyObjectLoaded` to register the object at K=X and locks the ` JITDebugLock` here<https://github.com/llvm/llvm-project/blob/3d5360a4398bfa6878f94ca9ac55bc568692c765/llvm/lib/ExecutionEngine/GDBRegistrationListener.cpp#L162> with unit test A still waiting in step #2 above 5. This goes on to assert as the key was not erased (step #2) before it was added (step #4) I could use a little help to debug the error further. Curiously, we do hit this issue in continuous integration (CI) --- only when running on developm...
2023 Mar 11
1
Multiple Assignment built into the R Interpreter?
I think the standard way to do this in R is given by list2env(), as described in a couple of answers on the SO page you linked. The syntax you proposed would be likely to be confusing in complex expressions, e.g. f(A, C, Q, R = init_matrices(X, Y, Z)) would obviously not work but wouldn't trigger a syntax error, and f((A, C, Q, R = init_matrices(X, Y, Z))) could work, but looks
2020 Apr 07
5
Re: [PATCH virt-v2v] v2v: Allow temporary directory to be set on a global basis.
On Tue, Apr 07, 2020 at 01:25:02PM +0200, Pino Toscano wrote: > The important thing is still that that you need to have space for the > temporary files somewhere: be it /var/tmp, /mnt/scratch, whatever. > Because of this, and the fact that usually containers are created > fresh, the cache of the supermin appliance starts to make little sense, > and then a very simple solution is to
2020 Apr 07
2
Re: [PATCH virt-v2v] v2v: Allow temporary directory to be set on a global basis.
...s critical, > however still there and ready to show up any time, especially if the > concern is the space of /var/tmp. Isn't that the reason why things like tmpreaper exist? Tomas [1] https://github.com/libguestfs/libguestfs/blob/c2c11382bbeb4500f3388a31ffd08cfc18b0de40/lib/qemu.c#L162 [2] https://github.com/libguestfs/libguestfs/blob/c2c11382bbeb4500f3388a31ffd08cfc18b0de40/lib/launch-direct.c#L417