-
Updated
May 13, 2021 - Python
hadoop
Here are 2,587 public repositories matching this topic...
-
Updated
Sep 16, 2021 - Python
-
Updated
Aug 3, 2021
-
Updated
Sep 18, 2021 - Jupyter Notebook
-
Updated
Sep 18, 2021 - Java
-
Updated
Sep 12, 2021 - HTML
With Hive connector
trino:default> CREATE TABLE one (a varchar);
-> CREATE VIEW two AS SELECT * FROM one;
CREATE TABLE
CREATE VIEW
DROP TABLE
is rejected on a view:
trino:default> DROP TABLE two;
Query 20210906_150832_00015_id3y3 failed: line 1:1: Table 'hive.default.two' does not exist, but a view with that name exists. Did you mean DROP VIEW hive.default.t
-
Updated
Sep 18, 2021 - Java
-
Updated
Jul 28, 2021 - Scala
-
Updated
Apr 1, 2019 - Java
-
Updated
Jul 22, 2021 - Java
Refactor existing hashCode() to include class for methods using the Apache Commons Lang 3 style
Append class
to all HashCodeBuilders
in Gaffer for the below issue to minimise hash collisions.
@Test
void name() {
Foo foo = new Foo();
Bar bar = new Bar();
assertFalse(foo.equals(bar));
assertNotEquals(foo.hashCode(), bar.hashCode()); //fails
}
class Bar {
int a = 3;
@Override
public int hashCode() {
resolve_name
is mostly useless, and it's really hard to develop against because most relational operations simply don't have a non-arbitrary name. Consider something simple like:
t = ibis.table([('a', 'double')], name='t')
expr = t.a + 1
What should expr.op().resolve_name()
return? Unless a user has explicitly said .name(something)
, there is no reasonable choice here.
问题描述:关于工程中某个工作流节点单独执行不报错,保存工作流时提示:NotClassDefFoundError:Cloud not initialize class dispatch.Http$
问题原因:linkis-publish微服务关于netty-3.6.2.Final.jar升级包缺失
问题解决:将升级包上传重启linkis-publish微服务即可。
-
Updated
Sep 15, 2021 - Shell
-
Updated
Sep 17, 2021 - Scala
-
Updated
May 9, 2021 - Scala
-
Updated
Aug 12, 2021 - C
Improve this page
Add a description, image, and links to the hadoop topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the hadoop topic, visit your repo's landing page and select "manage topics."
At this moment relu_layer op doesn't allow threshold configuration, and legacy RELU op allows that.
We should add configuration option to relu_layer.