SUB_PROJECTS=nifi-parent nifi-nar-maven-plugin nifi
clean:
_PWD=`pwd`; \
for sub in $(SUB_PROJECTS); do \
echo $$sub; \
cd "$$_PWD/$$sub" && mvn clean; \
done
This file contains hidden or 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
% Generated by roxygen2 (4.1.1): do not edit by hand | |
% Please edit documentation in R/functions.R, R/generics.R | |
\docType{methods} | |
\name{lit,ANY-method} | |
\alias{add_months} | |
\alias{add_months,Column,numeric-method} | |
\alias{approxCountDistinct,Column-method} | |
\alias{ascii} | |
\alias{avg} | |
\alias{base64} |
This file contains hidden or 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
% Generated by roxygen2 (4.1.1): do not edit by hand | |
% Please edit documentation in R/functions.R | |
\docType{methods} | |
\name{floor,Column-method} | |
\alias{floor,Column-method} | |
\title{floor} | |
\usage{ | |
\S4method{floor}{Column}(x) | |
} | |
\description{ |
This file contains hidden or 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
% Generated by roxygen2 (4.1.1): do not edit by hand | |
% Please edit documentation in R/functions.R | |
\docType{methods} | |
\name{floor} | |
\alias{floor} | |
\title{floor} | |
\usage{ | |
\S4method{floor}{Column}(x) | |
} | |
\description{ |
This file contains hidden or 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
#!/usr/bin/env bash | |
# | |
# 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 | |
# |
This file contains hidden or 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
accessKey = xxxxxxxxxxxxxxxxxxxxxx | |
secretKey = xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx |
This file contains hidden or 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
import sys | |
import pkgutil | |
import inspect | |
import json | |
module_name = sys.argv[1] | |
__import__(module_name) | |
## Gets the reference of the target module | |
module = sys.modules[module_name] |
import sys
class Foo():
@staticmethod
def sm():
return 1
@classmethod
def cm(cls):
This file contains hidden or 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
def since(version): | |
""" | |
A decorator that annotates a function to append the version of Spark the function was added. | |
""" | |
import re | |
indent_p = re.compile(r'\n( +)') | |
def deco(f): | |
if f.__doc__ is None: | |
f.__doc__ = ".. versionadded:: %s" % (version) |
This file contains hidden or 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
export _JAVA_OPTIONS="-Duser.language=en -Duser.country=US" |