-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/plasma-client-mutex' into plasma…
…-client-mutex
- Loading branch information
Showing
199 changed files
with
11,595 additions
and
3,576 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,21 @@ | ||
## GitHub Issues for Apache Arrow | ||
STOP! Are you reporting a bug, a possible bug, or requesting a | ||
feature? If so, please report under the ARROW project on the ASF JIRA | ||
server https://issues.apache.org/jira/browse/ARROW. This JIRA server | ||
is free to use and open to the public, but you must create an account | ||
if it is your first time. | ||
|
||
We support GitHub issues as a lightweight way to ask questions and engage with | ||
the Arrow developer community. We use the Apache Software Foundation's JIRA | ||
instance for maintaining a queue of development work and as the public record | ||
for work on the project. So, feel free to delete this text and open an issue | ||
here if you have a question or aren't sure whether something is a bug or | ||
feature request. Any bugs, suggestions, or feature requests will eventually | ||
need to end up in JIRA (https://issues.apache.org/jira/browse/ARROW), | ||
either before or after completing a pull request. | ||
See our contribution guidelines for more information: | ||
http://arrow.apache.org/docs/developers/contributing.html | ||
|
||
See our contribution guidelines for more information: http://arrow.apache.org/docs/developers/contributing.html | ||
We have GitHub issues available as a way for new contributors and | ||
passers-by who are unfamiliar with Apache Software Foundation projects | ||
to ask questions and interact with the project. Do not be surprised if | ||
the first response is to open a JIRA issue or to write an e-mail to | ||
one of the public mailing lists: | ||
|
||
For more in-depth development discussions, please use the public mailing list | ||
dev@arrow.apache.org (first subscribe by sending an e-mail to | ||
dev-subscribe@arrow.apache.org). | ||
* Development discussions: dev@arrow.apache.org (first subscribe by | ||
sending an e-mail to dev-subscribe@arrow.apache.org). | ||
* User discussions: user@arrow.apache.org (first subscribe by | ||
sending an e-mail to user-subscribe@arrow.apache.org). | ||
|
||
Thank you! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,4 @@ brew "gtk-doc" | |
brew "libtool" | ||
brew "lua" | ||
brew "luarocks" | ||
brew "meson" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/usr/bin/env python | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
# This script queries the ASF mirror system to obtain a suggested | ||
# mirror for downloading dependencies, e.g. in CMake | ||
|
||
import json | ||
try: | ||
from urllib2 import urlopen | ||
except ImportError: | ||
# py3 | ||
from urllib.request import urlopen | ||
|
||
suggested_mirror = urlopen('https://www.apache.org/dyn/' | ||
'closer.cgi?as_json=1').read() | ||
print(json.loads(suggested_mirror.decode('utf-8'))['preferred']) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.