Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Q
QueryR
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Julien Lopez
QueryR
Commits
2fb0c5ac
Commit
2fb0c5ac
authored
9 years ago
by
Mick Jordan
Browse files
Options
Downloads
Plain Diff
Merge
parents
2f46658e
e6711ab0
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/RChannel.java
+2
-2
2 additions, 2 deletions
....r.runtime/src/com/oracle/truffle/r/runtime/RChannel.java
with
2 additions
and
2 deletions
com.oracle.truffle.r.runtime/src/com/oracle/truffle/r/runtime/RChannel.java
+
2
−
2
View file @
2fb0c5ac
...
...
@@ -217,7 +217,7 @@ public class RChannel {
private
static
Object
convertPrivate
(
Object
o
)
throws
IOException
{
if
(
o
instanceof
RList
)
{
return
convertPrivateList
(
o
);
}
else
if
(!(
o
instanceof
REnvironment
||
o
instanceof
RConnection
||
o
instanceof
RLanguage
))
{
}
else
if
(!(
o
instanceof
RFunction
||
o
instanceof
REnvironment
||
o
instanceof
RConnection
||
o
instanceof
RLanguage
))
{
// TODO: should we make internal values shareable?
if
(
o
instanceof
RAttributable
&&
((
RAttributable
)
o
).
getAttributes
()
!=
null
)
{
return
convertObjectAttributesToPrivate
(
o
);
...
...
@@ -282,7 +282,7 @@ public class RChannel {
}
catch
(
IOException
x
)
{
throw
RError
.
error
(
RError
.
NO_NODE
,
RError
.
Message
.
GENERIC
,
"error creating shareable list"
);
}
}
else
if
(!(
msg
instanceof
REnvironment
||
msg
instanceof
RConnection
||
msg
instanceof
RLanguage
))
{
}
else
if
(!(
msg
instanceof
RFunction
||
msg
instanceof
REnvironment
||
msg
instanceof
RConnection
||
msg
instanceof
RLanguage
))
{
// make sure that what's passed through the channel will be copied on the first
// update
makeShared
(
msg
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment