patch

Oracle Forms 6i crashes with 0xC0000005 at start after installing patch 19 [closed]

爷,独闯天下 提交于 2019-12-13 16:00:27
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 2 years ago . In short. After patch 19 has been installed I can't run any form: compiled with patch 18 or 19, by myself or others. Immediately after starting I get Windows error: -------------------------------- ifrun60.exe .... -------------------------------- The application failed to initialize properly (0xC0000005). .....

interpretation of the JSON Patch spec

亡梦爱人 提交于 2019-12-13 14:16:28
问题 I have a question about the interpretation of JSON Patch (RFC 6902). Suppose I had a resource that looked like this: { "type": "assembly", "uri": "http://example.com/campSrv/Assembly/18", "name": "/sample", "description": "Hello, World Application", "created": "2013-03-27T16:15Z", ... } The definition of this resource says that it could have a value called "tags" which is defined as being an array of strings. However, this resource currently has no tags, so my service doesn't serialize the

How to apply the OSPF patch to ns2 2.35 on ubuntu 14.04

大兔子大兔子 提交于 2019-12-13 08:23:37
问题 I have been using ns2 and nam for a long time on my ubuntu. Now I have to apply a patch ( OSPF ) to it. I have been searching for how to apply a patch in linux (as I'm kind of new in it) and all I got was: 1) $ tar xvf ns-allinone-2.35.tar.gz 2) $ cd ns-allinone-2.35/ 3) $ ln -s ns-2.35/ ns-2.34 ... Then the patch will work, except for one line. (commom/packet.h). 4) $ patch -p0 < 10-ospf4ns2.34-base.patch http://sourceforge.net/projects/ospf4ns/ 5) Replace commom/packet.h with the attached

Tool that figures out order in which patches should be applied? [closed]

纵然是瞬间 提交于 2019-12-13 08:17:19
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 3 years ago . Background: I am trying to get Ubuntu to work under FIPS mode. One of the packages that I need to FIPSify is openssh. According to CentOS openssh *.spec file one of the patches that they apply on top of openssh source code is openssh-6.6-fips.patch . However, debian packaging code does not have that patch at all

exec.command for patch command

百般思念 提交于 2019-12-13 07:49:57
问题 I am trying to patch a file using the below command patch -p0 < <file_path> My runCommand syntax is as below: func runCommand(cmd string, args ...string) error { ecmd := exec.Command(cmd, args...) ecmd.Stdout = os.Stdout ecmd.Stderr = os.Stderr ecmd.Stdin = os.Stdin err := ecmd.Run() return err } Now I am passing my patch command as below: cmd = "patch" args := []string{"-p0", "<", "/tmp/file"} err = runCommand(cmd, args...) But I am seeing the below error: patch: **** Can't find file '<' :

How can a patchfile created with `git-log -p <filename>` be applied to create all the commits included?

强颜欢笑 提交于 2019-12-13 07:29:41
问题 Background: this question. git apply <patchfile> just recreates the file but without committing the history, which in this case would be desireable. Is there any switch for git-apply to do so? Or is there a way to convert the patchfile into a git-am compatible file? (Currently, git-am complains "Patch format detection failed") 回答1: You asked, so here it is. I used this script, but it's all rather fragile. Treat it an as inspiration, not as a reasonable solution. It extracts (date / author /

Creating a patch in git gives some headaches

我是研究僧i 提交于 2019-12-13 05:15:04
问题 I have cloned an upstream repository, started a bug-fixing branch on it, and spend quite a lot of time fiddling with it. Since I spent a lot of time with the branch and made all kinds of debugging and trivial changes to it, I branched a new branch from the more recent upstream master, and to that branch, merged the actual, finalized bug-fixing changes from my original bug-fixing branch, leaving out the cruft. Now I'd like to create patch that has only the relevant changes relative to the

Patch (minor upgrade) creation issues with MSM (merge modules)

百般思念 提交于 2019-12-13 05:12:51
问题 I am facing issues with patches (minor upgrade) installation (updates) with MSM (merge modules). I am creating MSI (test.msi) with texst.wxs. And inside text.wxs referring to app.msm file (there is a folder app, which contains so many folders and files. And harvesting this folder and making app.msm file) Below are steps for making app.msm file. heat dir "app" -gg -sfrag -template:module -srd -ke -var var.source -out app.wxs candle -dsource=app app.wxs light app.wixobj Below is snippet of test

Need help applying MinGW patches for std string, getting unexpected ends

荒凉一梦 提交于 2019-12-13 02:54:25
问题 I'm trying to apply these patches: http://tehsausage.com/mingw-to-string So that I can use std string stuff that I should have access to anyways. I have MinGW 4.7.2, and at first, I tried copying the zip files with no luck. Now I'm trying to manually apply the patches. I copied the patch information into a file.patch, placed it in the same folder as the file I am patching, and ran patch < file.patch and then I get: patching file stdio.h patch unexpectedly ends in middle of line Hunk #1 FAILED

Patching a method without changing how the method works?

佐手、 提交于 2019-12-13 02:12:20
问题 I'm trying to test that a pandas method gets called with some values. However, just by applying a @patch decorator causes the patched method to throw a ValueError within pandas, when the actual method does not. I'm just trying to test that Stock.calc_sma is calling the underlying pandas.rolling_mean function. I'm under the assumption that the @patch decorator basically adds some "magic" methods to the thing I'm patching that allow me to check if the function was called. If this is the case,