Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
beat
beat.cmdline
Commits
7073f579
Commit
7073f579
authored
Mar 02, 2016
by
André Anjos
💬
Browse files
Set file encoding on root files
parent
93e28ffd
Pipeline
#827
passed with stage
Changes
41
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
AUTHORS.rst
View file @
7073f579
.. vim: set fileencoding=utf-8 :
.. Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ ..
.. Contact: beat.support@idiap.ch ..
...
...
README.rst
View file @
7073f579
..
Copyright
(
c
)
2016
Idiap
Research
Institute
,
http
://
www
.
idiap
.
ch
/
..
..
Contact
:
beat
.
support
@
idiap
.
ch
..
..
..
..
This
file
is
part
of
the
beat
.
cmdline
module
of
the
BEAT
platform
.
..
..
..
..
Commercial
License
Usage
..
..
Licensees
holding
valid
commercial
BEAT
licenses
may
use
this
file
in
..
..
accordance
with
the
terms
contained
in
a
written
agreement
between
you
..
..
and
Idiap
.
For
further
information
contact
tto
@
idiap
.
ch
..
..
..
..
Alternatively
,
this
file
may
be
used
under
the
terms
of
the
GNU
Affero
..
..
Public
License
version
3
as
published
by
the
Free
Software
and
appearing
..
..
in
the
file
LICENSE
.
AGPL
included
in
the
packaging
of
this
file
.
..
..
The
BEAT
platform
is
distributed
in
the
hope
that
it
will
be
useful
,
but
..
..
WITHOUT
ANY
WARRANTY
;
without
even
the
implied
warranty
of
MERCHANTABILITY
..
..
or
FITNESS
FOR
A
PARTICULAR
PURPOSE
.
..
..
..
..
You
should
have
received
a
copy
of
the
GNU
Affero
Public
License
along
..
..
with
the
BEAT
platform
.
If
not
,
see
http
://
www
.
gnu
.
org
/
licenses
/.
..
..
vim
:
set
fileencoding
=
utf
-
8
:
..
Copyright
(
c
)
2016
Idiap
Research
Institute
,
http
://
www
.
idiap
.
ch
/
..
..
Contact
:
beat
.
support
@
idiap
.
ch
..
..
..
..
This
file
is
part
of
the
beat
.
cmdline
module
of
the
BEAT
platform
.
..
..
..
..
Commercial
License
Usage
..
..
Licensees
holding
valid
commercial
BEAT
licenses
may
use
this
file
in
..
..
accordance
with
the
terms
contained
in
a
written
agreement
between
you
..
..
and
Idiap
.
For
further
information
contact
tto
@
idiap
.
ch
..
..
..
..
Alternatively
,
this
file
may
be
used
under
the
terms
of
the
GNU
Affero
..
..
Public
License
version
3
as
published
by
the
Free
Software
and
appearing
..
..
in
the
file
LICENSE
.
AGPL
included
in
the
packaging
of
this
file
.
..
..
The
BEAT
platform
is
distributed
in
the
hope
that
it
will
be
useful
,
but
..
..
WITHOUT
ANY
WARRANTY
;
without
even
the
implied
warranty
of
MERCHANTABILITY
..
..
or
FITNESS
FOR
A
PARTICULAR
PURPOSE
.
..
..
..
..
You
should
have
received
a
copy
of
the
GNU
Affero
Public
License
along
..
..
with
the
BEAT
platform
.
If
not
,
see
http
://
www
.
gnu
.
org
/
licenses
/.
..
============================================
...
...
@@ -139,4 +140,4 @@ in different ways using another command::
$
./
bin
/
python
-
mpstats
prof
.
data
This
will
allow
you
to
dump
and
print
the
profiling
statistics
as
you
may
find
fit
.
\ No newline at end of file
fit
.
beat/__init__.py
View file @
7073f579
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
###############################################################################
# #
...
...
beat/cmdline/__init__.py
View file @
7073f579
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
###############################################################################
# #
# Copyright (c) 2016 Idiap Research Institute, http://www.idiap.ch/ #
# Contact: beat.support@idiap.ch #
# #
# This file is part of the beat.cmdline module of the BEAT platform. #
# #
# Commercial License Usage #
# Licensees holding valid commercial BEAT licenses may use this file in #
# accordance with the terms contained in a written agreement between you #
# and Idiap. For further information contact tto@idiap.ch #
# #
# Alternatively, this file may be used under the terms of the GNU Affero #
# Public License version 3 as published by the Free Software and appearing #
# in the file LICENSE.AGPL included in the packaging of this file. #
# The BEAT platform is distributed in the hope that it will be useful, but #
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY #
# or FITNESS FOR A PARTICULAR PURPOSE. #
# #
# You should have received a copy of the GNU Affero Public License along #
# with the BEAT platform. If not, see http://www.gnu.org/licenses/. #
# #
###############################################################################
#see http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
__import__
(
'pkg_resources'
).
declare_namespace
(
__name__
)
beat/cmdline/algorithms.py
View file @
7073f579
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
###############################################################################
# #
...
...
beat/cmdline/cache.py
View file @
7073f579
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
###############################################################################
# #
...
...
beat/cmdline/common.py
View file @
7073f579
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
###############################################################################
# #
...
...
beat/cmdline/config.py
View file @
7073f579
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
###############################################################################
# #
...
...
beat/cmdline/databases.py
View file @
7073f579
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
###############################################################################
# #
...
...
beat/cmdline/dataformats.py
View file @
7073f579
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
###############################################################################
# #
...
...
beat/cmdline/experiments.py
View file @
7073f579
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
###############################################################################
# #
...
...
beat/cmdline/libraries.py
View file @
7073f579
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
###############################################################################
# #
...
...
beat/cmdline/plotters.py
View file @
7073f579
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
###############################################################################
# #
...
...
beat/cmdline/scripts/__init__.py
View file @
7073f579
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
beat/cmdline/scripts/beat.py
View file @
7073f579
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
###############################################################################
# #
...
...
beat/cmdline/status.py
View file @
7073f579
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
###############################################################################
# #
...
...
beat/cmdline/test/__init__.py
View file @
7073f579
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
###############################################################################
# #
...
...
beat/cmdline/test/test_algorithms.py
View file @
7073f579
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
###############################################################################
# #
...
...
beat/cmdline/test/test_cache.py
View file @
7073f579
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
###############################################################################
# #
...
...
beat/cmdline/test/test_config.py
View file @
7073f579
#!/usr/bin/env python
# vim: set fileencoding=utf-8 :
###############################################################################
# #
...
...
Prev
1
2
3
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment