diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4a050793693b8..c0a9a7f2d7793 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,10 +1,10 @@ # Notes for Julia Contributors -Hi! If you are new to the Julia community: welcome, and thanks for trying Julia. Please be sure to respect our [community standards](http://julialang.org/community/standards/) in all interactions. +Hi! If you are new to the Julia community: welcome, and thanks for trying Julia. Please be sure to respect our [community standards](https://julialang.org/community/standards/) in all interactions. ## Learning Julia -[The learning page](http://julialang.org/learning/) has a great list of resources for new and experienced users alike. [This tutorial video](https://www.youtube.com/watch?v=vWkgEddb4-A) is one recommended starting point, as is the "[Invitation to Julia](https://www.youtube.com/watch?v=gQ1y5NUD_RI)" workshop video from JuliaCon 2015 ([slide materials here](https://github.com/dpsanders/invitation_to_julia)). The [Julia documentation](http://docs.Julialang.org/en/latest/) covers the language and core library features, and is [searchable](http://docs.Julialang.org/en/latest/search/). (note: Javascript required). +[The learning page](https://julialang.org/learning/) has a great list of resources for new and experienced users alike. [This tutorial video](https://www.youtube.com/watch?v=vWkgEddb4-A) is one recommended starting point, as is the "[Invitation to Julia](https://www.youtube.com/watch?v=gQ1y5NUD_RI)" workshop video from JuliaCon 2015 ([slide materials here](https://github.com/dpsanders/invitation_to_julia)). The [Julia documentation](https://docs.julialang.org/en/latest/) covers the language and core library features, and is searchable. ## Before filing an issue @@ -12,7 +12,7 @@ Hi! If you are new to the Julia community: welcome, and thanks for trying Julia. - Contributing code? Be sure to review the [contributor checklist](https://github.com/JuliaLang/julia/blob/master/CONTRIBUTING.md#contributor-checklist) for helpful tips on the tools we use to build Julia. -- Library feature requests are generally not accepted on this issue tracker. New libraries should be developed as [packages](http://docs.julialang.org/en/release-0.4/manual/packages/#package-development). Discuss ideas for libraries at the [Julia Discourse forum](https://discourse.julialang.org/). Doing so will often lead to pointers to existing projects and bring together collaborators with common interests. +- Library feature requests are generally not accepted on this issue tracker. New libraries should be developed as [packages](https://docs.julialang.org/en/release-0.4/manual/packages/#package-development). Discuss ideas for libraries at the [Julia Discourse forum](https://discourse.julialang.org/). Doing so will often lead to pointers to existing projects and bring together collaborators with common interests. ## Contributor Checklist @@ -56,7 +56,7 @@ A useful bug report filed as a GitHub issue provides information about how to re ### Contributing a Julia package -Julia has a built-in [package manager](https://github.com/JuliaLang/METADATA.jl) based on `git`. A number of [packages](http://pkg.julialang.org/) across many domains are already available for Julia. Developers are encouraged to provide their libraries as a Julia package. The Julia manual provides instructions on [creating Julia packages](http://docs.julialang.org/en/latest/manual/packages/). +Julia has a built-in [package manager](https://github.com/JuliaLang/METADATA.jl) based on `git`. A number of [packages](http://pkg.julialang.org/) across many domains are already available for Julia. Developers are encouraged to provide their libraries as a Julia package. The Julia manual provides instructions on [creating Julia packages](https://docs.julialang.org/en/latest/manual/packages/). For developers who need to wrap C libraries so that they can be called from Julia, the [Clang.jl](https://github.com/ihnorton/Clang.jl) package can help generate the wrappers automatically from the C header files. @@ -262,19 +262,19 @@ Make sure that [Travis](http://www.travis-ci.org) greenlights the pull request w ## Resources * Julia - - **Homepage:** - - **Community:** + - **Homepage:** + - **Community:** - **IRC:** - **Source code:** - **Git clone URL:** - - **Documentation:** + - **Documentation:** - **Status:** - **Code coverage:** * Design of Julia - [Julia: A Fresh Approach to Numerical Computing](http://arxiv.org/pdf/1411.1607v3.pdf) - - [Julia: A Fast Dynamic Language for Technical Computing](http://julialang.org/images/julia-dynamic-2012-tr.pdf) - - [All Julia Publications](http://julialang.org/publications/) + - [Julia: A Fast Dynamic Language for Technical Computing](https://julialang.org/images/julia-dynamic-2012-tr.pdf) + - [All Julia Publications](https://julialang.org/publications/) * Using GitHub - [Using Julia with GitHub (video)](http://www.youtube.com/watch?v=wnFYV3ZKtOg&feature=youtu.be) diff --git a/HISTORY.md b/HISTORY.md index 03c5a849cd5c2..64383dcfaa848 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -51,7 +51,7 @@ Experimental language features ------------------------------ * Support for - [multi-threading](http://docs.julialang.org/en/latest/manual/parallel-computing/#multi-threading-experimental). + [multi-threading](https://docs.julialang.org/en/latest/manual/parallel-computing/#multi-threading-experimental). Loops with independent iterations can be easily parallelized with the `Threads.@threads` macro. @@ -453,7 +453,7 @@ Deprecated or removed * `@unix_only` is deprecated in favor of `if is_unix()` * `@osx_only` is deprecated in favor of `if is_apple()` * `@linux_only` is deprecated in favor of `if is_linux()` - * NOTE: Using `@static` could be useful/necessary when used in a function's local scope. See details at the section entitled [Handling Operating System Variation](http://docs.julialang.org/en/latest/manual/handling-operating-system-variation/#man-handling-operating-system-variation) in the manual. + * NOTE: Using `@static` could be useful/necessary when used in a function's local scope. See details at the section entitled [Handling Operating System Variation](https://docs.julialang.org/en/latest/manual/handling-operating-system-variation/#man-handling-operating-system-variation) in the manual. Command-line option changes --------------------------- @@ -510,7 +510,7 @@ New language features types instead of to their values. The function then returns an expression forming the body of the function to be called at run time ([#7311]). - * [Documentation system](http://docs.julialang.org/en/latest/manual/documentation/) + * [Documentation system](https://docs.julialang.org/en/latest/manual/documentation/) for functions, methods, types and macros in packages and user code ([#8791]). * The syntax `function foo end` can be used to introduce a generic function without @@ -540,11 +540,11 @@ New language features * `++` is now parsed as an infix operator, but does not yet have a default definition ([#11030], [#11686]). * Support for inter-task communication using `Channels` ([#12264]). - See http://docs.julialang.org/en/latest/manual/parallel-computing/#channels for details. + See https://docs.julialang.org/en/latest/manual/parallel-computing/#channels for details. * `RemoteRef`s now point to remote channels. The remote channels can be of length greater than 1. Default continues to be of length 1 ([#12385]). - See http://docs.julialang.org/en/latest/manual/parallel-computing/#remoterefs-and-abstractchannels for details. + See https://docs.julialang.org/en/latest/manual/parallel-computing/#remoterefs-and-abstractchannels for details. * `@__LINE__` special macro now available to reflect invocation source line number ([#12727]). @@ -1745,8 +1745,8 @@ Bugfixes and performance updates Too numerous to mention. -[packages chapter]: http://docs.julialang.org/en/latest/manual/packages/ -[sorting functions]: http://docs.julialang.org/en/latest/stdlib/sort/ +[packages chapter]: https://docs.julialang.org/en/latest/manual/packages/ +[sorting functions]: https://docs.julialang.org/en/latest/stdlib/sort/ [pairwise summation]: https://en.wikipedia.org/wiki/Pairwise_summation [a448e080]: https://github.com/JuliaLang/julia/commit/a448e080dc736c7fb326426dfcb2528be36973d3 [5e3f074b]: https://github.com/JuliaLang/julia/commit/5e3f074b9173044a0a4219f9b285879ff7cec041 diff --git a/Makefile b/Makefile index 337643c272bb7..59be4206adc1b 100644 --- a/Makefile +++ b/Makefile @@ -155,7 +155,7 @@ release-candidate: release testall @echo 6. Clean out old .tar.gz files living in deps/, "\`git clean -fdx\`" seems to work #"` @echo 7. Replace github release tarball with tarballs created from make light-source-dist and make full-source-dist @echo 8. Follow packaging instructions in DISTRIBUTING.md to create binary packages for all platforms - @echo 9. Upload to AWS, update http://julialang.org/downloads and http://status.julialang.org/stable links + @echo 9. Upload to AWS, update https://julialang.org/downloads and http://status.julialang.org/stable links @echo 10. Update checksums on AWS for tarball and packaged binaries @echo 11. Announce on mailing lists @echo 12. Change master to release-0.X in base/version.jl and base/version_git.sh as in 4cb1e20 diff --git a/NEWS.md b/NEWS.md index 9f9811b9188f9..e48a0b28245fb 100644 --- a/NEWS.md +++ b/NEWS.md @@ -276,7 +276,7 @@ Library improvements `JULIA_INPUT_COLOR` and `JULIA_ANSWER_COLOR` to `"bold"`. For example, one way of doing this is adding `ENV["JULIA_INPUT_COLOR"] = :bold` and `ENV["JULIA_ANSWER_COLOR"] = :bold` to the `.juliarc.jl` file. See the - [manual section on customizing colors](http://docs.julialang.org/en/latest/manual/interacting-with-julia#Customizing-Colors-1) + [manual section on customizing colors](https://docs.julialang.org/en/latest/manual/interacting-with-julia#Customizing-Colors-1) for more information. * The default color for info messages has been changed from blue to cyan diff --git a/README.md b/README.md index e2e9f95a8f737..d5533a3992263 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ @@ -14,19 +14,19 @@ Code Coverage: [![Coverage Status](https://coveralls.io/repos/JuliaLang/julia/ba ## The Julia Language Julia is a high-level, high-performance dynamic language for technical computing. -The main homepage for Julia can be found at [julialang.org](http://julialang.org/). +The main homepage for Julia can be found at [julialang.org](https://julialang.org/). This is the GitHub repository of Julia source code, including instructions for compiling and installing Julia, below. ## Resources -- **Homepage:** -- **Binaries:** -- **Documentation:** +- **Homepage:** +- **Binaries:** +- **Documentation:** - **Packages:** - **Source code:** - **Git clone URL:** - **Discussion forum:** -- **Mailing lists:** +- **Mailing lists:** - **Gitter:** - **IRC:** - **Code coverage:** @@ -100,7 +100,7 @@ the `julia` source directory, type `make testall`. You should see output that lists a series of tests being run; if they complete without error, you should be in good shape to start using Julia. -You can read about [getting started](http://docs.julialang.org/en/stable/manual/getting-started/) in the manual. +You can read about [getting started](https://docs.julialang.org/en/stable/manual/getting-started/) in the manual. If you are building a Julia package for distribution on Linux, OS X, or Windows, take a look at the detailed notes in @@ -317,7 +317,7 @@ Julia uses the following external libraries, which are automatically downloaded [MPFR]: http://www.mpfr.org [libuv]: https://github.com/JuliaLang/libuv [libgit2]: https://libgit2.github.com/ -[utf8proc]: http://julialang.org/utf8proc/ +[utf8proc]: https://julialang.org/utf8proc/ [libosxunwind]: https://github.com/JuliaLang/libosxunwind [libunwind]: http://www.nongnu.org/libunwind [libssh2]: https://www.libssh2.org @@ -373,7 +373,7 @@ The Julia source code is organized as follows: ## Binary Installation -If you would rather not compile the latest Julia from source, platform-specific tarballs with pre-compiled binaries are also [available for download](http://julialang.org/downloads/). +If you would rather not compile the latest Julia from source, platform-specific tarballs with pre-compiled binaries are also [available for download](https://julialang.org/downloads/). You can either run the `julia` executable using its full path in the directory created above, or add that directory to your executable path so that you can run the Julia program from anywhere (in the current shell session): @@ -386,7 +386,7 @@ Now you should be able to run Julia like this: On Windows, double-click `usr/bin/julia.exe`. If everything works correctly, you will see a Julia banner and an interactive prompt into which you can enter expressions for evaluation. -You can read about [getting started](http://julialang.org/manual/getting-started) in the manual. +You can read about [getting started](https://julialang.org/manual/getting-started) in the manual. The following distributions include julia, but the versions may be out of date due to rapid development: @@ -427,4 +427,4 @@ is available through [Sublime-IJulia](https://github.com/quinnj/Sublime-IJulia) plugin enables interaction between IJulia and Sublime Text. -In the terminal, Julia makes great use of both control-key and meta-key bindings. To make the meta-key bindings more accessible, many terminal emulator programs (e.g., `Terminal`, `iTerm`, `xterm`, etc.) allow you to use the alt or option key as meta. See the section in the manual on [interacting with Julia](http://docs.julialang.org/en/latest/manual/interacting-with-julia/) for more details. +In the terminal, Julia makes great use of both control-key and meta-key bindings. To make the meta-key bindings more accessible, many terminal emulator programs (e.g., `Terminal`, `iTerm`, `xterm`, etc.) allow you to use the alt or option key as meta. See the section in the manual on [interacting with Julia](https://docs.julialang.org/en/latest/manual/interacting-with-julia/) for more details. diff --git a/README.windows.md b/README.windows.md index 36aab711e0984..96ccc1a7f9f17 100644 --- a/README.windows.md +++ b/README.windows.md @@ -4,7 +4,7 @@ This file describes how to install, or build, and use Julia on Windows. For more general information about Julia, please see the [main README](https://github.com/JuliaLang/julia/blob/master/README.md) -or the [documentation](http://docs.julialang.org/). +or the [documentation](https://docs.julialang.org/). ## General Information for Windows @@ -56,7 +56,7 @@ Both the 32-bit and 64-bit versions are supported. The 32-bit (i686) binary will run on either a 32-bit and 64-bit operating system. The 64-bit (x86_64) binary will only run on 64-bit Windows and will otherwise refuse to launch. - 1. [Download](http://julialang.org/downloads) the latest version of Julia. + 1. [Download](https://julialang.org/downloads) the latest version of Julia. Extract the binary to a reasonable destination folder, e.g. `C:\julia`. 2. Double-click the `julia` shortcut to launch Julia. @@ -161,7 +161,7 @@ The 64-bit (x86_64) binary will only run on 64-bit Windows and will otherwise re 5. Setup Package Development Environment 1. The `Pkg` module in Base provides many convenient tools for [developing - and publishing packages](http://docs.julialang.org/en/latest/manual/packages/). + and publishing packages](https://docs.julialang.org/en/latest/manual/packages/). One of the packages added through pacman above was `openssh`, which will allow secure access to GitHub APIs. Follow GitHub's [guide]( https://help.github.com/articles/generating-ssh-keys) to setting up SSH diff --git a/base/Enums.jl b/base/Enums.jl index 48e9e63ecda60..e29efb296e087 100644 --- a/base/Enums.jl +++ b/base/Enums.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Enums diff --git a/base/LineEdit.jl b/base/LineEdit.jl index 0334817dc5630..5df447d9837a6 100644 --- a/base/LineEdit.jl +++ b/base/LineEdit.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module LineEdit diff --git a/base/REPL.jl b/base/REPL.jl index 229bc76b799b4..90f97799a8408 100644 --- a/base/REPL.jl +++ b/base/REPL.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module REPL diff --git a/base/REPLCompletions.jl b/base/REPLCompletions.jl index 1d5adf2f81ee6..f5626e5f5c57a 100644 --- a/base/REPLCompletions.jl +++ b/base/REPLCompletions.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module REPLCompletions diff --git a/base/Terminals.jl b/base/Terminals.jl index a4f2747b7152c..479d3c30914c2 100644 --- a/base/Terminals.jl +++ b/base/Terminals.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Terminals diff --git a/base/abstractarray.jl b/base/abstractarray.jl index 80ce357c2cc17..16f6db4192499 100644 --- a/base/abstractarray.jl +++ b/base/abstractarray.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## Basic functions ## diff --git a/base/abstractarraymath.jl b/base/abstractarraymath.jl index 07b55a77bd767..847ddc03c4f8c 100644 --- a/base/abstractarraymath.jl +++ b/base/abstractarraymath.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## Basic functions ## diff --git a/base/array.jl b/base/array.jl index a6961462f0ef2..ff7e5673556ec 100644 --- a/base/array.jl +++ b/base/array.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## array.jl: Dense arrays diff --git a/base/arraymath.jl b/base/arraymath.jl index 1d286bda5063b..54ac4418c5e45 100644 --- a/base/arraymath.jl +++ b/base/arraymath.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## Unary operators ## diff --git a/base/associative.jl b/base/associative.jl index 1815f03bc3517..b49c5b54bfd47 100644 --- a/base/associative.jl +++ b/base/associative.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # generic operations on associative collections diff --git a/base/asyncmap.jl b/base/asyncmap.jl index fcfeedd24d0be..19846ab7a0ced 100644 --- a/base/asyncmap.jl +++ b/base/asyncmap.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Iterators.Enumerate diff --git a/base/atomics.jl b/base/atomics.jl index 1fc7f7a64d3ed..18790d6f6e477 100644 --- a/base/atomics.jl +++ b/base/atomics.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Core.Intrinsics: llvmcall diff --git a/base/base.jl b/base/base.jl index fd04ea496b6ad..ee4bf7f3beed3 100644 --- a/base/base.jl +++ b/base/base.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license """ SystemError(prefix::AbstractString, [errno::Int32]) diff --git a/base/base64.jl b/base/base64.jl index 743f055ca9f11..99f507e48b7df 100644 --- a/base/base64.jl +++ b/base/base64.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Base64 import Base: read, write, close, eof, empty! diff --git a/base/bitarray.jl b/base/bitarray.jl index 1fa5700044656..e3e81bba2c0a0 100644 --- a/base/bitarray.jl +++ b/base/bitarray.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## BitArray diff --git a/base/bool.jl b/base/bool.jl index b73ccee81a45e..f2c48bbd6266f 100644 --- a/base/bool.jl +++ b/base/bool.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## boolean conversions ## diff --git a/base/boot.jl b/base/boot.jl index 32de033195dbc..bb791d5f2aaca 100644 --- a/base/boot.jl +++ b/base/boot.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # commented-out definitions are implemented in C diff --git a/base/broadcast.jl b/base/broadcast.jl index c6dfb006e8f8e..b39660b62335b 100644 --- a/base/broadcast.jl +++ b/base/broadcast.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Broadcast diff --git a/base/c.jl b/base/c.jl index dba82413d88bb..46ea2fa3af2ef 100644 --- a/base/c.jl +++ b/base/c.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # definitions related to C interface diff --git a/base/cartesian.jl b/base/cartesian.jl index 18e31f0f161f9..86068a28baded 100644 --- a/base/cartesian.jl +++ b/base/cartesian.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Cartesian diff --git a/base/channels.jl b/base/channels.jl index 403dc73190bc2..a8d2aa2668625 100644 --- a/base/channels.jl +++ b/base/channels.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license abstract type AbstractChannel end diff --git a/base/char.jl b/base/char.jl index 3e72f88608fc8..6add31b91019a 100644 --- a/base/char.jl +++ b/base/char.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license convert(::Type{Char}, x::UInt32) = reinterpret(Char, x) convert(::Type{Char}, x::Number) = Char(UInt32(x)) diff --git a/base/checked.jl b/base/checked.jl index 37310d0a35e90..b466ff8c3a1d6 100644 --- a/base/checked.jl +++ b/base/checked.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Support for checked integer arithmetic diff --git a/base/client.jl b/base/client.jl index 268a24d692373..9a7cfa39816e4 100644 --- a/base/client.jl +++ b/base/client.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## client.jl - frontend handling command line options, environment setup, ## and REPL diff --git a/base/combinatorics.jl b/base/combinatorics.jl index 7388e7ecd1b56..920f6c23d944e 100644 --- a/base/combinatorics.jl +++ b/base/combinatorics.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Factorials diff --git a/base/complex.jl b/base/complex.jl index eb27aeff7b7fa..9e4adc0fdf1d6 100644 --- a/base/complex.jl +++ b/base/complex.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license struct Complex{T<:Real} <: Number re::T diff --git a/base/coreimg.jl b/base/coreimg.jl index fe5b5547fdce2..8b552d51252e7 100644 --- a/base/coreimg.jl +++ b/base/coreimg.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license Main.Core.eval(Main.Core, :(baremodule Inference using Core.Intrinsics diff --git a/base/coreio.jl b/base/coreio.jl index f47286f9ea62d..b15fca1ea1003 100644 --- a/base/coreio.jl +++ b/base/coreio.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license show(x) = show(STDOUT::IO, x) print(xs...) = print(STDOUT::IO, xs...) diff --git a/base/ctypes.jl b/base/ctypes.jl index 6dccd586459ca..387fdd9d8c7dd 100644 --- a/base/ctypes.jl +++ b/base/ctypes.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # essential type definitions for interacting with C code # (platform- or OS-dependent types are defined in c.jl) diff --git a/base/dSFMT.jl b/base/dSFMT.jl index bf58595fd4a2b..c95b372d9b6a5 100644 --- a/base/dSFMT.jl +++ b/base/dSFMT.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module dSFMT diff --git a/base/datafmt.jl b/base/datafmt.jl index a80bd1f5328d2..eaad3f8368415 100644 --- a/base/datafmt.jl +++ b/base/datafmt.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## file formats ## diff --git a/base/dates/Dates.jl b/base/dates/Dates.jl index 355ef1760b51e..c8a5321432a3a 100644 --- a/base/dates/Dates.jl +++ b/base/dates/Dates.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Dates diff --git a/base/dates/accessors.jl b/base/dates/accessors.jl index 4022f4172beb3..d6ca886643001 100644 --- a/base/dates/accessors.jl +++ b/base/dates/accessors.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Convert # of Rata Die days to proleptic Gregorian calendar y,m,d,w # Reference: http://mysite.verizon.net/aesir_research/date/date0.htm diff --git a/base/dates/adjusters.jl b/base/dates/adjusters.jl index eebc68b59b5ad..357faec442a27 100644 --- a/base/dates/adjusters.jl +++ b/base/dates/adjusters.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ### truncation Base.trunc(dt::Date, p::Type{Year}) = Date(UTD(totaldays(year(dt), 1, 1))) diff --git a/base/dates/arithmetic.jl b/base/dates/arithmetic.jl index e1a611af0828f..05071369670e5 100644 --- a/base/dates/arithmetic.jl +++ b/base/dates/arithmetic.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Instant arithmetic (+)(x::Instant) = x diff --git a/base/dates/conversions.jl b/base/dates/conversions.jl index b406d1d47b78c..9016c5600d149 100644 --- a/base/dates/conversions.jl +++ b/base/dates/conversions.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Conversion/Promotion diff --git a/base/dates/io.jl b/base/dates/io.jl index 608d509ec4c64..0a6292bc5058d 100644 --- a/base/dates/io.jl +++ b/base/dates/io.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license """ AbstractDateToken diff --git a/base/dates/parse.jl b/base/dates/parse.jl index f81a827c4d1e4..1dc76323521e8 100644 --- a/base/dates/parse.jl +++ b/base/dates/parse.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ### Parsing utilities diff --git a/base/dates/periods.jl b/base/dates/periods.jl index e2c40726e7adf..51baecb51717b 100644 --- a/base/dates/periods.jl +++ b/base/dates/periods.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license #Period types value(x::Period) = x.value diff --git a/base/dates/query.jl b/base/dates/query.jl index 5862196583f3a..effdd68a1bbdf 100644 --- a/base/dates/query.jl +++ b/base/dates/query.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Date Locales diff --git a/base/dates/ranges.jl b/base/dates/ranges.jl index 3f9717fb21495..e58d3e7a0f841 100644 --- a/base/dates/ranges.jl +++ b/base/dates/ranges.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Date/DateTime Ranges diff --git a/base/dates/rounding.jl b/base/dates/rounding.jl index 0f10cf5ca93b1..b1714fff075ef 100644 --- a/base/dates/rounding.jl +++ b/base/dates/rounding.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # The epochs used for date rounding are based ISO 8601's "year zero" notation const DATEEPOCH = value(Date(0)) diff --git a/base/dates/types.jl b/base/dates/types.jl index 4bfa5c5339d8f..431ceee32bf14 100644 --- a/base/dates/types.jl +++ b/base/dates/types.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license abstract type AbstractTime end diff --git a/base/deepcopy.jl b/base/deepcopy.jl index 42d169be30a57..929f67c8cf67b 100644 --- a/base/deepcopy.jl +++ b/base/deepcopy.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # deep copying diff --git a/base/deprecated.jl b/base/deprecated.jl index fe3d2e7e5e655..d9f3282e4f317 100644 --- a/base/deprecated.jl +++ b/base/deprecated.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Deprecated functions and objects # diff --git a/base/dft.jl b/base/dft.jl index 3f40878c51bae..d2e467e5acdd6 100644 --- a/base/dft.jl +++ b/base/dft.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module DFT diff --git a/base/dict.jl b/base/dict.jl index bfe6ca4322a73..fc5109e41c7c7 100644 --- a/base/dict.jl +++ b/base/dict.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function _truncate_at_width_or_chars(str, width, chars="", truncmark="…") truncwidth = strwidth(truncmark) diff --git a/base/distributed/Distributed.jl b/base/distributed/Distributed.jl index 1405ab11867b5..36e4bcba53fc9 100644 --- a/base/distributed/Distributed.jl +++ b/base/distributed/Distributed.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Distributed diff --git a/base/distributed/cluster.jl b/base/distributed/cluster.jl index 2d1d4fe1a38e4..053f600da025a 100644 --- a/base/distributed/cluster.jl +++ b/base/distributed/cluster.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license abstract type ClusterManager end diff --git a/base/distributed/clusterserialize.jl b/base/distributed/clusterserialize.jl index 043ca57abf576..7d44c17b56f73 100644 --- a/base/distributed/clusterserialize.jl +++ b/base/distributed/clusterserialize.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Serializer: known_object_data, object_number, serialize_cycle, deserialize_cycle, writetag, __deserialized_types__, serialize_typename, deserialize_typename, diff --git a/base/distributed/macros.jl b/base/distributed/macros.jl index 51e5405c0f09a..e0f7b82f1f068 100644 --- a/base/distributed/macros.jl +++ b/base/distributed/macros.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license let nextidx = 0 global nextproc diff --git a/base/distributed/managers.jl b/base/distributed/managers.jl index bf66ead246bcd..aa0104f16218c 100644 --- a/base/distributed/managers.jl +++ b/base/distributed/managers.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Built-in SSH and Local Managers diff --git a/base/distributed/messages.jl b/base/distributed/messages.jl index dc95b032e2efa..aee31cec8bf50 100644 --- a/base/distributed/messages.jl +++ b/base/distributed/messages.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license abstract type AbstractMsg end diff --git a/base/distributed/pmap.jl b/base/distributed/pmap.jl index 9e8c6530796f1..e470ae24d8309 100644 --- a/base/distributed/pmap.jl +++ b/base/distributed/pmap.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license mutable struct BatchProcessingError <: Exception data diff --git a/base/distributed/process_messages.jl b/base/distributed/process_messages.jl index d9bac73f9545e..121467676a64f 100644 --- a/base/distributed/process_messages.jl +++ b/base/distributed/process_messages.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # data stored by the owner of a remote reference def_rv_channel() = Channel(1) diff --git a/base/distributed/remotecall.jl b/base/distributed/remotecall.jl index d740d9720c6f2..67d4476d0cc18 100644 --- a/base/distributed/remotecall.jl +++ b/base/distributed/remotecall.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license """ client_refs diff --git a/base/distributed/workerpool.jl b/base/distributed/workerpool.jl index 2c5f772f706a0..ba43ef788bf67 100644 --- a/base/distributed/workerpool.jl +++ b/base/distributed/workerpool.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license abstract type AbstractWorkerPool end diff --git a/base/docs/Docs.jl b/base/docs/Docs.jl index 2e7a47946a464..a40e1e8ee9189 100644 --- a/base/docs/Docs.jl +++ b/base/docs/Docs.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license """ The Docs module provides the `@doc` macro which can be used to set and retrieve diff --git a/base/docs/basedocs.jl b/base/docs/basedocs.jl index f67777940bca1..5938cd2d18205 100644 --- a/base/docs/basedocs.jl +++ b/base/docs/basedocs.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module BaseDocs @@ -10,11 +10,11 @@ macro kw_str(text) Keyword(Symbol(text)) end """ **Welcome to Julia $(string(VERSION)).** The full manual is available at - http://docs.julialang.org/ + https://docs.julialang.org/ as well many great tutorials and learning resources: - http://julialang.org/learning/ + https://julialang.org/learning/ For help on a specific function or macro, type `?` followed by its name, e.g. `?fft`, or `?@time`, and press enter. diff --git a/base/docs/bindings.jl b/base/docs/bindings.jl index 40ca52cd09e0a..ac7fbab7f6bfd 100644 --- a/base/docs/bindings.jl +++ b/base/docs/bindings.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license export @var diff --git a/base/docs/core.jl b/base/docs/core.jl index 81993ae2ef2c3..9b8cf34c7f48a 100644 --- a/base/docs/core.jl +++ b/base/docs/core.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module CoreDocs diff --git a/base/docs/helpdb.jl b/base/docs/helpdb.jl index 42e7b76d29df0..5e2a4fe44b28a 100644 --- a/base/docs/helpdb.jl +++ b/base/docs/helpdb.jl @@ -1,3 +1,3 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license include(joinpath("helpdb", "Base.jl")) diff --git a/base/docs/helpdb/Base.jl b/base/docs/helpdb/Base.jl index d5f9000b947be..83019ba7d477b 100644 --- a/base/docs/helpdb/Base.jl +++ b/base/docs/helpdb/Base.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Base diff --git a/base/docs/utils.jl b/base/docs/utils.jl index 2802e5bf8c4c5..533ae9c88fd53 100644 --- a/base/docs/utils.jl +++ b/base/docs/utils.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Text / HTML objects diff --git a/base/dsp.jl b/base/dsp.jl index f7d32406dcc38..c4cf7fceb8514 100644 --- a/base/dsp.jl +++ b/base/dsp.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module DSP diff --git a/base/emoji_symbols.jl b/base/emoji_symbols.jl index e65d9b9be476b..f8a5043f19f36 100644 --- a/base/emoji_symbols.jl +++ b/base/emoji_symbols.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license #= import JSON diff --git a/base/env.jl b/base/env.jl index e4bc18e39df8e..985347f37dca6 100644 --- a/base/env.jl +++ b/base/env.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license if is_windows() const ERROR_ENVVAR_NOT_FOUND = UInt32(203) diff --git a/base/errno.jl b/base/errno.jl index 99986995832c7..19da1239109a6 100644 --- a/base/errno.jl +++ b/base/errno.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license include("errno_h.jl") export diff --git a/base/error.jl b/base/error.jl index cd2e41b21a6d5..108f5c83716d4 100644 --- a/base/error.jl +++ b/base/error.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # pseudo-definitions to show how everything behaves # diff --git a/base/essentials.jl b/base/essentials.jl index a944e84d07416..b5af539f7edf0 100644 --- a/base/essentials.jl +++ b/base/essentials.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Core: CodeInfo diff --git a/base/event.jl b/base/event.jl index 8a5167d047f5f..fcefd7024b3b3 100644 --- a/base/event.jl +++ b/base/event.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## condition variables diff --git a/base/exports.jl b/base/exports.jl index f38b87fe2bff0..5a807c0724394 100644 --- a/base/exports.jl +++ b/base/exports.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license export # Modules diff --git a/base/expr.jl b/base/expr.jl index 55b9e23359c88..21d66ec4a445c 100644 --- a/base/expr.jl +++ b/base/expr.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## symbols ## diff --git a/base/fastmath.jl b/base/fastmath.jl index 7d51eba54a6d4..1471addca0eba 100644 --- a/base/fastmath.jl +++ b/base/fastmath.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Support for @fastmath diff --git a/base/fft/FFTW.jl b/base/fft/FFTW.jl index bcf93a7e05a80..635d72272b266 100644 --- a/base/fft/FFTW.jl +++ b/base/fft/FFTW.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import Base: show, *, convert, unsafe_convert, size, strides, ndims, pointer, A_mul_B! diff --git a/base/fft/dct.jl b/base/fft/dct.jl index d548c265fbc49..436fd8671dc6d 100644 --- a/base/fft/dct.jl +++ b/base/fft/dct.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # (This is part of the FFTW module.) diff --git a/base/file.jl b/base/file.jl index e5b091b425cc2..dd4ebe089d3f1 100644 --- a/base/file.jl +++ b/base/file.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Operations with the file system (paths) ## diff --git a/base/filesystem.jl b/base/filesystem.jl index 1f6bc997156ff..bdbd8a0d6d305 100644 --- a/base/filesystem.jl +++ b/base/filesystem.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## File Operations (Libuv-based) ## diff --git a/base/float.jl b/base/float.jl index 69a37e277c092..16919ea9fe253 100644 --- a/base/float.jl +++ b/base/float.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## floating point traits ## diff --git a/base/floatfuncs.jl b/base/floatfuncs.jl index 8ca6fa6f8250f..e75486a46257c 100644 --- a/base/floatfuncs.jl +++ b/base/floatfuncs.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## floating-point functions ## diff --git a/base/generator.jl b/base/generator.jl index 378419c13b6ea..87f3d02fc18b4 100644 --- a/base/generator.jl +++ b/base/generator.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license """ Generator(f, iter) diff --git a/base/gmp.jl b/base/gmp.jl index 7232d4a416104..365de9154fd51 100644 --- a/base/gmp.jl +++ b/base/gmp.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module GMP diff --git a/base/grisu/grisu.jl b/base/grisu/grisu.jl index b9a834a07bb9f..40ddf401ce865 100644 --- a/base/grisu/grisu.jl +++ b/base/grisu/grisu.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Grisu diff --git a/base/hashing.jl b/base/hashing.jl index 2417124bef64a..efc87a46568cd 100644 --- a/base/hashing.jl +++ b/base/hashing.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## hashing a single value ## diff --git a/base/hashing2.jl b/base/hashing2.jl index 96bd4ed55e56b..37a401ac974f0 100644 --- a/base/hashing2.jl +++ b/base/hashing2.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## efficient value-based hashing of integers ## diff --git a/base/i18n.jl b/base/i18n.jl index 66f650b90d808..d4488cc1ce832 100644 --- a/base/i18n.jl +++ b/base/i18n.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module I18n diff --git a/base/indices.jl b/base/indices.jl index e01b6699592b0..e55a64dd38597 100644 --- a/base/indices.jl +++ b/base/indices.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license Dims{N} = NTuple{N,Int} DimsInteger{N} = NTuple{N,Integer} @@ -237,7 +237,7 @@ unsafe_indices(S::Slice) = (S.indices,) indices1(S::Slice) = S.indices first(S::Slice) = first(S.indices) last(S::Slice) = last(S.indices) -errmsg(A) = error("size not supported for arrays with indices $(indices(A)); see http://docs.julialang.org/en/latest/devdocs/offset-arrays/") +errmsg(A) = error("size not supported for arrays with indices $(indices(A)); see https://docs.julialang.org/en/latest/devdocs/offset-arrays/") size(S::Slice) = first(S.indices) == 1 ? (length(S.indices),) : errmsg(S) length(S::Slice) = first(S.indices) == 1 ? length(S.indices) : errmsg(S) unsafe_length(S::Slice) = first(S.indices) == 1 ? unsafe_length(S.indices) : errmsg(S) diff --git a/base/inference.jl b/base/inference.jl index b80497edfc12d..cb6275e0ea723 100644 --- a/base/inference.jl +++ b/base/inference.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import Core: _apply, svec, apply_type, Builtin, IntrinsicFunction, MethodInstance diff --git a/base/initdefs.jl b/base/initdefs.jl index 0259b131de91f..20437a4e57cba 100644 --- a/base/initdefs.jl +++ b/base/initdefs.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## initdefs.jl - initialization and runtime management definitions diff --git a/base/int.jl b/base/int.jl index 3c1084b2dc7e9..023917dc40c82 100644 --- a/base/int.jl +++ b/base/int.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## integer arithmetic ## diff --git a/base/interactiveutil.jl b/base/interactiveutil.jl index 1d12a95249976..2d82b0bdd05b6 100644 --- a/base/interactiveutil.jl +++ b/base/interactiveutil.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # editing files diff --git a/base/intfuncs.jl b/base/intfuncs.jl index 48de70ca99ac4..91191d4048c18 100644 --- a/base/intfuncs.jl +++ b/base/intfuncs.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## number-theoretic functions ## diff --git a/base/intset.jl b/base/intset.jl index 1bb2016d0a11a..13b9fce6325d9 100644 --- a/base/intset.jl +++ b/base/intset.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license struct IntSet <: AbstractSet{Int} bits::BitVector diff --git a/base/io.jl b/base/io.jl index bee7fb3899959..3e57236326a1a 100644 --- a/base/io.jl +++ b/base/io.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Generic IO stubs -- all subtypes should implement these (if meaningful) diff --git a/base/iobuffer.jl b/base/iobuffer.jl index 496977a0faee0..85a3e1a717379 100644 --- a/base/iobuffer.jl +++ b/base/iobuffer.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## work with AbstractVector{UInt8} via I/O primitives ## diff --git a/base/iostream.jl b/base/iostream.jl index b2474765a2a58..7517fd1175934 100644 --- a/base/iostream.jl +++ b/base/iostream.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## IOStream diff --git a/base/irrationals.jl b/base/irrationals.jl index c9fd585e79f94..d822ab7aa6a2d 100644 --- a/base/irrationals.jl +++ b/base/irrationals.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## general machinery for irrational mathematical constants diff --git a/base/iterators.jl b/base/iterators.jl index 08fc609ced843..230909f4984c0 100644 --- a/base/iterators.jl +++ b/base/iterators.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Iterators diff --git a/base/latex_symbols.jl b/base/latex_symbols.jl index 2e2d2af8da657..65b237f28a9d3 100644 --- a/base/latex_symbols.jl +++ b/base/latex_symbols.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Mapping from LaTeX math symbol to the corresponding Unicode codepoint. # This is used for tab substitution in the REPL. diff --git a/base/libc.jl b/base/libc.jl index a1880755de5e0..d0414f45fd54b 100644 --- a/base/libc.jl +++ b/base/libc.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Libc diff --git a/base/libdl.jl b/base/libdl.jl index 388950d11f2f3..88846f0cd7f34 100644 --- a/base/libdl.jl +++ b/base/libdl.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Libdl diff --git a/base/libgit2/blob.jl b/base/libgit2/blob.jl index 207eb9c56b3d9..999a58da63f86 100644 --- a/base/libgit2/blob.jl +++ b/base/libgit2/blob.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function Base.length(blob::GitBlob) return ccall((:git_blob_rawsize, :libgit2), Int64, (Ptr{Void},), blob.ptr) diff --git a/base/libgit2/callbacks.jl b/base/libgit2/callbacks.jl index da74f2e88071f..0a78f48949f47 100644 --- a/base/libgit2/callbacks.jl +++ b/base/libgit2/callbacks.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license """Mirror callback function diff --git a/base/libgit2/commit.jl b/base/libgit2/commit.jl index 28592fe933c00..39feb982a3e4f 100644 --- a/base/libgit2/commit.jl +++ b/base/libgit2/commit.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function message(c::GitCommit, raw::Bool=false) local msg_ptr::Cstring diff --git a/base/libgit2/config.jl b/base/libgit2/config.jl index dcb4045c797e9..6296648d26c04 100644 --- a/base/libgit2/config.jl +++ b/base/libgit2/config.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function GitConfig(path::AbstractString, level::Consts.GIT_CONFIG = Consts.CONFIG_LEVEL_APP, diff --git a/base/libgit2/consts.jl b/base/libgit2/consts.jl index 0e563e35ebeb4..b5aa73c41f9eb 100644 --- a/base/libgit2/consts.jl +++ b/base/libgit2/consts.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Consts diff --git a/base/libgit2/diff.jl b/base/libgit2/diff.jl index 49836e2df4d3d..c01e2268d841b 100644 --- a/base/libgit2/diff.jl +++ b/base/libgit2/diff.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # TODO: make this a general purpose solution function Base.cconvert(::Type{Ptr{DiffOptionsStruct}}, pathspecs::AbstractString) diff --git a/base/libgit2/error.jl b/base/libgit2/error.jl index 8e91bec65821c..2f5739e0af879 100644 --- a/base/libgit2/error.jl +++ b/base/libgit2/error.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Error diff --git a/base/libgit2/index.jl b/base/libgit2/index.jl index f3ca053d91f2c..c7e04c33f0c32 100644 --- a/base/libgit2/index.jl +++ b/base/libgit2/index.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function GitIndex(repo::GitRepo) idx_ptr_ptr = Ref{Ptr{Void}}(C_NULL) diff --git a/base/libgit2/libgit2.jl b/base/libgit2/libgit2.jl index 0721ab7b8e4c2..85f5e6cc76a37 100644 --- a/base/libgit2/libgit2.jl +++ b/base/libgit2/libgit2.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module LibGit2 diff --git a/base/libgit2/merge.jl b/base/libgit2/merge.jl index cf5ab1040babd..2760a4015b855 100644 --- a/base/libgit2/merge.jl +++ b/base/libgit2/merge.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function GitAnnotated(repo::GitRepo, commit_id::GitHash) ann_ptr_ptr = Ref{Ptr{Void}}(C_NULL) diff --git a/base/libgit2/oid.jl b/base/libgit2/oid.jl index 351a4584da26d..21e527c7cb08d 100644 --- a/base/libgit2/oid.jl +++ b/base/libgit2/oid.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function GitHash(ptr::Ptr{UInt8}) if ptr == C_NULL diff --git a/base/libgit2/rebase.jl b/base/libgit2/rebase.jl index 7c4ef40c18a85..c794e3f1ebc11 100644 --- a/base/libgit2/rebase.jl +++ b/base/libgit2/rebase.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function GitRebase(repo::GitRepo, branch::GitAnnotated, upstream::GitAnnotated; onto::Nullable{GitAnnotated}=Nullable{GitAnnotated}(), diff --git a/base/libgit2/reference.jl b/base/libgit2/reference.jl index 3b44dd1ad763b..be6336815eef5 100644 --- a/base/libgit2/reference.jl +++ b/base/libgit2/reference.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function GitReference(repo::GitRepo, refname::AbstractString) ref_ptr_ptr = Ref{Ptr{Void}}(C_NULL) diff --git a/base/libgit2/remote.jl b/base/libgit2/remote.jl index 8951fb079f758..85062caced0bd 100644 --- a/base/libgit2/remote.jl +++ b/base/libgit2/remote.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license """ GitRemote(repo::GitRepo, rmt_name::AbstractString, rmt_url::AbstractString) -> GitRemote diff --git a/base/libgit2/repository.jl b/base/libgit2/repository.jl index 30cc536c1de27..5f1f938c475b3 100644 --- a/base/libgit2/repository.jl +++ b/base/libgit2/repository.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license """ LibGit2.GitRepo(path::AbstractString) diff --git a/base/libgit2/signature.jl b/base/libgit2/signature.jl index 8fd7d88a1aa01..2e6395c3758d5 100644 --- a/base/libgit2/signature.jl +++ b/base/libgit2/signature.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function Signature(ptr::Ptr{SignatureStruct}) sig = unsafe_load(ptr)::SignatureStruct diff --git a/base/libgit2/status.jl b/base/libgit2/status.jl index c0d547d1c0d90..a006770cd55fb 100644 --- a/base/libgit2/status.jl +++ b/base/libgit2/status.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license """ LibGit2.GitStatus(repo::GitRepo; status_opts=StatusOptions()) diff --git a/base/libgit2/strarray.jl b/base/libgit2/strarray.jl index deee54fd8e4eb..db0803680f72b 100644 --- a/base/libgit2/strarray.jl +++ b/base/libgit2/strarray.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function Base.cconvert(::Type{Ptr{StrArrayStruct}}, x::Vector) diff --git a/base/libgit2/tag.jl b/base/libgit2/tag.jl index 098bfd03837e9..b76a5db932204 100644 --- a/base/libgit2/tag.jl +++ b/base/libgit2/tag.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license """ LibGit2.tag_list(repo::GitRepo) -> Vector{String} diff --git a/base/libgit2/tree.jl b/base/libgit2/tree.jl index af36a46246e04..3f9162f3823b9 100644 --- a/base/libgit2/tree.jl +++ b/base/libgit2/tree.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license """ Traverse the entries in a tree and its subtrees in post or pre order. diff --git a/base/libgit2/types.jl b/base/libgit2/types.jl index be76f294c8a0e..3bfede4b20367 100644 --- a/base/libgit2/types.jl +++ b/base/libgit2/types.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import Base.@kwdef import .Consts: GIT_SUBMODULE_IGNORE, GIT_MERGE_FILE_FAVOR, GIT_MERGE_FILE diff --git a/base/libgit2/utils.jl b/base/libgit2/utils.jl index 4dd3504e707ec..59b84bf905427 100644 --- a/base/libgit2/utils.jl +++ b/base/libgit2/utils.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Parse "GIT URLs" syntax (URLs and a scp-like syntax). For details see: # https://git-scm.com/docs/git-clone#_git_urls_a_id_urls_a diff --git a/base/libgit2/walker.jl b/base/libgit2/walker.jl index 8649b35cf9ca8..41b44fcbc14b4 100644 --- a/base/libgit2/walker.jl +++ b/base/libgit2/walker.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function GitRevWalker(repo::GitRepo) w_ptr = Ref{Ptr{Void}}(C_NULL) diff --git a/base/libuv.jl b/base/libuv.jl index 35677c54d89dc..702fad7392081 100644 --- a/base/libuv.jl +++ b/base/libuv.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Core definitions for interacting with the libuv library from Julia diff --git a/base/linalg/arnoldi.jl b/base/linalg/arnoldi.jl index e01e3ff31987f..fc78d98affaf5 100644 --- a/base/linalg/arnoldi.jl +++ b/base/linalg/arnoldi.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using .ARPACK diff --git a/base/linalg/arpack.jl b/base/linalg/arpack.jl index 5b4a8541c096a..f4c03a1f015de 100644 --- a/base/linalg/arpack.jl +++ b/base/linalg/arpack.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module ARPACK diff --git a/base/linalg/bidiag.jl b/base/linalg/bidiag.jl index 9d70bea5ba578..91538ef7cddaf 100644 --- a/base/linalg/bidiag.jl +++ b/base/linalg/bidiag.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Bidiagonal matrices mutable struct Bidiagonal{T} <: AbstractMatrix{T} diff --git a/base/linalg/bitarray.jl b/base/linalg/bitarray.jl index 2b053e52745de..bb0eb96579438 100644 --- a/base/linalg/bitarray.jl +++ b/base/linalg/bitarray.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function dot(x::BitVector, y::BitVector) # simplest way to mimic Array dot behavior diff --git a/base/linalg/blas.jl b/base/linalg/blas.jl index f7e0667b53db4..87db924d4ffb3 100644 --- a/base/linalg/blas.jl +++ b/base/linalg/blas.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module BLAS diff --git a/base/linalg/bunchkaufman.jl b/base/linalg/bunchkaufman.jl index 5c52e6441dba6..8d0e55856f58e 100644 --- a/base/linalg/bunchkaufman.jl +++ b/base/linalg/bunchkaufman.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## Create an extractor that extracts the modified original matrix, e.g. ## LD for BunchKaufman, UL for CholeskyDense, LU for LUDense and diff --git a/base/linalg/cholesky.jl b/base/linalg/cholesky.jl index e9fb53b556023..47c0d3610650e 100644 --- a/base/linalg/cholesky.jl +++ b/base/linalg/cholesky.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ########################## # Cholesky Factorization # diff --git a/base/linalg/conjarray.jl b/base/linalg/conjarray.jl index 065795042e44a..a1afac5a054f1 100644 --- a/base/linalg/conjarray.jl +++ b/base/linalg/conjarray.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license """ ConjArray(array) diff --git a/base/linalg/dense.jl b/base/linalg/dense.jl index 6b37b15a212b6..d70f7c2549f08 100644 --- a/base/linalg/dense.jl +++ b/base/linalg/dense.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Linear algebra functions for dense matrices in column major format diff --git a/base/linalg/diagonal.jl b/base/linalg/diagonal.jl index c52ef944d96b4..34e1d632d6df6 100644 --- a/base/linalg/diagonal.jl +++ b/base/linalg/diagonal.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## Diagonal matrices diff --git a/base/linalg/eigen.jl b/base/linalg/eigen.jl index 6354df70be150..40d66d423139c 100644 --- a/base/linalg/eigen.jl +++ b/base/linalg/eigen.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Eigendecomposition struct Eigen{T,V,S<:AbstractMatrix,U<:AbstractVector} <: Factorization{T} diff --git a/base/linalg/exceptions.jl b/base/linalg/exceptions.jl index 40320246f420b..ea3cb5f84fabf 100644 --- a/base/linalg/exceptions.jl +++ b/base/linalg/exceptions.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license export LAPACKException, ARPACKException, diff --git a/base/linalg/factorization.jl b/base/linalg/factorization.jl index d160f2c3cd839..df4066f3b495b 100644 --- a/base/linalg/factorization.jl +++ b/base/linalg/factorization.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## Matrix factorizations and decompositions diff --git a/base/linalg/generic.jl b/base/linalg/generic.jl index 547a7774ef866..8892b5d9e0a44 100644 --- a/base/linalg/generic.jl +++ b/base/linalg/generic.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## linalg.jl: Some generic Linear Algebra definitions diff --git a/base/linalg/givens.jl b/base/linalg/givens.jl index 4a9766f19fb56..a6b312db12e35 100644 --- a/base/linalg/givens.jl +++ b/base/linalg/givens.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # givensAlgorithm functions are derived from LAPACK, see below abstract type AbstractRotation{T} end diff --git a/base/linalg/hessenberg.jl b/base/linalg/hessenberg.jl index 658338b009d07..326bfbd2f7ea0 100644 --- a/base/linalg/hessenberg.jl +++ b/base/linalg/hessenberg.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license struct Hessenberg{T,S<:AbstractMatrix} <: Factorization{T} factors::S diff --git a/base/linalg/lapack.jl b/base/linalg/lapack.jl index 4b5c937767ce8..357f28e2d7813 100644 --- a/base/linalg/lapack.jl +++ b/base/linalg/lapack.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## The LAPACK module of interfaces to LAPACK subroutines module LAPACK diff --git a/base/linalg/ldlt.jl b/base/linalg/ldlt.jl index e4d1e0c1236b8..156ab51bdbf56 100644 --- a/base/linalg/ldlt.jl +++ b/base/linalg/ldlt.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license struct LDLt{T,S<:AbstractMatrix} <: Factorization{T} data::S diff --git a/base/linalg/linalg.jl b/base/linalg/linalg.jl index 1f63661d53f09..b4004f008536e 100644 --- a/base/linalg/linalg.jl +++ b/base/linalg/linalg.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module LinAlg diff --git a/base/linalg/lq.jl b/base/linalg/lq.jl index 18c3845b2dc32..0e1f1a7ab43d6 100644 --- a/base/linalg/lq.jl +++ b/base/linalg/lq.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # LQ Factorizations diff --git a/base/linalg/lu.jl b/base/linalg/lu.jl index acedcc395ad72..6f715ea76474d 100644 --- a/base/linalg/lu.jl +++ b/base/linalg/lu.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license #################### # LU Factorization # diff --git a/base/linalg/matmul.jl b/base/linalg/matmul.jl index 5bbcb6f63fca8..83a1d8e342201 100644 --- a/base/linalg/matmul.jl +++ b/base/linalg/matmul.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # matmul.jl: Everything to do with dense matrix multiplication diff --git a/base/linalg/qr.jl b/base/linalg/qr.jl index e693496c7c052..99f04b0059a76 100644 --- a/base/linalg/qr.jl +++ b/base/linalg/qr.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # QR and Hessenberg Factorizations diff --git a/base/linalg/rowvector.jl b/base/linalg/rowvector.jl index 3e33d1c43af12..d7e9074e6143c 100644 --- a/base/linalg/rowvector.jl +++ b/base/linalg/rowvector.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license """ RowVector(vector) diff --git a/base/linalg/schur.jl b/base/linalg/schur.jl index 50c4a6e74cc45..ad6cd33b800cb 100644 --- a/base/linalg/schur.jl +++ b/base/linalg/schur.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Schur decomposition struct Schur{Ty,S<:AbstractMatrix} <: Factorization{Ty} diff --git a/base/linalg/special.jl b/base/linalg/special.jl index c4fd2c6e09bb1..fd1bd6bd6070e 100644 --- a/base/linalg/special.jl +++ b/base/linalg/special.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Methods operating on different special matrix types diff --git a/base/linalg/svd.jl b/base/linalg/svd.jl index 7bc1a42f45486..db80313605e99 100644 --- a/base/linalg/svd.jl +++ b/base/linalg/svd.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Singular Value Decomposition struct SVD{T,Tr,M<:AbstractArray} <: Factorization{T} diff --git a/base/linalg/symmetric.jl b/base/linalg/symmetric.jl index 2278afa943cd7..f0163356afc15 100644 --- a/base/linalg/symmetric.jl +++ b/base/linalg/symmetric.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license #Symmetric and Hermitian matrices struct Symmetric{T,S<:AbstractMatrix} <: AbstractMatrix{T} diff --git a/base/linalg/transpose.jl b/base/linalg/transpose.jl index d15c54dab8dc6..4bafa9e4e6c7b 100644 --- a/base/linalg/transpose.jl +++ b/base/linalg/transpose.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ctranspose(a::AbstractArray) = error("ctranspose not defined for $(typeof(a)). Consider using `permutedims` for higher-dimensional arrays.") transpose(a::AbstractArray) = error("transpose not defined for $(typeof(a)). Consider using `permutedims` for higher-dimensional arrays.") diff --git a/base/linalg/triangular.jl b/base/linalg/triangular.jl index dec4a33a91978..cd517d1985c22 100644 --- a/base/linalg/triangular.jl +++ b/base/linalg/triangular.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## Triangular diff --git a/base/linalg/tridiag.jl b/base/linalg/tridiag.jl index 0efaf34f43a6b..a749ff94338ef 100644 --- a/base/linalg/tridiag.jl +++ b/base/linalg/tridiag.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license #### Specialized matrix types #### diff --git a/base/linalg/uniformscaling.jl b/base/linalg/uniformscaling.jl index fb4d2fd661bef..efedb0f345d59 100644 --- a/base/linalg/uniformscaling.jl +++ b/base/linalg/uniformscaling.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import Base: copy, ctranspose, getindex, show, transpose, one, zero, inv, @_pure_meta, hcat, vcat, hvcat diff --git a/base/loading.jl b/base/loading.jl index 4242121aa6b08..9bda0da89d14f 100644 --- a/base/loading.jl +++ b/base/loading.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Base.require is the implementation for the `import` statement diff --git a/base/lock.jl b/base/lock.jl index 00d0fb9a93d95..533795a1cf072 100644 --- a/base/lock.jl +++ b/base/lock.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Advisory reentrant lock """ diff --git a/base/locks.jl b/base/locks.jl index c6c8d2b0552d2..e674d5d877191 100644 --- a/base/locks.jl +++ b/base/locks.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import Base: _uv_hook_close, unsafe_convert, lock, trylock, unlock, islocked diff --git a/base/markdown/Common/Common.jl b/base/markdown/Common/Common.jl index de021f7be1f2e..10e4e7b492712 100644 --- a/base/markdown/Common/Common.jl +++ b/base/markdown/Common/Common.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license include("block.jl") include("inline.jl") diff --git a/base/markdown/Common/block.jl b/base/markdown/Common/block.jl index 0594ffe48fabc..6815ac87a9b56 100644 --- a/base/markdown/Common/block.jl +++ b/base/markdown/Common/block.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # –––––––––– # Paragraphs diff --git a/base/markdown/Common/inline.jl b/base/markdown/Common/inline.jl index 1ef1171a9f647..276504cc5a13e 100644 --- a/base/markdown/Common/inline.jl +++ b/base/markdown/Common/inline.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # –––––––– # Emphasis diff --git a/base/markdown/GitHub/GitHub.jl b/base/markdown/GitHub/GitHub.jl index e29fdf62cad6b..ae2cfd1120f3a 100644 --- a/base/markdown/GitHub/GitHub.jl +++ b/base/markdown/GitHub/GitHub.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license include("table.jl") diff --git a/base/markdown/GitHub/table.jl b/base/markdown/GitHub/table.jl index dc31fad954143..31898506507f1 100644 --- a/base/markdown/GitHub/table.jl +++ b/base/markdown/GitHub/table.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license mutable struct Table rows::Vector{Vector{Any}} diff --git a/base/markdown/IPython/IPython.jl b/base/markdown/IPython/IPython.jl index 1cceb3e616d4d..665c45b84c6c8 100644 --- a/base/markdown/IPython/IPython.jl +++ b/base/markdown/IPython/IPython.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license mutable struct LaTeX formula::String diff --git a/base/markdown/Julia/Julia.jl b/base/markdown/Julia/Julia.jl index ab18b8d92eeaa..abc4b84385d30 100644 --- a/base/markdown/Julia/Julia.jl +++ b/base/markdown/Julia/Julia.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # This file contains markdown extensions designed to make documenting # Julia easy peasy. diff --git a/base/markdown/Julia/interp.jl b/base/markdown/Julia/interp.jl index 26be8e4a180a4..b41ec5f9ffe1e 100644 --- a/base/markdown/Julia/interp.jl +++ b/base/markdown/Julia/interp.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function Base.parse(stream::IO; greedy::Bool = true, raise::Bool = true) pos = position(stream) diff --git a/base/markdown/Markdown.jl b/base/markdown/Markdown.jl index ba3bbca697d38..d32ae9fa8d983 100644 --- a/base/markdown/Markdown.jl +++ b/base/markdown/Markdown.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Markdown diff --git a/base/markdown/parse/config.jl b/base/markdown/parse/config.jl index 0defc1f1fac08..eabba133a46fe 100644 --- a/base/markdown/parse/config.jl +++ b/base/markdown/parse/config.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license const InnerConfig = Dict{Char, Vector{Function}} diff --git a/base/markdown/parse/parse.jl b/base/markdown/parse/parse.jl index c061ee6d10ee8..052fda3642ce5 100644 --- a/base/markdown/parse/parse.jl +++ b/base/markdown/parse/parse.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license mutable struct MD content::Vector{Any} diff --git a/base/markdown/parse/util.jl b/base/markdown/parse/util.jl index 9b5598bbf9754..38f1a38da6000 100644 --- a/base/markdown/parse/util.jl +++ b/base/markdown/parse/util.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import Base: peek diff --git a/base/markdown/render/html.jl b/base/markdown/render/html.jl index fc1962270da52..3aadf0e914ddb 100644 --- a/base/markdown/render/html.jl +++ b/base/markdown/render/html.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license include("rich.jl") diff --git a/base/markdown/render/latex.jl b/base/markdown/render/latex.jl index ae1277eeb6d83..e41f4b5e75844 100644 --- a/base/markdown/render/latex.jl +++ b/base/markdown/render/latex.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license export latex diff --git a/base/markdown/render/plain.jl b/base/markdown/render/plain.jl index 01a3a8994d939..f6a4247cffe18 100644 --- a/base/markdown/render/plain.jl +++ b/base/markdown/render/plain.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license plain(x) = sprint(plain, x) diff --git a/base/markdown/render/rich.jl b/base/markdown/render/rich.jl index f3bdcefad460e..01617b5c81404 100644 --- a/base/markdown/render/rich.jl +++ b/base/markdown/render/rich.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function tohtml(io::IO, m::MIME"text/html", x) show(io, m, x) diff --git a/base/markdown/render/rst.jl b/base/markdown/render/rst.jl index ca5661520beff..58269df48aaee 100644 --- a/base/markdown/render/rst.jl +++ b/base/markdown/render/rst.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license rst(x) = sprint(rst, x) diff --git a/base/markdown/render/terminal/formatting.jl b/base/markdown/render/terminal/formatting.jl index 1d14f1d60be21..36a4d390a7138 100644 --- a/base/markdown/render/terminal/formatting.jl +++ b/base/markdown/render/terminal/formatting.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Styles diff --git a/base/markdown/render/terminal/render.jl b/base/markdown/render/terminal/render.jl index c3f97fa5c38b8..76be8ec471f8f 100644 --- a/base/markdown/render/terminal/render.jl +++ b/base/markdown/render/terminal/render.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license include("formatting.jl") diff --git a/base/math.jl b/base/math.jl index 3db27f625c96a..4d8eb64fc8d32 100644 --- a/base/math.jl +++ b/base/math.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Math diff --git a/base/meta.jl b/base/meta.jl index 84bcc86255dad..6daaa8330c0e4 100644 --- a/base/meta.jl +++ b/base/meta.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Meta # diff --git a/base/methodshow.jl b/base/methodshow.jl index 6429133a0ebe9..c9f304a509c9e 100644 --- a/base/methodshow.jl +++ b/base/methodshow.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Method and method table pretty-printing diff --git a/base/mmap.jl b/base/mmap.jl index ca56126812f56..b91e67a1bad97 100644 --- a/base/mmap.jl +++ b/base/mmap.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Mmap diff --git a/base/mpfr.jl b/base/mpfr.jl index 0a80427c20b2c..1f9a91cc735b1 100644 --- a/base/mpfr.jl +++ b/base/mpfr.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module MPFR diff --git a/base/multidimensional.jl b/base/multidimensional.jl index bf275c92701b0..3dfa450ec7e1f 100644 --- a/base/multidimensional.jl +++ b/base/multidimensional.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ### Multidimensional iterators module IteratorsMD diff --git a/base/multimedia.jl b/base/multimedia.jl index d4c1b15f7b58a..30b16ec1ba801 100644 --- a/base/multimedia.jl +++ b/base/multimedia.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Multimedia diff --git a/base/multinverses.jl b/base/multinverses.jl index cf11ca296d9d8..5b60e76e40a29 100644 --- a/base/multinverses.jl +++ b/base/multinverses.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module MultiplicativeInverses diff --git a/base/nofloat_hashing.jl b/base/nofloat_hashing.jl index 675c27560a30d..3ef707d1c440f 100644 --- a/base/nofloat_hashing.jl +++ b/base/nofloat_hashing.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## hashing small, built-in numeric types ## for a system image built without floating point support diff --git a/base/nullable.jl b/base/nullable.jl index bda2004e39111..2a631d5512cee 100644 --- a/base/nullable.jl +++ b/base/nullable.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license struct NullException <: Exception end diff --git a/base/number.jl b/base/number.jl index b5bf38622785d..bf695e0718024 100644 --- a/base/number.jl +++ b/base/number.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## generic operations on numbers ## """ diff --git a/base/operators.jl b/base/operators.jl index b6ea643d310fd..4fb6464cdd086 100644 --- a/base/operators.jl +++ b/base/operators.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## types ## diff --git a/base/options.jl b/base/options.jl index af18585939ce6..ef3c88bc96110 100644 --- a/base/options.jl +++ b/base/options.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # NOTE: This type needs to be kept in sync with jl_options in src/julia.h struct JLOptions diff --git a/base/ordering.jl b/base/ordering.jl index 227bc48e8521d..a2e772500896d 100644 --- a/base/ordering.jl +++ b/base/ordering.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Order diff --git a/base/osutils.jl b/base/osutils.jl index 0373c6d6c53ea..4a133a4bd9a7f 100644 --- a/base/osutils.jl +++ b/base/osutils.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license """ is_unix([os]) diff --git a/base/pair.jl b/base/pair.jl index 22d496f40c8ed..338f5547c1269 100644 --- a/base/pair.jl +++ b/base/pair.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license struct Pair{A,B} first::A diff --git a/base/parse.jl b/base/parse.jl index 493410e2fd87f..2cc5f6be8e5d6 100644 --- a/base/parse.jl +++ b/base/parse.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import Base.Checked: add_with_overflow, mul_with_overflow diff --git a/base/path.jl b/base/path.jl index 6b04246a5f777..5a1861d64c675 100644 --- a/base/path.jl +++ b/base/path.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license export abspath, diff --git a/base/pcre.jl b/base/pcre.jl index 07ce5e6f0cfa0..36e169e824364 100644 --- a/base/pcre.jl +++ b/base/pcre.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## low-level pcre2 interface ## diff --git a/base/permuteddimsarray.jl b/base/permuteddimsarray.jl index e93cbfe67c949..a21f869456d9e 100644 --- a/base/permuteddimsarray.jl +++ b/base/permuteddimsarray.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module PermutedDimsArrays diff --git a/base/pkg/cache.jl b/base/pkg/cache.jl index c3d15899f8bb7..b4535579cd636 100644 --- a/base/pkg/cache.jl +++ b/base/pkg/cache.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Cache diff --git a/base/pkg/dir.jl b/base/pkg/dir.jl index 2eb9a5312aaed..76b8b57d21bc4 100644 --- a/base/pkg/dir.jl +++ b/base/pkg/dir.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Dir diff --git a/base/pkg/entry.jl b/base/pkg/entry.jl index b794d25012f3b..926f77c83ed5d 100644 --- a/base/pkg/entry.jl +++ b/base/pkg/entry.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Entry diff --git a/base/pkg/pkg.jl b/base/pkg/pkg.jl index 53d23f5dd61e0..af1a8ec27e31d 100644 --- a/base/pkg/pkg.jl +++ b/base/pkg/pkg.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Pkg diff --git a/base/pkg/query.jl b/base/pkg/query.jl index 60af3e120715f..5f8eee36d6721 100644 --- a/base/pkg/query.jl +++ b/base/pkg/query.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Query diff --git a/base/pkg/read.jl b/base/pkg/read.jl index a9e9144c8a313..dc4046fa3db92 100644 --- a/base/pkg/read.jl +++ b/base/pkg/read.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Read diff --git a/base/pkg/reqs.jl b/base/pkg/reqs.jl index 61a108cf44881..286f64d481ed5 100644 --- a/base/pkg/reqs.jl +++ b/base/pkg/reqs.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Reqs diff --git a/base/pkg/resolve.jl b/base/pkg/resolve.jl index ddb18f46c0b22..8cd453fa20d25 100644 --- a/base/pkg/resolve.jl +++ b/base/pkg/resolve.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Resolve diff --git a/base/pkg/resolve/fieldvalue.jl b/base/pkg/resolve/fieldvalue.jl index ca64085644101..584a3d295e62a 100644 --- a/base/pkg/resolve/fieldvalue.jl +++ b/base/pkg/resolve/fieldvalue.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module FieldValues diff --git a/base/pkg/resolve/interface.jl b/base/pkg/resolve/interface.jl index 67eda62e39ddc..c29b758c8a200 100644 --- a/base/pkg/resolve/interface.jl +++ b/base/pkg/resolve/interface.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module PkgToMaxSumInterface diff --git a/base/pkg/resolve/maxsum.jl b/base/pkg/resolve/maxsum.jl index 55c02a2925a9c..a688b15e3f5af 100644 --- a/base/pkg/resolve/maxsum.jl +++ b/base/pkg/resolve/maxsum.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module MaxSum diff --git a/base/pkg/resolve/versionweight.jl b/base/pkg/resolve/versionweight.jl index 4b93f257f94cd..cca61bfa151bd 100644 --- a/base/pkg/resolve/versionweight.jl +++ b/base/pkg/resolve/versionweight.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module VersionWeights diff --git a/base/pkg/types.jl b/base/pkg/types.jl index 7434d84817eb7..1e55a0b308694 100644 --- a/base/pkg/types.jl +++ b/base/pkg/types.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Types diff --git a/base/pkg/write.jl b/base/pkg/write.jl index c762b5598b3a5..635ef6a677798 100644 --- a/base/pkg/write.jl +++ b/base/pkg/write.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Write diff --git a/base/pointer.jl b/base/pointer.jl index 20f3b05c40785..2b27fae3753ca 100644 --- a/base/pointer.jl +++ b/base/pointer.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license """ Ptr{T} diff --git a/base/poll.jl b/base/poll.jl index 6cda7fa4ad8ca..a670a10f0a979 100644 --- a/base/poll.jl +++ b/base/poll.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # filesystem operations diff --git a/base/precompile.jl b/base/precompile.jl index 01f9470161758..2342279959196 100644 --- a/base/precompile.jl +++ b/base/precompile.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Steps to regenerate this file: # 1. Remove all `precompile` calls diff --git a/base/printf.jl b/base/printf.jl index 738b758400f44..c5df8f402b0b0 100644 --- a/base/printf.jl +++ b/base/printf.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Printf using Base.Grisu diff --git a/base/process.jl b/base/process.jl index cd15390ca42d6..fa1cce13f27a9 100644 --- a/base/process.jl +++ b/base/process.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license abstract type AbstractCmd end diff --git a/base/profile.jl b/base/profile.jl index 7ec228c19c427..a5afcb3fdfb62 100644 --- a/base/profile.jl +++ b/base/profile.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Profile diff --git a/base/promotion.jl b/base/promotion.jl index f7918422262e8..4fbe3f7068a2c 100644 --- a/base/promotion.jl +++ b/base/promotion.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## type join (closest common ancestor, or least upper bound) ## diff --git a/base/random.jl b/base/random.jl index 58588042b8d13..62e1433cef42d 100644 --- a/base/random.jl +++ b/base/random.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Random diff --git a/base/range.jl b/base/range.jl index 393b8cd9d3dd7..06e746ba5eeda 100644 --- a/base/range.jl +++ b/base/range.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license colon(a::Real, b::Real) = colon(promote(a,b)...) diff --git a/base/rational.jl b/base/rational.jl index fa13a8e14e980..062d2bccc5e7f 100644 --- a/base/rational.jl +++ b/base/rational.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license struct Rational{T<:Integer} <: Real num::T diff --git a/base/reduce.jl b/base/reduce.jl index 7c13c8cc104ae..a5996af9b5dee 100644 --- a/base/reduce.jl +++ b/base/reduce.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## reductions ## diff --git a/base/reducedim.jl b/base/reducedim.jl index 837fa564c248c..5385a8c2c5fed 100644 --- a/base/reducedim.jl +++ b/base/reducedim.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## Functions to compute the reduced shape diff --git a/base/reflection.jl b/base/reflection.jl index 3d4b35c7bc3f4..77de6bdf36cb6 100644 --- a/base/reflection.jl +++ b/base/reflection.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # name and module reflection diff --git a/base/refpointer.jl b/base/refpointer.jl index 11ef66c0d3148..bf094e3f01220 100644 --- a/base/refpointer.jl +++ b/base/refpointer.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license """ Ref{T} diff --git a/base/regex.jl b/base/regex.jl index e2161c90874f3..775d610131af9 100644 --- a/base/regex.jl +++ b/base/regex.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## object-oriented Regex interface ## diff --git a/base/replutil.jl b/base/replutil.jl index d79c32263bc4c..2923e8db186fa 100644 --- a/base/replutil.jl +++ b/base/replutil.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # fallback text/plain representation of any type: show(io::IO, ::MIME"text/plain", x) = show(io, x) diff --git a/base/reshapedarray.jl b/base/reshapedarray.jl index 3b8aff398b15a..ac9f4468d2738 100644 --- a/base/reshapedarray.jl +++ b/base/reshapedarray.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.MultiplicativeInverses: SignedMultiplicativeInverse diff --git a/base/rounding.jl b/base/rounding.jl index 984848b1b14f4..526510a6b2c4b 100644 --- a/base/rounding.jl +++ b/base/rounding.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Rounding diff --git a/base/serialize.jl b/base/serialize.jl index df85a9659874b..fbdf533283f8f 100644 --- a/base/serialize.jl +++ b/base/serialize.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Serializer diff --git a/base/set.jl b/base/set.jl index 63cc3b83f67ae..f3f6a736c6c1c 100644 --- a/base/set.jl +++ b/base/set.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license mutable struct Set{T} <: AbstractSet{T} dict::Dict{T,Void} diff --git a/base/sharedarray.jl b/base/sharedarray.jl index 1e41b2e10e9ad..5ad6ec9c4ad24 100644 --- a/base/sharedarray.jl +++ b/base/sharedarray.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import .Serializer: serialize_cycle_header, serialize_type, writetag, UNDEFREF_TAG diff --git a/base/shell.jl b/base/shell.jl index 234d6a8428a5f..b103a22472781 100644 --- a/base/shell.jl +++ b/base/shell.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## shell-like command parsing ## diff --git a/base/show.jl b/base/show.jl index fc81db8fb4018..fa9277feab17b 100644 --- a/base/show.jl +++ b/base/show.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license print(io::IO, s::Symbol) = (write(io,s); nothing) diff --git a/base/simdloop.jl b/base/simdloop.jl index 9f1946e35ee15..d83f51916acd5 100644 --- a/base/simdloop.jl +++ b/base/simdloop.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Support for @simd for diff --git a/base/socket.jl b/base/socket.jl index 853236673f1b8..ed990e9945d7e 100644 --- a/base/socket.jl +++ b/base/socket.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## IP ADDRESS HANDLING ## abstract type IPAddr end diff --git a/base/sort.jl b/base/sort.jl index 6f014276f09ee..f323d636b83c8 100644 --- a/base/sort.jl +++ b/base/sort.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Sort diff --git a/base/sparse/abstractsparse.jl b/base/sparse/abstractsparse.jl index 9e7281e392f59..e2f0cd9000f63 100644 --- a/base/sparse/abstractsparse.jl +++ b/base/sparse/abstractsparse.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license abstract type AbstractSparseArray{Tv,Ti,N} <: AbstractArray{Tv,N} end diff --git a/base/sparse/cholmod.jl b/base/sparse/cholmod.jl index 92aaaee905941..64eed3488df84 100644 --- a/base/sparse/cholmod.jl +++ b/base/sparse/cholmod.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module CHOLMOD diff --git a/base/sparse/cholmod_h.jl b/base/sparse/cholmod_h.jl index f0e7a4d44ae2c..477ab4d07e3f3 100644 --- a/base/sparse/cholmod_h.jl +++ b/base/sparse/cholmod_h.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## CHOLMOD const TRUE = Int32(1) diff --git a/base/sparse/higherorderfns.jl b/base/sparse/higherorderfns.jl index 5f8a4f477ddec..3e70ec228410a 100644 --- a/base/sparse/higherorderfns.jl +++ b/base/sparse/higherorderfns.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module HigherOrderFns diff --git a/base/sparse/linalg.jl b/base/sparse/linalg.jl index 4b27f8fc92410..7a3aab3044eb0 100644 --- a/base/sparse/linalg.jl +++ b/base/sparse/linalg.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import Base.LinAlg: checksquare diff --git a/base/sparse/sparse.jl b/base/sparse/sparse.jl index 2425d02dae46d..23e7c8c54ec6f 100644 --- a/base/sparse/sparse.jl +++ b/base/sparse/sparse.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module SparseArrays diff --git a/base/sparse/sparsematrix.jl b/base/sparse/sparsematrix.jl index bb75c38414ee5..8ed7628cd4c95 100644 --- a/base/sparse/sparsematrix.jl +++ b/base/sparse/sparsematrix.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Compressed sparse columns data structure # Assumes that no zeros are stored in the data structure diff --git a/base/sparse/sparsevector.jl b/base/sparse/sparsevector.jl index fa351eb199582..1d7e0a17e26d6 100644 --- a/base/sparse/sparsevector.jl +++ b/base/sparse/sparsevector.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ### Common definitions diff --git a/base/sparse/spqr.jl b/base/sparse/spqr.jl index 0f4bb9a65b772..9e2910422915f 100644 --- a/base/sparse/spqr.jl +++ b/base/sparse/spqr.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module SPQR diff --git a/base/sparse/umfpack.jl b/base/sparse/umfpack.jl index 8e1f07c634bb5..a3deb6a37a567 100644 --- a/base/sparse/umfpack.jl +++ b/base/sparse/umfpack.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module UMFPACK diff --git a/base/sparse/umfpack_h.jl b/base/sparse/umfpack_h.jl index c4abdae0a5bf8..ec3a7c5382a42 100644 --- a/base/sparse/umfpack_h.jl +++ b/base/sparse/umfpack_h.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## UMFPACK diff --git a/base/special/gamma.jl b/base/special/gamma.jl index 6758530a7e4f6..778a00ae62391 100644 --- a/base/special/gamma.jl +++ b/base/special/gamma.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license gamma(x::Float64) = nan_dom_err(ccall((:tgamma,libm), Float64, (Float64,), x), x) gamma(x::Float32) = nan_dom_err(ccall((:tgammaf,libm), Float32, (Float32,), x), x) diff --git a/base/special/log.jl b/base/special/log.jl index dc3473828335b..d317101794155 100644 --- a/base/special/log.jl +++ b/base/special/log.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Implementation of # "Table-driven Implementation of the Logarithm Function in IEEE Floating-point Arithmetic" diff --git a/base/special/trig.jl b/base/special/trig.jl index 80a0d9073bf61..2ca08479a9f49 100644 --- a/base/special/trig.jl +++ b/base/special/trig.jl @@ -1,5 +1,5 @@ # This file is a part of Julia. Except for the *_kernel functions (see below), -# license is MIT: http://julialang.org/license +# license is MIT: https://julialang.org/license struct DoubleFloat64 hi::Float64 diff --git a/base/stacktraces.jl b/base/stacktraces.jl index cdff4d5a295e9..5b5fab65731bb 100644 --- a/base/stacktraces.jl +++ b/base/stacktraces.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module StackTraces diff --git a/base/stat.jl b/base/stat.jl index 3a54b213cea53..3cf4c1664633b 100644 --- a/base/stat.jl +++ b/base/stat.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # filesystem operations diff --git a/base/statistics.jl b/base/statistics.jl index 073638f3a0630..abcb811c62c4a 100644 --- a/base/statistics.jl +++ b/base/statistics.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ##### mean ##### diff --git a/base/stream.jl b/base/stream.jl index b695ac664cb8a..9f08ccb8f2196 100644 --- a/base/stream.jl +++ b/base/stream.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import .Libc: RawFD, dup if is_windows() diff --git a/base/strings/basic.jl b/base/strings/basic.jl index 4a6c4fa17c73b..df3e4bdf6db81 100644 --- a/base/strings/basic.jl +++ b/base/strings/basic.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## core string functions ## diff --git a/base/strings/errors.jl b/base/strings/errors.jl index 8f80e5b1f8c30..2d3aa42455286 100644 --- a/base/strings/errors.jl +++ b/base/strings/errors.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## Error messages for Unicode / UTF support diff --git a/base/strings/io.jl b/base/strings/io.jl index 124a865daa00e..281b2149bac60 100644 --- a/base/strings/io.jl +++ b/base/strings/io.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## core text I/O ## diff --git a/base/strings/search.jl b/base/strings/search.jl index 16ee1019eadc1..c57b3768a4888 100644 --- a/base/strings/search.jl +++ b/base/strings/search.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license const Chars = Union{Char,Tuple{Vararg{Char}},AbstractVector{Char},Set{Char}} diff --git a/base/strings/string.jl b/base/strings/string.jl index 4573045acfb56..a78f2372e77e2 100644 --- a/base/strings/string.jl +++ b/base/strings/string.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license const ByteArray = Union{Vector{UInt8},Vector{Int8}} diff --git a/base/strings/strings.jl b/base/strings/strings.jl index 2f175900e37d5..bc1f302b7a6ad 100644 --- a/base/strings/strings.jl +++ b/base/strings/strings.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license include("strings/errors.jl") include("strings/types.jl") diff --git a/base/strings/types.jl b/base/strings/types.jl index a57345e8600b6..a49d40d9d17f4 100644 --- a/base/strings/types.jl +++ b/base/strings/types.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # SubString and RevString types diff --git a/base/strings/utf8proc.jl b/base/strings/utf8proc.jl index 078ab703e2939..b60e9c6d9936d 100644 --- a/base/strings/utf8proc.jl +++ b/base/strings/utf8proc.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Various Unicode functionality from the utf8proc library module UTF8proc diff --git a/base/strings/util.jl b/base/strings/util.jl index d4c1431b072ba..9d24e0da0667e 100644 --- a/base/strings/util.jl +++ b/base/strings/util.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # starts with and ends with predicates diff --git a/base/subarray.jl b/base/subarray.jl index 5c1d6b9e7263c..fc24afe113f29 100644 --- a/base/subarray.jl +++ b/base/subarray.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license abstract type AbstractCartesianIndex{N} end # This is a hacky forward declaration for CartesianIndex const ViewIndex = Union{Real, AbstractArray} diff --git a/base/summarysize.jl b/base/summarysize.jl index 7fd7a6e71c304..a7c0e216e19b1 100644 --- a/base/summarysize.jl +++ b/base/summarysize.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license struct SummarySize seen::ObjectIdDict diff --git a/base/sysimg.jl b/base/sysimg.jl index e25ce641fa6aa..d9851dbf30a0d 100644 --- a/base/sysimg.jl +++ b/base/sysimg.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license baremodule Base diff --git a/base/sysinfo.jl b/base/sysinfo.jl index 9e2655ec96818..fb9119dd668b5 100644 --- a/base/sysinfo.jl +++ b/base/sysinfo.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Sys diff --git a/base/task.jl b/base/task.jl index a25bc78cd65b6..90d45576e5389 100644 --- a/base/task.jl +++ b/base/task.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## basic task functions and TLS diff --git a/base/test.jl b/base/test.jl index d8ad274f4c576..e7c6e5afe75ce 100644 --- a/base/test.jl +++ b/base/test.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license """ Simple unit testing functionality: diff --git a/base/threadcall.jl b/base/threadcall.jl index c6dcfaedef2ba..0fff4e3d5c31d 100644 --- a/base/threadcall.jl +++ b/base/threadcall.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license const max_ccall_threads = parse(Int, get(ENV, "UV_THREADPOOL_SIZE", "4")) const thread_notifiers = [Nullable{Condition}() for i in 1:max_ccall_threads] diff --git a/base/threadingconstructs.jl b/base/threadingconstructs.jl index 7d013ed2e30bd..740ddaf1ba9e7 100644 --- a/base/threadingconstructs.jl +++ b/base/threadingconstructs.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license export threadid, nthreads, @threads diff --git a/base/threads.jl b/base/threads.jl index ef9f6957fa3b7..d36cade097735 100644 --- a/base/threads.jl +++ b/base/threads.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Threads diff --git a/base/traits.jl b/base/traits.jl index da5de84cf58c0..b9643f7ba6742 100644 --- a/base/traits.jl +++ b/base/traits.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## numeric/object traits # trait for objects that have an ordering diff --git a/base/tuple.jl b/base/tuple.jl index 863240034483f..ce329a3fb1e98 100644 --- a/base/tuple.jl +++ b/base/tuple.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Document NTuple here where we have everything needed for the doc system """ diff --git a/base/twiceprecision.jl b/base/twiceprecision.jl index beb5383301d59..646705ea4e511 100644 --- a/base/twiceprecision.jl +++ b/base/twiceprecision.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Twice-precision arithmetic. diff --git a/base/util.jl b/base/util.jl index 116ee5704b635..4ac8709967eeb 100644 --- a/base/util.jl +++ b/base/util.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # timing diff --git a/base/version.jl b/base/version.jl index 39f7bee2ef62c..480faa91796e8 100644 --- a/base/version.jl +++ b/base/version.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## semantic version numbers (http://semver.org) @@ -255,7 +255,7 @@ function banner(io::IO = STDOUT) print(io,""" $(d3)_$(tx) $(d1)_$(tx) $(jl)_$(tx) $(d2)_$(d3)(_)$(d4)_$(tx) | A fresh approach to technical computing - $(d1)(_)$(jl) | $(d2)(_)$(tx) $(d4)(_)$(tx) | Documentation: http://docs.julialang.org + $(d1)(_)$(jl) | $(d2)(_)$(tx) $(d4)(_)$(tx) | Documentation: https://docs.julialang.org $(jl)_ _ _| |_ __ _$(tx) | Type \"?help\" for help. $(jl)| | | | | | |/ _` |$(tx) | $(jl)| | |_| | | | (_| |$(tx) | Version $(VERSION)$(commit_date) @@ -267,7 +267,7 @@ function banner(io::IO = STDOUT) print(io,""" _ _ _ _(_)_ | A fresh approach to technical computing - (_) | (_) (_) | Documentation: http://docs.julialang.org + (_) | (_) (_) | Documentation: https://docs.julialang.org _ _ _| |_ __ _ | Type \"?help\" for help. | | | | | | |/ _` | | | | |_| | | | (_| | | Version $(VERSION)$(commit_date) diff --git a/base/version_git.sh b/base/version_git.sh index 35f54e92bf177..5335c8f8abed5 100644 --- a/base/version_git.sh +++ b/base/version_git.sh @@ -1,5 +1,5 @@ #!/bin/sh -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # This file collects git info and create a julia file with the GIT_VERSION_INFO struct diff --git a/base/weakkeydict.jl b/base/weakkeydict.jl index 232c4d88ac7fd..9c1c5279553d0 100644 --- a/base/weakkeydict.jl +++ b/base/weakkeydict.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # weak key dictionaries diff --git a/contrib/add_license_to_files.jl b/contrib/add_license_to_files.jl index 2bfc43da2d934..2dd7020d54dcb 100644 --- a/contrib/add_license_to_files.jl +++ b/contrib/add_license_to_files.jl @@ -70,7 +70,7 @@ const ext_prefix = Dict([ (".cpp", "\/\/ "), ]) -const new_license = "This file is a part of Julia. License is MIT: http://julialang.org/license" +const new_license = "This file is a part of Julia. License is MIT: https://julialang.org/license" # Old License text if such should be first removed - or empty string const old_license = "" diff --git a/contrib/build_sysimg.jl b/contrib/build_sysimg.jl index 3fa8efafdb7f6..2805695612273 100644 --- a/contrib/build_sysimg.jl +++ b/contrib/build_sysimg.jl @@ -1,5 +1,5 @@ #!/usr/bin/env julia -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Build a system image binary at sysimg_path.dlext. Allow insertion of a userimg via # userimg_path. If sysimg_path.dlext is currently loaded into memory, don't continue diff --git a/contrib/check-whitespace.sh b/contrib/check-whitespace.sh index fc085e935e7d9..c380d7bdd2969 100755 --- a/contrib/check-whitespace.sh +++ b/contrib/check-whitespace.sh @@ -1,5 +1,5 @@ #!/bin/sh -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Check for trailing white space in source files; # report an error if so diff --git a/contrib/commit-name.sh b/contrib/commit-name.sh index 1b81c846b8a5e..7a139eee276a5 100755 --- a/contrib/commit-name.sh +++ b/contrib/commit-name.sh @@ -1,5 +1,5 @@ #!/bin/sh -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Needs to be run from a julia repo clone # First argument (optional) is a ref to the commit diff --git a/contrib/download_cmake.sh b/contrib/download_cmake.sh index 73105af6fb83e..d122e1e0f07d4 100755 --- a/contrib/download_cmake.sh +++ b/contrib/download_cmake.sh @@ -1,5 +1,5 @@ #!/bin/sh -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Script to download newest version of cmake on linux (or mac) # saves you the trouble of compiling it if you don't have root diff --git a/contrib/filterArgs.sh b/contrib/filterArgs.sh index 658a21d3d7eb9..823745e004e6e 100755 --- a/contrib/filterArgs.sh +++ b/contrib/filterArgs.sh @@ -1,5 +1,5 @@ #!/bin/sh -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Loop over all command line arguments for i in "$@"; do diff --git a/contrib/fixup-libgfortran.sh b/contrib/fixup-libgfortran.sh index a7ee7025b9a7f..4f426e9e7d647 100755 --- a/contrib/fixup-libgfortran.sh +++ b/contrib/fixup-libgfortran.sh @@ -1,5 +1,5 @@ #!/bin/sh -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Run as: fixup-libgfortran.sh <$private_libdir> diff --git a/contrib/fixup-libstdc++.sh b/contrib/fixup-libstdc++.sh index d1953bf09767e..ee84094169b61 100755 --- a/contrib/fixup-libstdc++.sh +++ b/contrib/fixup-libstdc++.sh @@ -1,5 +1,5 @@ #!/bin/sh -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Run as: fixup-libstdc++.sh diff --git a/contrib/install.sh b/contrib/install.sh index 702b207fbb5aa..f4e11b6089efb 100755 --- a/contrib/install.sh +++ b/contrib/install.sh @@ -1,5 +1,5 @@ #!/bin/sh -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Usage: very similar to `install` # install.sh 755 src1 src2 ... dest diff --git a/contrib/julia-config.jl b/contrib/julia-config.jl index a61727213c187..8b8ae445d64d1 100755 --- a/contrib/julia-config.jl +++ b/contrib/julia-config.jl @@ -1,5 +1,5 @@ #!/usr/bin/env julia -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license const options = [ diff --git a/contrib/julia.appdata.xml b/contrib/julia.appdata.xml index aa36b84bf2a65..576d88358ee7c 100644 --- a/contrib/julia.appdata.xml +++ b/contrib/julia.appdata.xml @@ -21,8 +21,8 @@

- http://julialang.org/images/julia-gnome.png + https://julialang.org/images/julia-gnome.png - http://julialang.org/ + https://julialang.org/ julia-dev@googlegroups.com diff --git a/contrib/julia.lang b/contrib/julia.lang index 95fed9c9c0fd5..80dff29ce6057 100644 --- a/contrib/julia.lang +++ b/contrib/julia.lang @@ -104,7 +104,7 @@ nothing - + ARGS LOAD_PATH CPU_CORES @@ -121,7 +121,7 @@ ANY - + @@ -135,7 +135,7 @@ - + \(|\) | @@ -185,7 +185,7 @@ using - + ` ` @@ -214,7 +214,7 @@ - + Base Core Main diff --git a/contrib/mac/juliarc.jl b/contrib/mac/juliarc.jl index da5bc9a95dd4c..066a50cda9e7a 100644 --- a/contrib/mac/juliarc.jl +++ b/contrib/mac/juliarc.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Set up environment for Julia OSX binary distribution let diff --git a/contrib/mac/mac-gtk.sh b/contrib/mac/mac-gtk.sh index f17f106c372d6..86be8aa8e1670 100644 --- a/contrib/mac/mac-gtk.sh +++ b/contrib/mac/mac-gtk.sh @@ -1,5 +1,5 @@ #!/bin/sh -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # This script will attempt to download and build GTK+-3, # including dependencies, in ~/gtk (also puts stuff in diff --git a/contrib/prepare_release.sh b/contrib/prepare_release.sh index f0c1dd037b2cd..9cd2b96a1b167 100755 --- a/contrib/prepare_release.sh +++ b/contrib/prepare_release.sh @@ -1,5 +1,5 @@ #!/bin/sh -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # script to prepare binaries and source tarballs for a Julia release # aka "bucket dance" julianightlies -> julialang diff --git a/contrib/relative_path.sh b/contrib/relative_path.sh index 34e526b7f1e31..ebb3095a7e45f 100755 --- a/contrib/relative_path.sh +++ b/contrib/relative_path.sh @@ -1,5 +1,5 @@ #!/bin/sh -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # both $1 and $2 are absolute paths beginning with / # returns relative path to $2/$target from $1/$source diff --git a/contrib/stringreplace.c b/contrib/stringreplace.c index 8ebee3fac7430..8067132818151 100644 --- a/contrib/stringreplace.c +++ b/contrib/stringreplace.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include diff --git a/contrib/travis_fastfail.sh b/contrib/travis_fastfail.sh index 6eb349a49b1ff..410cbe2bccafc 100755 --- a/contrib/travis_fastfail.sh +++ b/contrib/travis_fastfail.sh @@ -1,5 +1,5 @@ #!/bin/sh -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license curlhdr="Accept: application/vnd.travis-ci.2+json" endpoint="https://api.travis-ci.org/repos/$TRAVIS_REPO_SLUG" diff --git a/contrib/windows/get_toolchain.sh b/contrib/windows/get_toolchain.sh index 09155935fb1cb..290a18195ef58 100755 --- a/contrib/windows/get_toolchain.sh +++ b/contrib/windows/get_toolchain.sh @@ -1,5 +1,5 @@ #!/bin/sh -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # download mingw-w64 compilers from opensuse build service, usage: # ./get_toolchain.sh 64 diff --git a/contrib/windows/msys_build.sh b/contrib/windows/msys_build.sh index 500171f72c4d7..36dd0eaeb7762 100755 --- a/contrib/windows/msys_build.sh +++ b/contrib/windows/msys_build.sh @@ -1,5 +1,5 @@ #!/bin/sh -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Script to compile Windows Julia, using binary dependencies from nightlies. # Should work in MSYS assuming 7zip is installed and on the path, diff --git a/contrib/windows/winrpm.sh b/contrib/windows/winrpm.sh index a329220c03370..ef5ae6e227b20 100755 --- a/contrib/windows/winrpm.sh +++ b/contrib/windows/winrpm.sh @@ -1,5 +1,5 @@ #!/bin/sh -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # build-time mini version of WinRPM, usage: # ./winrpm.sh http://download.opensuse.org/repositories/windows:/mingw:/win64/openSUSE_13.2/ mingw64-zlib1 diff --git a/doc/README.md b/doc/README.md index 0d55ec84c9b05..19a732f8800ba 100644 --- a/doc/README.md +++ b/doc/README.md @@ -1,6 +1,6 @@ # Julia Documentation README -Julia's documentation is written in Markdown. A reference of all supported syntax can be found in the [manual](http://docs.julialang.org/en/latest/manual/documentation/#markdown-syntax). All documentation can be found in the Markdown files in `doc/src/` and the docstrings in Julia source files in `base/`. +Julia's documentation is written in Markdown. A reference of all supported syntax can be found in the [manual](https://docs.julialang.org/en/latest/manual/documentation/#markdown-syntax). All documentation can be found in the Markdown files in `doc/src/` and the docstrings in Julia source files in `base/`. ## Requirements diff --git a/doc/man/julia.1 b/doc/man/julia.1 index ab01e94afe746..cc77d36e07969 100644 --- a/doc/man/julia.1 +++ b/doc/man/julia.1 @@ -23,14 +23,14 @@ .TH JULIA 1 2013-12-10 Julia "Julia Programmers' Reference Guide" -.\" from the front page of http://julialang.org/ +.\" from the front page of https://julialang.org/ .SH NAME julia - high-level, high-performance dynamic programming language for technical computing .SH SYNOPSIS julia [option] [program] [args..] -.\" Taken almost verbatim from the front page of http://julialang.org/ +.\" Taken almost verbatim from the front page of https://julialang.org/ .SH DESCRIPTION Julia is a high-level, high-performance dynamic programming language for technical computing, with syntax that is familiar to users @@ -47,7 +47,7 @@ by defining functions and overloading them for different combinations of argument types, which can also be user-defined. For a more in-depth discussion of the rationale and advantages of Julia over other systems, please see the online manual: -http://docs.julialang.org/en/latest/manual/ +https://docs.julialang.org/en/latest/manual/ If a Julia source file is given as a \fIprogram\fP (optionally followed by arguments in \fIargs\fP) Julia will execute the program and exit. diff --git a/doc/src/devdocs/cartesian.md b/doc/src/devdocs/cartesian.md index 01ca7f265e2a0..3d74c1acbaf6c 100644 --- a/doc/src/devdocs/cartesian.md +++ b/doc/src/devdocs/cartesian.md @@ -63,7 +63,7 @@ julia> macroexpand(:(@nref 2 A i)) The first argument to both of these macros is the number of expressions, which must be an integer. When you're writing a function that you intend to work in multiple dimensions, this may not be something you want to hard-code. If you're writing code that you need to work with older Julia -versions, currently you should use the `@ngenerate` macro described in [an older version of this documentation](http://docs.julialang.org/en/release-0.3/devdocs/cartesian/#supplying-the-number-of-expressions). +versions, currently you should use the `@ngenerate` macro described in [an older version of this documentation](https://docs.julialang.org/en/release-0.3/devdocs/cartesian/#supplying-the-number-of-expressions). Starting in Julia 0.4-pre, the recommended approach is to use a `@generated function`. Here's an example: diff --git a/doc/src/manual/arrays.md b/doc/src/manual/arrays.md index 2ac46480a4369..e8cfbfc06e500 100644 --- a/doc/src/manual/arrays.md +++ b/doc/src/manual/arrays.md @@ -376,7 +376,7 @@ multidimensional index. When combined with other indexing forms and iterators that yield `CartesianIndex`es, however, this can lead directly to very elegant and efficient code. See [Iteration](@ref) below, and for some more advanced examples, see [this blog post on multidimensional algorithms and -iteration](http://julialang.org/blog/2016/02/iteration). +iteration](https://julialang.org/blog/2016/02/iteration). Arrays of `CartesianIndex{N}` are also supported. They represent a collection of scalar indices that each span `N` dimensions, enabling a form of indexing diff --git a/doc/src/manual/calling-c-and-fortran-code.md b/doc/src/manual/calling-c-and-fortran-code.md index 17d00fbc95f9b..8c9c83c74f562 100644 --- a/doc/src/manual/calling-c-and-fortran-code.md +++ b/doc/src/manual/calling-c-and-fortran-code.md @@ -973,7 +973,7 @@ notification to the condition. ## More About Callbacks -For more details on how to pass callbacks to C libraries, see this [blog post](http://julialang.org/blog/2013/05/callback). +For more details on how to pass callbacks to C libraries, see this [blog post](https://julialang.org/blog/2013/05/callback). ## C++ diff --git a/doc/src/manual/dates.md b/doc/src/manual/dates.md index 4fbd3b953f97a..ce0fbea3f7f3f 100644 --- a/doc/src/manual/dates.md +++ b/doc/src/manual/dates.md @@ -559,7 +559,7 @@ julia> round(DateTime(2016, 8, 6, 20, 15), Dates.Day) Unlike the numeric [`round()`](@ref) method, which breaks ties toward the even number by default, the [`TimeType`](@ref)[`round()`](@ref) method uses the `RoundNearestTiesUp` rounding mode. (It's difficult to guess what breaking ties to nearest "even" [`TimeType`](@ref) would entail.) Further -details on the available `RoundingMode` s can be found in the [API reference](http://docs.julialang.org/en/latest/stdlib/dates.html). +details on the available `RoundingMode` s can be found in the [API reference](https://docs.julialang.org/en/latest/stdlib/dates.html). Rounding should generally behave as expected, but there are a few cases in which the expected behaviour is not obvious. @@ -624,5 +624,5 @@ will result in the months field having an odd value. Because both months and yea an irregular number of days, whether rounding to an even number of days will result in an even value in the days field is uncertain. -See the [API reference](http://docs.julialang.org/en/latest/stdlib/dates.html) for additional information +See the [API reference](https://docs.julialang.org/en/latest/stdlib/dates.html) for additional information on methods exported from the `Dates` module. diff --git a/doc/src/manual/faq.md b/doc/src/manual/faq.md index 9d1ca85aea171..630131dc1ed57 100644 --- a/doc/src/manual/faq.md +++ b/doc/src/manual/faq.md @@ -710,7 +710,7 @@ Finally, you may also consider building Julia from source for yourself. This opt for those individuals who are comfortable at the command line, or interested in learning. If this describes you, you may also be interested in reading our [guidelines for contributing](https://github.com/JuliaLang/julia/blob/master/CONTRIBUTING.md). -Links to each of these download types can be found on the download page at [http://julialang.org/downloads/](http://julialang.org/downloads/). +Links to each of these download types can be found on the download page at [https://julialang.org/downloads/](https://julialang.org/downloads/). Note that not all versions of Julia are available for all platforms. ### When are deprecated functions removed? diff --git a/doc/src/manual/getting-started.md b/doc/src/manual/getting-started.md index 8dc9b7d9e53fc..d41d6b1bdfa03 100644 --- a/doc/src/manual/getting-started.md +++ b/doc/src/manual/getting-started.md @@ -1,7 +1,7 @@ # Getting Started Julia installation is straightforward, whether using precompiled binaries or compiling from source. -Download and install Julia by following the instructions at [http://julialang.org/downloads/](http://julialang.org/downloads/). +Download and install Julia by following the instructions at [https://julialang.org/downloads/](https://julialang.org/downloads/). The easiest way to learn and experiment with Julia is by starting an interactive session (also known as a read-eval-print loop or "repl") by double-clicking the Julia executable or running @@ -11,7 +11,7 @@ known as a read-eval-print loop or "repl") by double-clicking the Julia executab $ julia _ _ _ _(_)_ | A fresh approach to technical computing - (_) | (_) (_) | Documentation: http://docs.julialang.org + (_) | (_) (_) | Documentation: https://docs.julialang.org _ _ _| |_ __ _ | Type "?help" for help. | | | | | | |/ _` | | | | |_| | | | (_| | | Version 0.5.0-dev+2440 (2016-02-01 02:22 UTC) @@ -151,5 +151,5 @@ with Julia: * [Hands-on Julia](https://github.com/dpsanders/hands_on_julia) * [Tutorial for Homer Reid's numerical analysis class](http://homerreid.dyndns.org/teaching/18.330/JuliaProgramming.shtml) * [An introductory presentation](https://raw.githubusercontent.com/ViralBShah/julia-presentations/master/Fifth-Elephant-2013/Fifth-Elephant-2013.pdf) - * [Videos from the Julia tutorial at MIT](http://julialang.org/blog/2013/03/julia-tutorial-MIT) + * [Videos from the Julia tutorial at MIT](https://julialang.org/blog/2013/03/julia-tutorial-MIT) * [YouTube videos from the JuliaCons](https://www.youtube.com/user/JuliaLanguage/playlists) diff --git a/doc/src/manual/interacting-with-julia.md b/doc/src/manual/interacting-with-julia.md index 8cbd8aa5a9ad5..f6834751d0131 100644 --- a/doc/src/manual/interacting-with-julia.md +++ b/doc/src/manual/interacting-with-julia.md @@ -10,7 +10,7 @@ on the executable: $ julia _ _ _ _(_)_ | A fresh approach to technical computing - (_) | (_) (_) | Documentation: http://docs.julialang.org + (_) | (_) (_) | Documentation: https://docs.julialang.org _ _ _| |_ __ _ | Type "?help" for help. | | | | | | |/ _` | | | | |_| | | | (_| | | Version 0.6.0-dev.2493 (2017-01-31 18:53 UTC) diff --git a/examples/ModInts.jl b/examples/ModInts.jl index d811722814843..a6894cd9bfa76 100644 --- a/examples/ModInts.jl +++ b/examples/ModInts.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module ModInts export ModInt diff --git a/examples/bubblesort.jl b/examples/bubblesort.jl index 8b39e6793ded4..6b7c244da1fa9 100644 --- a/examples/bubblesort.jl +++ b/examples/bubblesort.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import Base.Sort struct BubbleSortAlg <: Sort.Algorithm end diff --git a/examples/clustermanager/0mq/ZMQCM.jl b/examples/clustermanager/0mq/ZMQCM.jl index 4d89de0ed029c..d18e7b66d58d0 100644 --- a/examples/clustermanager/0mq/ZMQCM.jl +++ b/examples/clustermanager/0mq/ZMQCM.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using ZMQ diff --git a/examples/clustermanager/0mq/broker.jl b/examples/clustermanager/0mq/broker.jl index 6801700b762c5..87d2849046356 100644 --- a/examples/clustermanager/0mq/broker.jl +++ b/examples/clustermanager/0mq/broker.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license include("ZMQCM.jl") start_broker() diff --git a/examples/clustermanager/0mq/head.jl b/examples/clustermanager/0mq/head.jl index b8929c47889ff..ff0f718eb10b5 100644 --- a/examples/clustermanager/0mq/head.jl +++ b/examples/clustermanager/0mq/head.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license include("ZMQCM.jl") diff --git a/examples/clustermanager/0mq/worker.jl b/examples/clustermanager/0mq/worker.jl index e541044b009f2..bbb2ebca60a85 100644 --- a/examples/clustermanager/0mq/worker.jl +++ b/examples/clustermanager/0mq/worker.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license include("ZMQCM.jl") diff --git a/examples/clustermanager/simple/UnixDomainCM.jl b/examples/clustermanager/simple/UnixDomainCM.jl index f96c6e0fcf7a6..d1e27e2c6fa2c 100644 --- a/examples/clustermanager/simple/UnixDomainCM.jl +++ b/examples/clustermanager/simple/UnixDomainCM.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import Base: launch, manage, connect, exit diff --git a/examples/clustermanager/simple/head.jl b/examples/clustermanager/simple/head.jl index b42331ef9fcf1..cb16b8eb4d740 100644 --- a/examples/clustermanager/simple/head.jl +++ b/examples/clustermanager/simple/head.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license include("UnixDomainCM.jl") diff --git a/examples/clustermanager/simple/test_simple.jl b/examples/clustermanager/simple/test_simple.jl index faca7e168fc98..57e8a8a0f28fe 100644 --- a/examples/clustermanager/simple/test_simple.jl +++ b/examples/clustermanager/simple/test_simple.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license cmanpath = joinpath(dirname(@__FILE__), "UnixDomainCM.jl") include(cmanpath) diff --git a/examples/dictchannel.jl b/examples/dictchannel.jl index 83c8e1eebc70c..f1b9bfd68a6ca 100644 --- a/examples/dictchannel.jl +++ b/examples/dictchannel.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import Base: put!, wait, isready, take!, fetch diff --git a/examples/embedding/embedding.c b/examples/embedding/embedding.c index d0018e2e743c0..5bb70aadc04c2 100644 --- a/examples/embedding/embedding.c +++ b/examples/embedding/embedding.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include diff --git a/examples/juliatypes.jl b/examples/juliatypes.jl index efd924c18e828..09f6fc582947e 100644 --- a/examples/juliatypes.jl +++ b/examples/juliatypes.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import Base: convert, show diff --git a/examples/lru.jl b/examples/lru.jl index dd682ba5177e7..7fa54ff7eae9b 100644 --- a/examples/lru.jl +++ b/examples/lru.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module LRUExample # An LRU (Least Recently Used) cache is an associative data structure which diff --git a/examples/lru_test.jl b/examples/lru_test.jl index 62aa29fbf6a03..3370220719dcd 100644 --- a/examples/lru_test.jl +++ b/examples/lru_test.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using .LRUExample diff --git a/examples/ndgrid.jl b/examples/ndgrid.jl index 228c609ee7fa2..3bce2fce36d50 100644 --- a/examples/ndgrid.jl +++ b/examples/ndgrid.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ndgrid(v::AbstractVector) = copy(v) diff --git a/examples/queens.jl b/examples/queens.jl index 0e70d7d5eb895..418637a2be8db 100644 --- a/examples/queens.jl +++ b/examples/queens.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # n-queens (nqueens) solver, for nsquaresx-by-nsquaresy board diff --git a/examples/quine.jl b/examples/quine.jl index be60f8baca92a..aae47e3dbfdbf 100644 --- a/examples/quine.jl +++ b/examples/quine.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license -x="println(\"# This file is a part of Julia. License is MIT: http://julialang.org/license\\n\\nx=\$(repr(x))\\n\$x\")" -println("# This file is a part of Julia. License is MIT: http://julialang.org/license\n\nx=$(repr(x))\n$x") +x="println(\"# This file is a part of Julia. License is MIT: https://julialang.org/license\\n\\nx=\$(repr(x))\\n\$x\")" +println("# This file is a part of Julia. License is MIT: https://julialang.org/license\n\nx=$(repr(x))\n$x") diff --git a/examples/staged.jl b/examples/staged.jl index f65db5942687e..5b14f1d1117d3 100644 --- a/examples/staged.jl +++ b/examples/staged.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function add_method(gf, an, at, body) argexs = [Expr(Symbol("::"), an[i], at[i]) for i=1:length(an)] diff --git a/examples/time.jl b/examples/time.jl index 98f14449c8d81..45bd30ff9fce5 100644 --- a/examples/time.jl +++ b/examples/time.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module Time export TimeDelta diff --git a/examples/typetree.jl b/examples/typetree.jl index 08c05b946f7bd..1ca8714833291 100644 --- a/examples/typetree.jl +++ b/examples/typetree.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module TypeTrees ## diff --git a/examples/wordcount.jl b/examples/wordcount.jl index 601ffc3321a60..2011c885a1442 100644 --- a/examples/wordcount.jl +++ b/examples/wordcount.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # wordcount.jl # diff --git a/src/APInt-C.cpp b/src/APInt-C.cpp index c911c8586c459..9d7092d5338a5 100644 --- a/src/APInt-C.cpp +++ b/src/APInt-C.cpp @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include "llvm-version.h" #include diff --git a/src/APInt-C.h b/src/APInt-C.h index 2228c274cd11a..9db0094a81690 100644 --- a/src/APInt-C.h +++ b/src/APInt-C.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef APINT_C_H #define APINT_C_H diff --git a/src/abi_aarch64.cpp b/src/abi_aarch64.cpp index affdb93202001..346dbf1ec5276 100644 --- a/src/abi_aarch64.cpp +++ b/src/abi_aarch64.cpp @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license //===----------------------------------------------------------------------===// // diff --git a/src/abi_arm.cpp b/src/abi_arm.cpp index f2eb01d46745a..c89a24cd928ad 100644 --- a/src/abi_arm.cpp +++ b/src/abi_arm.cpp @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license //===----------------------------------------------------------------------===// // diff --git a/src/anticodegen.c b/src/anticodegen.c index 03e1178ea45d8..b40e9b7fb343a 100644 --- a/src/anticodegen.c +++ b/src/anticodegen.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include "julia.h" #include "julia_internal.h" diff --git a/src/array.c b/src/array.c index 51690ddb5774f..447fa98301ebd 100644 --- a/src/array.c +++ b/src/array.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* array constructors and primitives diff --git a/src/ast.c b/src/ast.c index b8845d2e26ca8..6b9ac084649ff 100644 --- a/src/ast.c +++ b/src/ast.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* AST diff --git a/src/builtin_proto.h b/src/builtin_proto.h index 0ac2a70c4b19b..001cf160ea15a 100644 --- a/src/builtin_proto.h +++ b/src/builtin_proto.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef BUILTIN_PROTO_H #define BUILTIN_PROTO_H diff --git a/src/builtins.c b/src/builtins.c index 12a1b7b43e70e..e117eae5dd54e 100644 --- a/src/builtins.c +++ b/src/builtins.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* implementations of built-in functions diff --git a/src/ccall.cpp b/src/ccall.cpp index 7623aefeaad78..150e68eeb586e 100644 --- a/src/ccall.cpp +++ b/src/ccall.cpp @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license // --- the ccall, cglobal, and llvm intrinsics --- diff --git a/src/ccalltest.c b/src/ccalltest.c index b8781567fcf40..91b804e0742b4 100644 --- a/src/ccalltest.c +++ b/src/ccalltest.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include diff --git a/src/cgmemmgr.cpp b/src/cgmemmgr.cpp index 95f0fbdfc17b5..bd74bada042ba 100644 --- a/src/cgmemmgr.cpp +++ b/src/cgmemmgr.cpp @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include "llvm-version.h" #include "platform.h" diff --git a/src/cgutils.cpp b/src/cgutils.cpp index 1561f7883f1eb..616b247533d41 100644 --- a/src/cgutils.cpp +++ b/src/cgutils.cpp @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license // utility procedures used in code generation diff --git a/src/codegen.cpp b/src/codegen.cpp index a9ea6ffed4584..f763f8285b29c 100644 --- a/src/codegen.cpp +++ b/src/codegen.cpp @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include "llvm-version.h" #include "platform.h" diff --git a/src/codegen_internal.h b/src/codegen_internal.h index 3932884788726..f2175991f4138 100644 --- a/src/codegen_internal.h +++ b/src/codegen_internal.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #if defined(USE_ORCJIT) && JL_LLVM_VERSION <= 30800 # include diff --git a/src/datatype.c b/src/datatype.c index a8f1f678c4f71..1d8005fe462e7 100644 --- a/src/datatype.c +++ b/src/datatype.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* defining DataTypes diff --git a/src/debuginfo.cpp b/src/debuginfo.cpp index a503b23487937..11ac809029e56 100644 --- a/src/debuginfo.cpp +++ b/src/debuginfo.cpp @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include "platform.h" diff --git a/src/dlload.c b/src/dlload.c index c88f901ba9cce..74d8280935356 100644 --- a/src/dlload.c +++ b/src/dlload.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include diff --git a/src/dump.c b/src/dump.c index 1293667f5a37b..fcf7a9d370770 100644 --- a/src/dump.c +++ b/src/dump.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* saving and restoring system images diff --git a/src/file_constants.h b/src/file_constants.h index 27f6b0bc4cdde..846404befd2fd 100644 --- a/src/file_constants.h +++ b/src/file_constants.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include diff --git a/src/fix_llvm_assert.h b/src/fix_llvm_assert.h index 8ed8a5ce4e144..776b127c15846 100644 --- a/src/fix_llvm_assert.h +++ b/src/fix_llvm_assert.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license // Include this file after every blocks of LLVM includes to set the assertion back. diff --git a/src/gc-debug.c b/src/gc-debug.c index 93343af3985bb..7e77d7b6e9c2d 100644 --- a/src/gc-debug.c +++ b/src/gc-debug.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include "gc.h" #include diff --git a/src/gc-pages.c b/src/gc-pages.c index 7ef3f741cb13f..ea485079db51d 100644 --- a/src/gc-pages.c +++ b/src/gc-pages.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include "gc.h" #ifndef _OS_WINDOWS_ diff --git a/src/gc.c b/src/gc.c index 9adea74dfa25c..07264be12d3f4 100644 --- a/src/gc.c +++ b/src/gc.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include "gc.h" diff --git a/src/gc.h b/src/gc.h index b806ef5a783ce..48cc90547f229 100644 --- a/src/gc.h +++ b/src/gc.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* allocation and garbage collection diff --git a/src/gen_sysimg_symtab.jl b/src/gen_sysimg_symtab.jl index e8a440ce14112..4df1ac3c7df67 100644 --- a/src/gen_sysimg_symtab.jl +++ b/src/gen_sysimg_symtab.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # script to generate tables of common symbols from a system image # steps to rerun this: diff --git a/src/gf.c b/src/gf.c index d2be995dfdd96..0a4f78878574a 100644 --- a/src/gf.c +++ b/src/gf.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* Generic Functions diff --git a/src/init.c b/src/init.c index 7fe5098264584..29edd9b93f1ca 100644 --- a/src/init.c +++ b/src/init.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* init.c diff --git a/src/interpreter.c b/src/interpreter.c index be288ce5252aa..a4743edcec4b4 100644 --- a/src/interpreter.c +++ b/src/interpreter.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include diff --git a/src/intrinsics.cpp b/src/intrinsics.cpp index 1853abead3452..d36bb5839a807 100644 --- a/src/intrinsics.cpp +++ b/src/intrinsics.cpp @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license namespace JL_I { #include "intrinsics.h" diff --git a/src/intrinsics.h b/src/intrinsics.h index 15ea45dc2d73d..44e3c128e8926 100644 --- a/src/intrinsics.h +++ b/src/intrinsics.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #define INTRINSICS \ /* wrap and unwrap */ \ diff --git a/src/jitlayers.cpp b/src/jitlayers.cpp index ddb71b565c807..b049c5da6db04 100644 --- a/src/jitlayers.cpp +++ b/src/jitlayers.cpp @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include "llvm-version.h" #include "platform.h" diff --git a/src/jitlayers.h b/src/jitlayers.h index 6a110e092d898..02a38275d6218 100644 --- a/src/jitlayers.h +++ b/src/jitlayers.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include diff --git a/src/jl_uv.c b/src/jl_uv.c index 249d63a98678c..d1008481db2d9 100644 --- a/src/jl_uv.c +++ b/src/jl_uv.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include "platform.h" diff --git a/src/jlapi.c b/src/jlapi.c index 7bdbc82e43a70..703ec688aad8c 100644 --- a/src/jlapi.c +++ b/src/jlapi.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* jlapi.c diff --git a/src/jloptions.c b/src/jloptions.c index fca0657b59c49..38333570e52c9 100644 --- a/src/jloptions.c +++ b/src/jloptions.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include diff --git a/src/jltypes.c b/src/jltypes.c index 534d9cb5a70c9..01724a722571e 100644 --- a/src/jltypes.c +++ b/src/jltypes.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* Types diff --git a/src/julia.h b/src/julia.h index 2368117e58029..0d2ad22fc4e00 100644 --- a/src/julia.h +++ b/src/julia.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef JULIA_H #define JULIA_H diff --git a/src/julia_internal.h b/src/julia_internal.h index d9305cacedd93..5b94d42248597 100644 --- a/src/julia_internal.h +++ b/src/julia_internal.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef JULIA_INTERNAL_H #define JULIA_INTERNAL_H diff --git a/src/julia_threads.h b/src/julia_threads.h index 8fd701f03ae7f..201b6a4b531a7 100644 --- a/src/julia_threads.h +++ b/src/julia_threads.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license // Meant to be included in #ifndef JULIA_THREADS_H diff --git a/src/llvm-gcroot.cpp b/src/llvm-gcroot.cpp index a23b5d5d7ef71..7e6bc07a8c492 100644 --- a/src/llvm-gcroot.cpp +++ b/src/llvm-gcroot.cpp @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #define DEBUG_TYPE "lower_gcroot" #undef DEBUG diff --git a/src/llvm-ptls.cpp b/src/llvm-ptls.cpp index 8452b1428159f..750ed613c707d 100644 --- a/src/llvm-ptls.cpp +++ b/src/llvm-ptls.cpp @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #define DEBUG_TYPE "lower_ptls" #undef DEBUG diff --git a/src/llvm-simdloop.cpp b/src/llvm-simdloop.cpp index f5f9d90cdd54e..913887fa62ffb 100644 --- a/src/llvm-simdloop.cpp +++ b/src/llvm-simdloop.cpp @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #define DEBUG_TYPE "lower_simd_loop" #undef DEBUG diff --git a/src/llvm-version.h b/src/llvm-version.h index 02817494c2999..308aa42e14bdd 100644 --- a/src/llvm-version.h +++ b/src/llvm-version.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include "fix_llvm_assert.h" diff --git a/src/method.c b/src/method.c index 65caef3a10986..723750cd8ce96 100644 --- a/src/method.c +++ b/src/method.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* Defining and adding methods diff --git a/src/module.c b/src/module.c index ec64c58dcc866..c3cde491b9e30 100644 --- a/src/module.c +++ b/src/module.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* modules and top-level bindings diff --git a/src/options.h b/src/options.h index f285e32855065..aea15e51fd70e 100644 --- a/src/options.h +++ b/src/options.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef JL_OPTIONS_H #define JL_OPTIONS_H diff --git a/src/precompile.c b/src/precompile.c index 8994941d15514..747f2dfb4c970 100644 --- a/src/precompile.c +++ b/src/precompile.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* precompile.c diff --git a/src/rtutils.c b/src/rtutils.c index 935250ef8baf0..954c352186e52 100644 --- a/src/rtutils.c +++ b/src/rtutils.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* utility functions used by the runtime system, generated code, and Base library diff --git a/src/runtime_ccall.cpp b/src/runtime_ccall.cpp index 89e10381fee8b..8caba6d27ff85 100644 --- a/src/runtime_ccall.cpp +++ b/src/runtime_ccall.cpp @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include "llvm-version.h" #include diff --git a/src/runtime_intrinsics.c b/src/runtime_intrinsics.c index f391588c12d6b..d38c733df0db4 100644 --- a/src/runtime_intrinsics.c +++ b/src/runtime_intrinsics.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license // This is in implementation of the Julia intrinsic functions against boxed types // excluding the native function call interface (ccall, llvmcall) diff --git a/src/safepoint.c b/src/safepoint.c index 2874266ebe4b5..b4281af0c966e 100644 --- a/src/safepoint.c +++ b/src/safepoint.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include "julia.h" #include "julia_internal.h" diff --git a/src/signal-handling.c b/src/signal-handling.c index 78968c05ed91e..75c551bcf1b38 100644 --- a/src/signal-handling.c +++ b/src/signal-handling.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include diff --git a/src/signals-mach.c b/src/signals-mach.c index cd7cb1b826557..eb88e187b7505 100644 --- a/src/signals-mach.c +++ b/src/signals-mach.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include diff --git a/src/signals-unix.c b/src/signals-unix.c index 2c50ff9ba7b68..00beeb9babd90 100644 --- a/src/signals-unix.c +++ b/src/signals-unix.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include diff --git a/src/signals-win.c b/src/signals-win.c index c8901e153ef3c..a54d7e5736d5c 100644 --- a/src/signals-win.c +++ b/src/signals-win.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license // Windows diff --git a/src/simplevector.c b/src/simplevector.c index 9322692059840..805d8d3aa4163 100644 --- a/src/simplevector.c +++ b/src/simplevector.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include diff --git a/src/stackwalk.c b/src/stackwalk.c index d3b8cf12a2f13..85e85b3663de3 100644 --- a/src/stackwalk.c +++ b/src/stackwalk.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* stackwalk.c diff --git a/src/subtype.c b/src/subtype.c index 7abc59859d897..ab5b83f806802 100644 --- a/src/subtype.c +++ b/src/subtype.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* subtyping predicate diff --git a/src/support/arraylist.c b/src/support/arraylist.c index 7b7229a63bd36..bb8bf77bd1af4 100644 --- a/src/support/arraylist.c +++ b/src/support/arraylist.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include diff --git a/src/support/arraylist.h b/src/support/arraylist.h index 3440367e90849..61ffba1043954 100644 --- a/src/support/arraylist.h +++ b/src/support/arraylist.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef ARRAYLIST_H #define ARRAYLIST_H diff --git a/src/support/bitvector.c b/src/support/bitvector.c index de13c8e285732..d72006cc1bfa5 100644 --- a/src/support/bitvector.c +++ b/src/support/bitvector.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* bit vector primitives diff --git a/src/support/bitvector.h b/src/support/bitvector.h index 10bbdfaea83f5..76c4bdec11818 100644 --- a/src/support/bitvector.h +++ b/src/support/bitvector.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef BITVECTOR_H #define BITVECTOR_H diff --git a/src/support/crc32c-tables.c b/src/support/crc32c-tables.c index 539b3577175b6..7ff68ffa92774 100644 --- a/src/support/crc32c-tables.c +++ b/src/support/crc32c-tables.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* Pregenerated tables for crc32c.c, produced by compiling with -DGEN_CRC32C_TABLES. */ #if POLY != 0x82f63b78 diff --git a/src/support/crc32c.h b/src/support/crc32c.h index 559cf35903a00..9dbf41c9b2811 100644 --- a/src/support/crc32c.h +++ b/src/support/crc32c.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef CRC32C_H #define CRC32C_H 1 diff --git a/src/support/dirpath.h b/src/support/dirpath.h index 782bf8adf9a1b..ec31dbedf0f22 100644 --- a/src/support/dirpath.h +++ b/src/support/dirpath.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef DIRPATH_H #define DIRPATH_H diff --git a/src/support/dtypes.h b/src/support/dtypes.h index 56b5ddfb93612..04ffc605e4baa 100644 --- a/src/support/dtypes.h +++ b/src/support/dtypes.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef DTYPES_H #define DTYPES_H diff --git a/src/support/hashing.c b/src/support/hashing.c index da76f3a793867..632eb2ae12c19 100644 --- a/src/support/hashing.c +++ b/src/support/hashing.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* Hashing diff --git a/src/support/hashing.h b/src/support/hashing.h index 5f9b41d6f700d..9532a35abb48e 100644 --- a/src/support/hashing.h +++ b/src/support/hashing.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef HASHING_H #define HASHING_H diff --git a/src/support/htable.c b/src/support/htable.c index 3e1c9022ca6c7..b5ae094e448dd 100644 --- a/src/support/htable.c +++ b/src/support/htable.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* functions common to all hash table instantiations diff --git a/src/support/htable.h b/src/support/htable.h index eb5bfd259a684..968ffb287234d 100644 --- a/src/support/htable.h +++ b/src/support/htable.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef HTABLE_H #define HTABLE_H diff --git a/src/support/int2str.c b/src/support/int2str.c index 0c74546af18af..13152ee36ccf2 100644 --- a/src/support/int2str.c +++ b/src/support/int2str.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include "dtypes.h" diff --git a/src/support/ios.c b/src/support/ios.c index 32cba8fceb618..9dffebc8c808d 100644 --- a/src/support/ios.c +++ b/src/support/ios.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include diff --git a/src/support/ios.h b/src/support/ios.h index 02480237a3389..66003f81d82d2 100644 --- a/src/support/ios.h +++ b/src/support/ios.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef IOS_H #define IOS_H diff --git a/src/support/libsupport.h b/src/support/libsupport.h index 0e8071740f36d..c93527aa8617a 100644 --- a/src/support/libsupport.h +++ b/src/support/libsupport.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef LIBSUPPORT_H #define LIBSUPPORT_H diff --git a/src/support/libsupportinit.c b/src/support/libsupportinit.c index 78add620116c5..34c6c9cc93ef4 100644 --- a/src/support/libsupportinit.c +++ b/src/support/libsupportinit.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include "libsupport.h" diff --git a/src/support/operators.c b/src/support/operators.c index 161fd987f96b8..d1099e5d1d6ff 100644 --- a/src/support/operators.c +++ b/src/support/operators.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include diff --git a/src/support/platform.h b/src/support/platform.h index c0e95343c855d..3a4751a5cca3c 100644 --- a/src/support/platform.h +++ b/src/support/platform.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef PLATFORM_H #define PLATFORM_H diff --git a/src/support/ptrhash.c b/src/support/ptrhash.c index c61f2dd6c1651..b32ed8afe42f8 100644 --- a/src/support/ptrhash.c +++ b/src/support/ptrhash.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* pointer hash table diff --git a/src/support/ptrhash.h b/src/support/ptrhash.h index 6929d02d7d615..062287eef6e9f 100644 --- a/src/support/ptrhash.h +++ b/src/support/ptrhash.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef PTRHASH_H #define PTRHASH_H diff --git a/src/support/strtod.h b/src/support/strtod.h index a63d22447f537..1d4f08df9659a 100644 --- a/src/support/strtod.h +++ b/src/support/strtod.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef STRTOD_H #define STRTOD_H diff --git a/src/support/timefuncs.c b/src/support/timefuncs.c index 4548577de719f..031967638ec9e 100644 --- a/src/support/timefuncs.c +++ b/src/support/timefuncs.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include diff --git a/src/support/timefuncs.h b/src/support/timefuncs.h index 45d22184d29b1..12533e307be84 100644 --- a/src/support/timefuncs.h +++ b/src/support/timefuncs.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef TIMEFUNCS_H #define TIMEFUNCS_H diff --git a/src/support/utf8.h b/src/support/utf8.h index 8593b35c8d3ae..486243b1d3555 100644 --- a/src/support/utf8.h +++ b/src/support/utf8.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef UTF8_H #define UTF8_H diff --git a/src/support/utils.h b/src/support/utils.h index 1d48da321162e..930f54fd750ce 100644 --- a/src/support/utils.h +++ b/src/support/utils.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef UTILS_H #define UTILS_H diff --git a/src/support/wsasocketpair.c b/src/support/wsasocketpair.c index 72cf35daed8ab..77ce3cbc96c98 100644 --- a/src/support/wsasocketpair.c +++ b/src/support/wsasocketpair.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license // This is a compatibility implementation of the unix "socketpair" // function using the Windows Sockets 2 API. diff --git a/src/symbol.c b/src/symbol.c index 7b9f5116230cd..17d9ae12ec0be 100644 --- a/src/symbol.c +++ b/src/symbol.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* Symbol table diff --git a/src/sys.c b/src/sys.c index 0e984cef70d3a..a1cdc280cc7fb 100644 --- a/src/sys.c +++ b/src/sys.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* sys.c diff --git a/src/table.c b/src/table.c index 37738f9816d71..fc136403ad93f 100644 --- a/src/table.c +++ b/src/table.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #define hash_size(h) (jl_array_len(h)/2) diff --git a/src/task.c b/src/task.c index be99b9afdda9a..ae2da1897b82e 100644 --- a/src/task.c +++ b/src/task.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* task.c diff --git a/src/threadgroup.c b/src/threadgroup.c index 57e995065a321..eca3be05f398d 100644 --- a/src/threadgroup.c +++ b/src/threadgroup.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* threading infrastructure diff --git a/src/threadgroup.h b/src/threadgroup.h index 72e76d2dcfc8a..a0f1ead2881f9 100644 --- a/src/threadgroup.h +++ b/src/threadgroup.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef THREADGROUP_H #define THREADGROUP_H diff --git a/src/threading.c b/src/threading.c index f2fdaf96eb3e6..796312fbf5252 100644 --- a/src/threading.c +++ b/src/threading.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* threading infrastructure diff --git a/src/threading.h b/src/threading.h index 803a54a006919..17d0a1c9efbab 100644 --- a/src/threading.h +++ b/src/threading.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef THREADING_H #define THREADING_H diff --git a/src/timing.c b/src/timing.c index 6c23e5c97eac2..a9ee6d7685a10 100644 --- a/src/timing.c +++ b/src/timing.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include "julia.h" diff --git a/src/timing.h b/src/timing.h index e9677cc7da9be..a7f550e9476a8 100644 --- a/src/timing.h +++ b/src/timing.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #ifndef ENABLE_TIMINGS #define JL_TIMING(owner) diff --git a/src/toplevel.c b/src/toplevel.c index 37cf7f97e440f..18ac6021b3ec2 100644 --- a/src/toplevel.c +++ b/src/toplevel.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* evaluating top-level expressions, loading source files diff --git a/src/typemap.c b/src/typemap.c index d7d4ecb1d0756..b06be06415d76 100644 --- a/src/typemap.c +++ b/src/typemap.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include diff --git a/src/uv_constants.h b/src/uv_constants.h index 569966d6ec5a2..873e2af28b44f 100644 --- a/src/uv_constants.h +++ b/src/uv_constants.h @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include "uv.h" #define XX(uc,lc) :UV_##uc, diff --git a/test/TestHelpers.jl b/test/TestHelpers.jl index 422cd085410ff..3279d8c6d5987 100644 --- a/test/TestHelpers.jl +++ b/test/TestHelpers.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module TestHelpers @@ -138,7 +138,7 @@ parenttype(A::OffsetArray) = parenttype(typeof(A)) Base.parent(A::OffsetArray) = A.parent -errmsg(A) = error("size not supported for arrays with indices $(indices(A)); see http://docs.julialang.org/en/latest/devdocs/offset-arrays/") +errmsg(A) = error("size not supported for arrays with indices $(indices(A)); see https://docs.julialang.org/en/latest/devdocs/offset-arrays/") Base.size(A::OffsetArray) = errmsg(A) Base.size(A::OffsetArray, d) = errmsg(A) Base.eachindex(::IndexCartesian, A::OffsetArray) = CartesianRange(indices(A)) diff --git a/test/abstractarray.jl b/test/abstractarray.jl index 276c074d91dd0..24a181a58b76b 100644 --- a/test/abstractarray.jl +++ b/test/abstractarray.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license A = rand(5,4,3) @testset "Bounds checking" begin diff --git a/test/ambiguous.jl b/test/ambiguous.jl index 69e09a99627e5..e799da798e3d5 100644 --- a/test/ambiguous.jl +++ b/test/ambiguous.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # DO NOT ALTER ORDER OR SPACING OF METHODS BELOW const lineoffset = @__LINE__ + 0 # XXX: __LINE__ at the end of a line is off-by-one diff --git a/test/arrayops.jl b/test/arrayops.jl index ca9bc0636ad2b..6b6e2e241b976 100644 --- a/test/arrayops.jl +++ b/test/arrayops.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Array test diff --git a/test/asmvariant.jl b/test/asmvariant.jl index bf1b9116d37e0..27209997511c8 100644 --- a/test/asmvariant.jl +++ b/test/asmvariant.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/backtrace.jl b/test/backtrace.jl index 8fbcf9003dea3..140d8c2098f5e 100644 --- a/test/backtrace.jl +++ b/test/backtrace.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license bt = backtrace() have_backtrace = false diff --git a/test/base64.jl b/test/base64.jl index 952e4e056ecd5..c35bce359bdde 100644 --- a/test/base64.jl +++ b/test/base64.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license const inputText = "Man is distinguished, not only by his reason, but by this singular passion from other animals, which is a lust of the mind, that by a perseverance of delight in the continued and indefatigable generation of knowledge, exceeds the short vehemence of any carnal pleasure." const encodedMaxLine76 = diff --git a/test/bigfloat.jl b/test/bigfloat.jl index 64b09a7c4de58..bef4c0ce63fa8 100644 --- a/test/bigfloat.jl +++ b/test/bigfloat.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license @test big(2.0)^big(3) == 8 diff --git a/test/bigint.jl b/test/bigint.jl index aecb932708f75..4bf485ccb8e29 100644 --- a/test/bigint.jl +++ b/test/bigint.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license a = parse(BigInt,"123456789012345678901234567890") b = parse(BigInt,"123456789012345678901234567891") diff --git a/test/bitarray.jl b/test/bitarray.jl index 32bbacfc197bf..9a0541ef7b92c 100644 --- a/test/bitarray.jl +++ b/test/bitarray.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module BitArrayTests diff --git a/test/blas.jl b/test/blas.jl index 780b62dab46fc..56ebdde4ab6ff 100644 --- a/test/blas.jl +++ b/test/blas.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import Base.LinAlg, Base.LinAlg.BlasReal, Base.LinAlg.BlasComplex diff --git a/test/boundscheck.jl b/test/boundscheck.jl index 80181e21f734d..a1ca1b8051536 100644 --- a/test/boundscheck.jl +++ b/test/boundscheck.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # run boundscheck tests on separate workers launched with --check-bounds={default,yes,no} diff --git a/test/boundscheck_exec.jl b/test/boundscheck_exec.jl index c8d41f184bd55..e6ec13fd2da41 100644 --- a/test/boundscheck_exec.jl +++ b/test/boundscheck_exec.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module TestBoundsCheck diff --git a/test/broadcast.jl b/test/broadcast.jl index a9a25093a4c2b..8e89a12e65a89 100644 --- a/test/broadcast.jl +++ b/test/broadcast.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module TestBroadcastInternals diff --git a/test/cartesian.jl b/test/cartesian.jl index 3180a4f4dccfc..be2605d200143 100644 --- a/test/cartesian.jl +++ b/test/cartesian.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license @test Base.Cartesian.exprresolve(:(1 + 3)) == 4 ex = Base.Cartesian.exprresolve(:(if 5 > 4; :x; else :y; end)) diff --git a/test/ccall.jl b/test/ccall.jl index 3e6ce1bbadbfd..38b4cd15f91f6 100644 --- a/test/ccall.jl +++ b/test/ccall.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import Base.copy, Base.== diff --git a/test/channels.jl b/test/channels.jl index d3260f57920a1..447215cc12b95 100644 --- a/test/channels.jl +++ b/test/channels.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Test various constructors c=Channel(1) diff --git a/test/char.jl b/test/char.jl index 8a8a2f825cbd3..c40f60de3be23 100644 --- a/test/char.jl +++ b/test/char.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license #tests for /base/char.jl diff --git a/test/checked.jl b/test/checked.jl index 3e98a7b2ea445..43e897ea807fb 100644 --- a/test/checked.jl +++ b/test/checked.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Checked integer arithmetic diff --git a/test/choosetests.jl b/test/choosetests.jl index 1c820e38a7fce..7974eee36f60e 100644 --- a/test/choosetests.jl +++ b/test/choosetests.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license @doc """ diff --git a/test/cmdlineargs.jl b/test/cmdlineargs.jl index 47dda4097da81..802f9ad31d070 100644 --- a/test/cmdlineargs.jl +++ b/test/cmdlineargs.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license catcmd = `cat` if is_windows() diff --git a/test/combinatorics.jl b/test/combinatorics.jl index eaa9e5884f562..95fc8c5046ddd 100644 --- a/test/combinatorics.jl +++ b/test/combinatorics.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license @testset "binomial" begin @test binomial(5,-1) == 0 diff --git a/test/compile.jl b/test/compile.jl index 0e058899537f5..a762f39c43c24 100644 --- a/test/compile.jl +++ b/test/compile.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/complex.jl b/test/complex.jl index 6df11be21f99b..fa4d31a63cd57 100644 --- a/test/complex.jl +++ b/test/complex.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license @test reim(2 + 3im) == (2, 3) diff --git a/test/copy.jl b/test/copy.jl index 2e48fc9912afe..ae7ce7d58b7db 100644 --- a/test/copy.jl +++ b/test/copy.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license mainres = ([4, 5, 3], [1, 5, 3]) diff --git a/test/core.jl b/test/core.jl index 72b1a5195ec6d..d685007287bd4 100644 --- a/test/core.jl +++ b/test/core.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # test core language features const Bottom = Union{} diff --git a/test/datafmt.jl b/test/datafmt.jl index 27412b8fa883b..8f936d6be19ee 100644 --- a/test/datafmt.jl +++ b/test/datafmt.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # countlines @test countlines(IOBuffer("\n")) == 1 diff --git a/test/dates/accessors.jl b/test/dates/accessors.jl index 2abfc649d745b..4e6ab4a6eba79 100644 --- a/test/dates/accessors.jl +++ b/test/dates/accessors.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # yearmonthday is the opposite of totaldays # taking Rata Die Day # and returning proleptic Gregorian date diff --git a/test/dates/adjusters.jl b/test/dates/adjusters.jl index 46c7045d2221e..5d94dc821adb6 100644 --- a/test/dates/adjusters.jl +++ b/test/dates/adjusters.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license #trunc dt = Dates.Date(2012, 12, 21) diff --git a/test/dates/arithmetic.jl b/test/dates/arithmetic.jl index d5db8f895cd44..98732fe3fe204 100644 --- a/test/dates/arithmetic.jl +++ b/test/dates/arithmetic.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Time arithmetic a = Dates.Time(23, 59, 59) diff --git a/test/dates/conversions.jl b/test/dates/conversions.jl index 26124cbc82460..d092ec6749fc6 100644 --- a/test/dates/conversions.jl +++ b/test/dates/conversions.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Test conversion to and from unix @test Dates.unix2datetime(Dates.datetime2unix(DateTime(2000, 1, 1))) == DateTime(2000, 1, 1) diff --git a/test/dates/io.jl b/test/dates/io.jl index a27fd23711f74..e7494f94ec7e0 100644 --- a/test/dates/io.jl +++ b/test/dates/io.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Test string/show representation of Date @test string(Dates.Date(1, 1, 1)) == "0001-01-01" # January 1st, 1 AD/CE diff --git a/test/dates/periods.jl b/test/dates/periods.jl index f951790b85696..e4bb9d9bb30b2 100644 --- a/test/dates/periods.jl +++ b/test/dates/periods.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Period testing @test -Dates.Year(1) == Dates.Year(-1) diff --git a/test/dates/query.jl b/test/dates/query.jl index 967e04c391be7..7931612c8fd54 100644 --- a/test/dates/query.jl +++ b/test/dates/query.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Name functions Jan = Dates.DateTime(2013, 1, 1) # Tuesday diff --git a/test/dates/ranges.jl b/test/dates/ranges.jl index 87ed8beaa0d9f..74b2a1983db6f 100644 --- a/test/dates/ranges.jl +++ b/test/dates/ranges.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license let for T in (Dates.Date, Dates.DateTime) diff --git a/test/dates/rounding.jl b/test/dates/rounding.jl index d6faed688eeed..e32f592a0f301 100644 --- a/test/dates/rounding.jl +++ b/test/dates/rounding.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Test conversion to and from the rounding epoch (ISO 8601 year 0000) @test Dates.epochdays2date(-1) == Dates.Date(-1, 12, 31) diff --git a/test/dates/types.jl b/test/dates/types.jl index 0b32a6753ca55..21d7918225a4a 100644 --- a/test/dates/types.jl +++ b/test/dates/types.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Date internal algorithms @test Dates.totaldays(0, 2, 28) == -307 diff --git a/test/dict.jl b/test/dict.jl index dc6e2ab66aad7..ebbdab44273b4 100644 --- a/test/dict.jl +++ b/test/dict.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Pair p = Pair(10,20) diff --git a/test/dimensionful.jl b/test/dimensionful.jl index f7450b896401f..d55defc19e159 100644 --- a/test/dimensionful.jl +++ b/test/dimensionful.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Here we implement a minimal dimensionful type Furlong, which is used # to test dimensional correctness of various functions in Base. Furlong diff --git a/test/distributed.jl b/test/distributed.jl index a3a2cb8cbad8c..99a02ee6b662a 100644 --- a/test/distributed.jl +++ b/test/distributed.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Run the distributed test outside of the main driver since it needs its own # set of dedicated workers. diff --git a/test/distributed_exec.jl b/test/distributed_exec.jl index ca77ab2fd433a..42e8f2ce23fd1 100644 --- a/test/distributed_exec.jl +++ b/test/distributed_exec.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/docs.jl b/test/docs.jl index d851b662215da..82e550490521b 100644 --- a/test/docs.jl +++ b/test/docs.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import Base.Docs: meta, @var, DocStr, parsedoc diff --git a/test/download.jl b/test/download.jl index 317179f172dbd..e982dbfbcc53f 100644 --- a/test/download.jl +++ b/test/download.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license mktempdir() do temp_dir # Download a file diff --git a/test/dsp.jl b/test/dsp.jl index e1a9ee650c439..ced0c8273aa3e 100644 --- a/test/dsp.jl +++ b/test/dsp.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Filter b = [1., 2., 3., 4.] diff --git a/test/embedding.jl b/test/embedding.jl index 628aa3e3781bd..4212589e3f52a 100644 --- a/test/embedding.jl +++ b/test/embedding.jl @@ -1,3 +1,5 @@ +# This file is a part of Julia. License is MIT: https://julialang.org/license + # test that the embedding example runs without error let if is_windows() diff --git a/test/enums.jl b/test/enums.jl index 5f0573097ef14..cdd64fa3928e9 100644 --- a/test/enums.jl +++ b/test/enums.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license const curmod = current_module() const curmod_name = fullname(curmod) diff --git a/test/env.jl b/test/env.jl index 86eb0ba9b89c6..10c75d4da66b8 100644 --- a/test/env.jl +++ b/test/env.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license @test !("f=a=k=e=n=a=m=e" ∈ keys(ENV)) diff --git a/test/error.jl b/test/error.jl index 4e251f76d93b3..e92aa93bd695c 100644 --- a/test/error.jl +++ b/test/error.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license @test length(ExponentialBackOff(n=10)) == 10 @test collect(ExponentialBackOff(n=10, first_delay=0.01))[1] == 0.01 diff --git a/test/euler.jl b/test/euler.jl index d4ef4744831f7..52b9bd0a3702c 100644 --- a/test/euler.jl +++ b/test/euler.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## Project Euler # diff --git a/test/examples.jl b/test/examples.jl index e66787eb69688..fd63c59f460cd 100644 --- a/test/examples.jl +++ b/test/examples.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license dir = joinpath(JULIA_HOME, Base.DOCDIR, "examples") diff --git a/test/fastmath.jl b/test/fastmath.jl index 754e84362c5e6..1a89a83503eda 100644 --- a/test/fastmath.jl +++ b/test/fastmath.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # fast math diff --git a/test/fft.jl b/test/fft.jl index db165ba93b5ef..0e673ab40d2d1 100644 --- a/test/fft.jl +++ b/test/fft.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # issue #19892 # (test this first to make sure it happens before set_num_threads) diff --git a/test/file.jl b/test/file.jl index ca1429605cd25..269d5fe2ae9cd 100644 --- a/test/file.jl +++ b/test/file.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ############################################# # Create some temporary files & directories # diff --git a/test/float16.jl b/test/float16.jl index b07d7b38cab0d..e9a188329c978 100644 --- a/test/float16.jl +++ b/test/float16.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/floatapprox.jl b/test/floatapprox.jl index ddc338e70c94b..0f09312c1d55a 100644 --- a/test/floatapprox.jl +++ b/test/floatapprox.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Floating point numbers - basic tests @test 4.00000000000001 ≈ 4.0 diff --git a/test/floatfuncs.jl b/test/floatfuncs.jl index 94a751ad447ce..3fee77d56dbe3 100644 --- a/test/floatfuncs.jl +++ b/test/floatfuncs.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/functional.jl b/test/functional.jl index cdf529ffbd4c3..5256a54167473 100644 --- a/test/functional.jl +++ b/test/functional.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # tests related to functional programming functions and styles diff --git a/test/goto.jl b/test/goto.jl index b2395853a5f74..69a181756036f 100644 --- a/test/goto.jl +++ b/test/goto.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Basic goto tests diff --git a/test/grisu.jl b/test/grisu.jl index 3cf09b0d893c0..5fb6332de6a41 100644 --- a/test/grisu.jl +++ b/test/grisu.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Grisu diff --git a/test/hashing.jl b/test/hashing.jl index 82be0e4c7dffd..de532dba449b7 100644 --- a/test/hashing.jl +++ b/test/hashing.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license types = Any[ Bool, diff --git a/test/i18n.jl b/test/i18n.jl index 55b1f9ad90b98..0ff3d6046c211 100644 --- a/test/i18n.jl +++ b/test/i18n.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.I18n diff --git a/test/inference.jl b/test/inference.jl index 1e34d4d664a3b..bdcabb2ff7a72 100644 --- a/test/inference.jl +++ b/test/inference.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # tests for Core.Inference correctness and precision diff --git a/test/inline.jl b/test/inline.jl index 1de15c909d3e1..2defba2f3852f 100644 --- a/test/inline.jl +++ b/test/inline.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/int.jl b/test/int.jl index 09291a3b18bb6..ad2e9a1e8f1f2 100644 --- a/test/int.jl +++ b/test/int.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Test integer conversion routines from int.jl diff --git a/test/intfuncs.jl b/test/intfuncs.jl index 3d80ba1a4860d..547e826480c52 100644 --- a/test/intfuncs.jl +++ b/test/intfuncs.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Int32 and Int64 take different code paths -- test both for T in (Int32, Int64) diff --git a/test/intrinsics.jl b/test/intrinsics.jl index 03f306c1ba684..c1bf0525c87cc 100644 --- a/test/intrinsics.jl +++ b/test/intrinsics.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # intrinsic functions const curmod = current_module() diff --git a/test/intset.jl b/test/intset.jl index 559d6a7e52459..1b8bab5557ec8 100644 --- a/test/intset.jl +++ b/test/intset.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Test functionality of IntSet diff --git a/test/iobuffer.jl b/test/iobuffer.jl index 752fdcb70ea7c..5921b3714b4be 100644 --- a/test/iobuffer.jl +++ b/test/iobuffer.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ioslength(io::IOBuffer) = (io.seekable ? io.size : nb_available(io)) diff --git a/test/iostream.jl b/test/iostream.jl index 1b817ce26d2b6..2eb307f6536b9 100644 --- a/test/iostream.jl +++ b/test/iostream.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Test skipchars for IOStreams mktemp() do path, file diff --git a/test/iterators.jl b/test/iterators.jl index d3e8baf65dd1d..fd0ec31499827 100644 --- a/test/iterators.jl +++ b/test/iterators.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Iterators diff --git a/test/keywordargs.jl b/test/keywordargs.jl index 5045cff21a8cc..14199e2bc7a66 100644 --- a/test/keywordargs.jl +++ b/test/keywordargs.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # simple keyword args case kwf1(ones; tens=0, hundreds=0) = ones + 10*tens + 100*hundreds diff --git a/test/libdl.jl b/test/libdl.jl index b4382d670504b..4aba53527335c 100644 --- a/test/libdl.jl +++ b/test/libdl.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # these could fail on an embedded installation # but for now, we don't handle that case diff --git a/test/libgit2-helpers.jl b/test/libgit2-helpers.jl index a5756250257c1..1f0cae51163df 100644 --- a/test/libgit2-helpers.jl +++ b/test/libgit2-helpers.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import Base.LibGit2: AbstractCredentials, UserPasswordCredentials, SSHCredentials, CachedCredentials diff --git a/test/libgit2-online.jl b/test/libgit2-online.jl index b8ad3069f2954..cd1c48b0daf3e 100644 --- a/test/libgit2-online.jl +++ b/test/libgit2-online.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ######### # TESTS # diff --git a/test/libgit2.jl b/test/libgit2.jl index b5c61ecb77a37..12d981c6a6e5c 100644 --- a/test/libgit2.jl +++ b/test/libgit2.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license isdefined(Main, :TestHelpers) || @eval Main include(joinpath(dirname(@__FILE__), "TestHelpers.jl")) import TestHelpers: challenge_prompt diff --git a/test/linalg/arnoldi.jl b/test/linalg/arnoldi.jl index b5da8bfb8c979..6f895a1d130a5 100644 --- a/test/linalg/arnoldi.jl +++ b/test/linalg/arnoldi.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/linalg/bidiag.jl b/test/linalg/bidiag.jl index 73f972b998f4a..7e128844eec7a 100644 --- a/test/linalg/bidiag.jl +++ b/test/linalg/bidiag.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test import Base.LinAlg: BlasReal, BlasFloat diff --git a/test/linalg/bunchkaufman.jl b/test/linalg/bunchkaufman.jl index 9fd6878dcb43f..233447c99f66a 100644 --- a/test/linalg/bunchkaufman.jl +++ b/test/linalg/bunchkaufman.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/linalg/cholesky.jl b/test/linalg/cholesky.jl index f0a8c7a85cb75..e6aabd7f8ff17 100644 --- a/test/linalg/cholesky.jl +++ b/test/linalg/cholesky.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license debug = false diff --git a/test/linalg/conjarray.jl b/test/linalg/conjarray.jl index e7c8e7c1359f0..4ba4ac90ad5bb 100644 --- a/test/linalg/conjarray.jl +++ b/test/linalg/conjarray.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license @testset "Core" begin m = [1+im 2; 2 4-im] diff --git a/test/linalg/dense.jl b/test/linalg/dense.jl index 68092b25c8a8c..fdf107d743469 100644 --- a/test/linalg/dense.jl +++ b/test/linalg/dense.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/linalg/diagonal.jl b/test/linalg/diagonal.jl index a1ae78ed41eef..6c2f8b2977bcb 100644 --- a/test/linalg/diagonal.jl +++ b/test/linalg/diagonal.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test import Base.LinAlg: BlasFloat, BlasComplex, SingularException diff --git a/test/linalg/eigen.jl b/test/linalg/eigen.jl index 3ae52efb28c80..c44563e5676f2 100644 --- a/test/linalg/eigen.jl +++ b/test/linalg/eigen.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/linalg/generic.jl b/test/linalg/generic.jl index d6441fd442e88..89fa70944225b 100644 --- a/test/linalg/generic.jl +++ b/test/linalg/generic.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import Base: -, *, /, \ using Base.Test diff --git a/test/linalg/givens.jl b/test/linalg/givens.jl index 03420a492683f..06ad1b9399903 100644 --- a/test/linalg/givens.jl +++ b/test/linalg/givens.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/linalg/hessenberg.jl b/test/linalg/hessenberg.jl index 0e700fcd4c781..aca74a74199ef 100644 --- a/test/linalg/hessenberg.jl +++ b/test/linalg/hessenberg.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/linalg/lapack.jl b/test/linalg/lapack.jl index b0749da0133cb..4bc46b9e8a9aa 100644 --- a/test/linalg/lapack.jl +++ b/test/linalg/lapack.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/linalg/lq.jl b/test/linalg/lq.jl index 6b27927b8c9dc..a9cfcdd54b34f 100644 --- a/test/linalg/lq.jl +++ b/test/linalg/lq.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/linalg/lu.jl b/test/linalg/lu.jl index 3a6b2d5d09176..674a5e71cf636 100644 --- a/test/linalg/lu.jl +++ b/test/linalg/lu.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license debug = false diff --git a/test/linalg/matmul.jl b/test/linalg/matmul.jl index 7ee9e13b85eeb..c97f69d224212 100644 --- a/test/linalg/matmul.jl +++ b/test/linalg/matmul.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/linalg/pinv.jl b/test/linalg/pinv.jl index e01c0e253c1bd..f1f7745658061 100644 --- a/test/linalg/pinv.jl +++ b/test/linalg/pinv.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # # Test the pseudo-inverse diff --git a/test/linalg/qr.jl b/test/linalg/qr.jl index e3c4becd32502..2de9f65fa774c 100644 --- a/test/linalg/qr.jl +++ b/test/linalg/qr.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license debug = false using Base.Test diff --git a/test/linalg/rowvector.jl b/test/linalg/rowvector.jl index 8bd6e5c91e333..e63bae94a35b6 100644 --- a/test/linalg/rowvector.jl +++ b/test/linalg/rowvector.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license @testset "Core" begin v = [1,2,3] diff --git a/test/linalg/schur.jl b/test/linalg/schur.jl index 92027cad6b430..9b48443f278c7 100644 --- a/test/linalg/schur.jl +++ b/test/linalg/schur.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/linalg/special.jl b/test/linalg/special.jl index f7d073bd05b28..3d58d5f89cc2a 100644 --- a/test/linalg/special.jl +++ b/test/linalg/special.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test debug = false diff --git a/test/linalg/svd.jl b/test/linalg/svd.jl index 5e26babf44cd6..f8d1611fc9a1a 100644 --- a/test/linalg/svd.jl +++ b/test/linalg/svd.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/linalg/symmetric.jl b/test/linalg/symmetric.jl index 0ec3b7beaf2d5..cc03937982cde 100644 --- a/test/linalg/symmetric.jl +++ b/test/linalg/symmetric.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/linalg/triangular.jl b/test/linalg/triangular.jl index 829b8bee7e02a..f6dbe41552cc0 100644 --- a/test/linalg/triangular.jl +++ b/test/linalg/triangular.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license debug = false using Base.Test diff --git a/test/linalg/tridiag.jl b/test/linalg/tridiag.jl index 284c58053eefc..4ffdd3f38a561 100644 --- a/test/linalg/tridiag.jl +++ b/test/linalg/tridiag.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license module TridiagTest using Base.Test diff --git a/test/linalg/uniformscaling.jl b/test/linalg/uniformscaling.jl index 30d732e3da0a1..4049a44f79284 100644 --- a/test/linalg/uniformscaling.jl +++ b/test/linalg/uniformscaling.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/lineedit.jl b/test/lineedit.jl index f2c31f3f7d935..4aeca1b38797c 100644 --- a/test/lineedit.jl +++ b/test/lineedit.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.LineEdit isdefined(Main, :TestHelpers) || @eval Main include(joinpath(dirname(@__FILE__), "TestHelpers.jl")) diff --git a/test/llvmcall.jl b/test/llvmcall.jl index 1565f25992c36..ac75a3575ac29 100644 --- a/test/llvmcall.jl +++ b/test/llvmcall.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.llvmcall diff --git a/test/llvmcall2.jl b/test/llvmcall2.jl index b365129919541..a0129f270d21a 100644 --- a/test/llvmcall2.jl +++ b/test/llvmcall2.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function declared_floor(x::Float64) return ccall("llvm.floor.f64", llvmcall, Float64, (Float64,), x) diff --git a/test/loading.jl b/test/loading.jl index 4fbb04d083bd6..618700d228411 100644 --- a/test/loading.jl +++ b/test/loading.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/markdown.jl b/test/markdown.jl index 7a4711663dba5..4eba7019798e2 100644 --- a/test/markdown.jl +++ b/test/markdown.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Markdown import Base.Markdown: MD, Paragraph, Header, Italic, Bold, LineBreak, plain, term, html, rst, Table, Code, LaTeX, Footnote diff --git a/test/math.jl b/test/math.jl index 744ce7d7a4be4..04ce580e47346 100644 --- a/test/math.jl +++ b/test/math.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license @testset "clamp" begin @test clamp(0, 1, 3) == 1 diff --git a/test/meta.jl b/test/meta.jl index 17deda5d2099e..0efa06566e959 100644 --- a/test/meta.jl +++ b/test/meta.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # test meta-expressions that annotate blocks of code diff --git a/test/misc.jl b/test/misc.jl index a1e2b99096f77..f03edaa1ea34b 100644 --- a/test/misc.jl +++ b/test/misc.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Tests that do not really go anywhere else diff --git a/test/mmap.jl b/test/mmap.jl index f79a1154baf21..eb6c37fbb955c 100644 --- a/test/mmap.jl +++ b/test/mmap.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license file = tempname() write(file, "Hello World\n") diff --git a/test/mod2pi.jl b/test/mod2pi.jl index 05e8229159e86..103402fde67ba 100644 --- a/test/mod2pi.jl +++ b/test/mod2pi.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # NOTES on range reduction # [1] compute numbers near pi: http://www.cs.berkeley.edu/~wkahan/testpi/nearpi.c diff --git a/test/mpfr.jl b/test/mpfr.jl index 521eb0f69c2ea..d25f7a67a23ff 100644 --- a/test/mpfr.jl +++ b/test/mpfr.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import Base.MPFR # constructors diff --git a/test/netload/memtest.jl b/test/netload/memtest.jl index b69b35dec658f..b024df4980e55 100644 --- a/test/netload/memtest.jl +++ b/test/netload/memtest.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license struct RUsage ru_utime_sec::Clong # user CPU time used diff --git a/test/netload/nettest.jl b/test/netload/nettest.jl index 0cc50fd450aa2..0f7394def95c8 100644 --- a/test/netload/nettest.jl +++ b/test/netload/nettest.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Run various networking tests checking to see how we perform under large loads addprocs(1) diff --git a/test/nullable.jl b/test/nullable.jl index 3f2dc75cd6126..6c118ec9620e8 100644 --- a/test/nullable.jl +++ b/test/nullable.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # "is a null with type T", curried on 2nd argument isnull_oftype(x::Nullable, T::Type) = eltype(x) == T && isnull(x) diff --git a/test/numbers.jl b/test/numbers.jl index 738d22dfb6f6e..9bd260bcb659d 100644 --- a/test/numbers.jl +++ b/test/numbers.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license const ≣ = isequal # convenient for comparing NaNs diff --git a/test/offsetarray.jl b/test/offsetarray.jl index edb61d47263ef..bb755579d63a2 100644 --- a/test/offsetarray.jl +++ b/test/offsetarray.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license isdefined(Main, :TestHelpers) || @eval Main include(joinpath(dirname(@__FILE__), "TestHelpers.jl")) using TestHelpers.OAs diff --git a/test/operators.jl b/test/operators.jl index a95e2a24dc3da..66fbe1aae8a47 100644 --- a/test/operators.jl +++ b/test/operators.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license @test ifelse(true, 1, 2) == 1 @test ifelse(false, 1, 2) == 2 diff --git a/test/osutils.jl b/test/osutils.jl index 3eba2323a9a3e..270680c54b601 100644 --- a/test/osutils.jl +++ b/test/osutils.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license @test !Base.is_unix(:Windows) @test !Base.is_linux(:Windows) diff --git a/test/parse.jl b/test/parse.jl index 769bb5195c97c..7528507ed7b6a 100644 --- a/test/parse.jl +++ b/test/parse.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # tests for parser and syntax lowering diff --git a/test/path.jl b/test/path.jl index f401c03ddf7b5..a2444e7810681 100644 --- a/test/path.jl +++ b/test/path.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license for S in (String, GenericString) dir = pwd() diff --git a/test/perf/README.md b/test/perf/README.md index d523394f6304f..7d2f2abfc355d 100644 --- a/test/perf/README.md +++ b/test/perf/README.md @@ -29,7 +29,7 @@ Tests generally go into one of the following suites: - `micro`: A set of micro-benchmarks commonly used to compare programming languages; these results are shown on - [http://julialang.org/](http://julialang.org/). + [https://julialang.org/](https://julialang.org/). - `blas`, `lapack`: Performance tests for linear algebra tasks from low-level operations such as matrix multiplies to higher-level operations like eigenvalue problems. diff --git a/test/perf/array/indexing.jl b/test/perf/array/indexing.jl index 5e5956c3b5ddb..36527b0036a8d 100644 --- a/test/perf/array/indexing.jl +++ b/test/perf/array/indexing.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Performance testing diff --git a/test/perf/array/perf.jl b/test/perf/array/perf.jl index 07b36606faf3a..001b69c078b62 100644 --- a/test/perf/array/perf.jl +++ b/test/perf/array/perf.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license include("../perfutil.jl") diff --git a/test/perf/blas/level1.jl b/test/perf/blas/level1.jl index 5d2531ac01bac..0d1f6837eecb6 100644 --- a/test/perf/blas/level1.jl +++ b/test/perf/blas/level1.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function dottest(n, iter) a = rand(n) diff --git a/test/perf/blas/level2.jl b/test/perf/blas/level2.jl index dd80bad63220a..afa99a662122e 100644 --- a/test/perf/blas/level2.jl +++ b/test/perf/blas/level2.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function gemvtest(n, iter) A = rand(n,n) diff --git a/test/perf/blas/level3.jl b/test/perf/blas/level3.jl index 642307918e8f1..a9c07a27841d3 100644 --- a/test/perf/blas/level3.jl +++ b/test/perf/blas/level3.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # gemm on various size matrices diff --git a/test/perf/blas/perf.jl b/test/perf/blas/perf.jl index b28a72602521d..96847f24c7f98 100644 --- a/test/perf/blas/perf.jl +++ b/test/perf/blas/perf.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license include("../perfutil.jl") diff --git a/test/perf/cat/perf.jl b/test/perf/cat/perf.jl index 33c2bc43d0491..e29db267fa138 100644 --- a/test/perf/cat/perf.jl +++ b/test/perf/cat/perf.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license include("../perfutil.jl") diff --git a/test/perf/kernel/actor_centrality.jl b/test/perf/kernel/actor_centrality.jl index a49f0eb306795..82185c9b823c9 100644 --- a/test/perf/kernel/actor_centrality.jl +++ b/test/perf/kernel/actor_centrality.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license mutable struct Node name::String diff --git a/test/perf/kernel/bench_eu.jl b/test/perf/kernel/bench_eu.jl index ddc7d61880b51..e0280db040a56 100644 --- a/test/perf/kernel/bench_eu.jl +++ b/test/perf/kernel/bench_eu.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Benchmark European option # https://groups.google.com/forum/?hl=en&fromgroups=#!topic/julia-dev/ImhGsqX_IHc diff --git a/test/perf/kernel/getdivgrad.jl b/test/perf/kernel/getdivgrad.jl index 091e40b7712f3..04ba5663d8ab6 100644 --- a/test/perf/kernel/getdivgrad.jl +++ b/test/perf/kernel/getdivgrad.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # https://github.com/JuliaLang/julia/issues/4707 diff --git a/test/perf/kernel/gk.jl b/test/perf/kernel/gk.jl index ec8126e061eec..f54ab5c737333 100644 --- a/test/perf/kernel/gk.jl +++ b/test/perf/kernel/gk.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Grigoriadis Khachiyan Matrix Games. # diff --git a/test/perf/kernel/go_benchmark.c b/test/perf/kernel/go_benchmark.c index a1b2a93dfb52d..ebf8b6596f597 100644 --- a/test/perf/kernel/go_benchmark.c +++ b/test/perf/kernel/go_benchmark.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* Benchmark implementing the board logic for the game of go and * exercising it by playing random games. Derived from diff --git a/test/perf/kernel/go_benchmark.jl b/test/perf/kernel/go_benchmark.jl index 53ebec7fe988e..03b0acb03bfbd 100644 --- a/test/perf/kernel/go_benchmark.jl +++ b/test/perf/kernel/go_benchmark.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Benchmark implementing the board logic for the game of go and # exercising it by playing random games. Derived from diff --git a/test/perf/kernel/indexing.jl b/test/perf/kernel/indexing.jl index 3a60f4033e0d4..1ffc422fa51f7 100644 --- a/test/perf/kernel/indexing.jl +++ b/test/perf/kernel/indexing.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function add1!(x,y) x[y] .+= 1 diff --git a/test/perf/kernel/json.jl b/test/perf/kernel/json.jl index ef46eab03011f..2520ee2e87cc1 100644 --- a/test/perf/kernel/json.jl +++ b/test/perf/kernel/json.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license #JSON Parser #Adapted from http://www.mathworks.com/matlabcentral/fileexchange/23393 diff --git a/test/perf/kernel/laplace.jl b/test/perf/kernel/laplace.jl index 73e3c4ed66915..010adc2bd43e0 100644 --- a/test/perf/kernel/laplace.jl +++ b/test/perf/kernel/laplace.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function laplace_iter_devec(u, dx2, dy2, Niter, N) uout = copy(u) diff --git a/test/perf/kernel/laplace/c_laplace.c b/test/perf/kernel/laplace/c_laplace.c index fb94668022b68..d0721f330d3ef 100644 --- a/test/perf/kernel/laplace/c_laplace.c +++ b/test/perf/kernel/laplace/c_laplace.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include diff --git a/test/perf/kernel/laplace/c_laplace_parallel_update.c b/test/perf/kernel/laplace/c_laplace_parallel_update.c index 4aa5baeb02dc6..b4f6434bcdc57 100644 --- a/test/perf/kernel/laplace/c_laplace_parallel_update.c +++ b/test/perf/kernel/laplace/c_laplace_parallel_update.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include "parameter.h" diff --git a/test/perf/kernel/laplace/c_laplace_parallel_update_pointer.c b/test/perf/kernel/laplace/c_laplace_parallel_update_pointer.c index 1a5f682fd26bb..2935f7f341969 100644 --- a/test/perf/kernel/laplace/c_laplace_parallel_update_pointer.c +++ b/test/perf/kernel/laplace/c_laplace_parallel_update_pointer.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include diff --git a/test/perf/kernel/laplace/cilk_laplace.c b/test/perf/kernel/laplace/cilk_laplace.c index af59525add16d..51204fd176cf3 100644 --- a/test/perf/kernel/laplace/cilk_laplace.c +++ b/test/perf/kernel/laplace/cilk_laplace.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include #include diff --git a/test/perf/kernel/perf.jl b/test/perf/kernel/perf.jl index 620a508365a7d..cf539d1f628ba 100644 --- a/test/perf/kernel/perf.jl +++ b/test/perf/kernel/perf.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license include("../perfutil.jl") diff --git a/test/perf/kernel/raytracer.jl b/test/perf/kernel/raytracer.jl index 5601143bf7a22..78c1a131f95a5 100644 --- a/test/perf/kernel/raytracer.jl +++ b/test/perf/kernel/raytracer.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # raytracer.jl # This is a translation from Java/C++ of the raytracer located at diff --git a/test/perf/kernel/simplex.jl b/test/perf/kernel/simplex.jl index 4d369024a55ce..9fd8c86bf81dd 100644 --- a/test/perf/kernel/simplex.jl +++ b/test/perf/kernel/simplex.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license const Basic = 1 const AtLower = 2 diff --git a/test/perf/kernel/stockcorr.jl b/test/perf/kernel/stockcorr.jl index 5df022c1c669a..991578de021c2 100644 --- a/test/perf/kernel/stockcorr.jl +++ b/test/perf/kernel/stockcorr.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## Test case from Issue #445 diff --git a/test/perf/kernel/ziggurat.jl b/test/perf/kernel/ziggurat.jl index abca7429cf359..1ed2529ba05d0 100644 --- a/test/perf/kernel/ziggurat.jl +++ b/test/perf/kernel/ziggurat.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Based on http://m.seehuhn.de/data/ziggurat/gauss.c diff --git a/test/perf/lapack/eig.jl b/test/perf/lapack/eig.jl index 1a9d9bfb7c79b..48036c481e19c 100644 --- a/test/perf/lapack/eig.jl +++ b/test/perf/lapack/eig.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Real function realeigtest(n, iter) diff --git a/test/perf/lapack/factorizations.jl b/test/perf/lapack/factorizations.jl index 91a0988e321a7..a0894c74aefb0 100644 --- a/test/perf/lapack/factorizations.jl +++ b/test/perf/lapack/factorizations.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function svdtest(n, iter) A = rand(n,n) diff --git a/test/perf/lapack/perf.jl b/test/perf/lapack/perf.jl index 98fd5340597f3..c856be899bbfe 100644 --- a/test/perf/lapack/perf.jl +++ b/test/perf/lapack/perf.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license include("../perfutil.jl") diff --git a/test/perf/micro/java/setup.sh b/test/perf/micro/java/setup.sh index cce248094e900..0e8065660e317 100755 --- a/test/perf/micro/java/setup.sh +++ b/test/perf/micro/java/setup.sh @@ -1,5 +1,5 @@ #!/bin/sh -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license mvn compile exec:java # requires maven and java 7 diff --git a/test/perf/micro/perf.c b/test/perf/micro/perf.c index fa9621bbb1333..df572e9e366c8 100644 --- a/test/perf/micro/perf.c +++ b/test/perf/micro/perf.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license #include diff --git a/test/perf/micro/perf.jl b/test/perf/micro/perf.jl index 72d6c7b4c237a..5f10f1023b3cf 100644 --- a/test/perf/micro/perf.jl +++ b/test/perf/micro/perf.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/perf/micro/scala/build.sbt b/test/perf/micro/scala/build.sbt index c98322a85653e..794c50491c323 100644 --- a/test/perf/micro/scala/build.sbt +++ b/test/perf/micro/scala/build.sbt @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license libraryDependencies ++= Seq( "org.scalanlp" %% "breeze" % "0.10", diff --git a/test/perf/micro/scala/src/main/scala/perf.scala b/test/perf/micro/scala/src/main/scala/perf.scala index 73fd84fee4296..c6ed3797d8617 100644 --- a/test/perf/micro/scala/src/main/scala/perf.scala +++ b/test/perf/micro/scala/src/main/scala/perf.scala @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license import scala.util._ import java.io._ diff --git a/test/perf/perfcomp.jl b/test/perf/perfcomp.jl index 7575107d90948..d07de14286524 100644 --- a/test/perf/perfcomp.jl +++ b/test/perf/perfcomp.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # usage: perfcomp.jl [] # This will run the specified suite (default "all") and compare it to stored diff --git a/test/perf/perfgeneric.jl b/test/perf/perfgeneric.jl index a114a6d703723..4e7dba0fa8051 100644 --- a/test/perf/perfgeneric.jl +++ b/test/perf/perfgeneric.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license #Generic benchmark driver for (testfunc, testname, longtestname, problem_sizes) in testdata diff --git a/test/perf/perfutil.jl b/test/perf/perfutil.jl index 316c1528e9f94..98a4c49b4b833 100644 --- a/test/perf/perfutil.jl +++ b/test/perf/perfutil.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license const mintrials = 5 const mintime = 2000.0 diff --git a/test/perf/report.jl b/test/perf/report.jl index 34513c53d0a8a..ff8872290ab3f 100644 --- a/test/perf/report.jl +++ b/test/perf/report.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using HTTPClient.HTTPC diff --git a/test/perf/shootout/binary_trees.jl b/test/perf/shootout/binary_trees.jl index 9200748615648..042fd81568514 100644 --- a/test/perf/shootout/binary_trees.jl +++ b/test/perf/shootout/binary_trees.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # # The Computer Language Benchmarks Game diff --git a/test/perf/shootout/fannkuch.jl b/test/perf/shootout/fannkuch.jl index 9db19200bdad5..fcafc75dbb32a 100644 --- a/test/perf/shootout/fannkuch.jl +++ b/test/perf/shootout/fannkuch.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # # The Computer Language Benchmarks Game diff --git a/test/perf/shootout/fasta.jl b/test/perf/shootout/fasta.jl index fe8129d1d74c7..1dab880d9e28f 100644 --- a/test/perf/shootout/fasta.jl +++ b/test/perf/shootout/fasta.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license const line_width = 60 diff --git a/test/perf/shootout/k_nucleotide.jl b/test/perf/shootout/k_nucleotide.jl index b28555b1e1c20..73b298d38dda6 100644 --- a/test/perf/shootout/k_nucleotide.jl +++ b/test/perf/shootout/k_nucleotide.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # The Computer Language Benchmarks Game # http://shootout.alioth.debian.org/ diff --git a/test/perf/shootout/mandelbrot.jl b/test/perf/shootout/mandelbrot.jl index 37332cd680f4b..62e76de8a89e0 100644 --- a/test/perf/shootout/mandelbrot.jl +++ b/test/perf/shootout/mandelbrot.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # The Computer Language Benchmarks Game # http://shootout.alioth.debian.org/ diff --git a/test/perf/shootout/meteor_contest.jl b/test/perf/shootout/meteor_contest.jl index ab9a235a28f68..08ca2b9b2ae19 100644 --- a/test/perf/shootout/meteor_contest.jl +++ b/test/perf/shootout/meteor_contest.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # The Computer Language Benchmarks Game # http://shootout.alioth.debian.org/ diff --git a/test/perf/shootout/nbody.jl b/test/perf/shootout/nbody.jl index 156d666daf4be..9d32837ca51b6 100644 --- a/test/perf/shootout/nbody.jl +++ b/test/perf/shootout/nbody.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # # The Computer Language Benchmarks Game diff --git a/test/perf/shootout/nbody_vec.jl b/test/perf/shootout/nbody_vec.jl index 7f1fda5f0646e..657f67c33bbd4 100644 --- a/test/perf/shootout/nbody_vec.jl +++ b/test/perf/shootout/nbody_vec.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # # The Computer Language Benchmarks Game diff --git a/test/perf/shootout/perf.jl b/test/perf/shootout/perf.jl index 21966c6c7b38d..f53182c579b01 100644 --- a/test/perf/shootout/perf.jl +++ b/test/perf/shootout/perf.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license include("../perfutil.jl") diff --git a/test/perf/shootout/pidigits.jl b/test/perf/shootout/pidigits.jl index 76c7975df84c7..175445d4248c0 100644 --- a/test/perf/shootout/pidigits.jl +++ b/test/perf/shootout/pidigits.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function pidigits(N::Int, printOut::Bool) """ diff --git a/test/perf/shootout/regex_dna.jl b/test/perf/shootout/regex_dna.jl index 348c14187ccd5..14e566bb1de55 100644 --- a/test/perf/shootout/regex_dna.jl +++ b/test/perf/shootout/regex_dna.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # The Computer Language Benchmarks Game # http://shootout.alioth.debian.org/ diff --git a/test/perf/shootout/revcomp.jl b/test/perf/shootout/revcomp.jl index b9fc342cb9728..84c54c7d4b95a 100644 --- a/test/perf/shootout/revcomp.jl +++ b/test/perf/shootout/revcomp.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # The Computer Language Benchmarks Game # http://shootout.alioth.debian.org/ diff --git a/test/perf/shootout/spectralnorm.jl b/test/perf/shootout/spectralnorm.jl index 6acb77c14f43a..52b05c63381dd 100644 --- a/test/perf/shootout/spectralnorm.jl +++ b/test/perf/shootout/spectralnorm.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # # The Computer Language Benchmarks Game diff --git a/test/perf/simd/axpy.jl b/test/perf/simd/axpy.jl index 991684d6dd591..69cd62c84a81e 100644 --- a/test/perf/simd/axpy.jl +++ b/test/perf/simd/axpy.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Compute y += a*x using @simd for vectors x and y function simd_axpy( a, x, y ) diff --git a/test/perf/simd/inner.jl b/test/perf/simd/inner.jl index 94b8a423491ce..d8113958560f2 100644 --- a/test/perf/simd/inner.jl +++ b/test/perf/simd/inner.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Inner produce of x and y function inner( x, y ) diff --git a/test/perf/simd/perf.jl b/test/perf/simd/perf.jl index 8d544d53a159f..ebcb1de773884 100644 --- a/test/perf/simd/perf.jl +++ b/test/perf/simd/perf.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license include("../perfutil.jl") diff --git a/test/perf/simd/seismic_fdtd.jl b/test/perf/simd/seismic_fdtd.jl index 966199cd9c160..2386115b16276 100644 --- a/test/perf/simd/seismic_fdtd.jl +++ b/test/perf/simd/seismic_fdtd.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Finite-difference time-domain seismic simulation in 2D using a staggered grid. # The intent is to test performance of @simd on the inner loop of a 2D loop nest. diff --git a/test/perf/simd/sum_reduce.jl b/test/perf/simd/sum_reduce.jl index b57502fccd1df..9ad02e7c9fb7a 100644 --- a/test/perf/simd/sum_reduce.jl +++ b/test/perf/simd/sum_reduce.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function sum_reduce(x, istart, iend) s = zero(eltype(x)) diff --git a/test/perf/sort/perf.jl b/test/perf/sort/perf.jl index 81ab363141c8b..7ac3087ba7743 100644 --- a/test/perf/sort/perf.jl +++ b/test/perf/sort/perf.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import Base.Sort: QuickSort, MergeSort, InsertionSort diff --git a/test/perf/sparse/fem.jl b/test/perf/sparse/fem.jl index 179a81514ca2a..77fb47e7c6782 100644 --- a/test/perf/sparse/fem.jl +++ b/test/perf/sparse/fem.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## FEM benchmark from https://github.com/JuliaLang/julia/issues/9668 diff --git a/test/perf/sparse/getindex.jl b/test/perf/sparse/getindex.jl index af3254e628d2a..03d6a6f36b267 100644 --- a/test/perf/sparse/getindex.jl +++ b/test/perf/sparse/getindex.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## getindex const rep = 20 diff --git a/test/perf/sparse/getindex_skinny.jl b/test/perf/sparse/getindex_skinny.jl index 2666836ba0bf0..94d48cdc55ce6 100644 --- a/test/perf/sparse/getindex_skinny.jl +++ b/test/perf/sparse/getindex_skinny.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Test getindex for skinny sparse matrix function sparse_getindex_skinny_perf() diff --git a/test/perf/sparse/perf.jl b/test/perf/sparse/perf.jl index 5de1774ad565a..6fd0bba1c370b 100644 --- a/test/perf/sparse/perf.jl +++ b/test/perf/sparse/perf.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## Sparse matrix performance include("../perfutil.jl") diff --git a/test/perf/spell/perf.jl b/test/perf/spell/perf.jl index e6ee7bb4bf373..c5a8dee8dc028 100644 --- a/test/perf/spell/perf.jl +++ b/test/perf/spell/perf.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Peter Norvig's Spelling Corrector # based off of the python implementation at http://norvig.com/spell-correct.html diff --git a/test/perf/threads/laplace3d/laplace3d.c b/test/perf/threads/laplace3d/laplace3d.c index 73dddf6a43430..99f83fcfff5b1 100644 --- a/test/perf/threads/laplace3d/laplace3d.c +++ b/test/perf/threads/laplace3d/laplace3d.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license // GCC command line: gcc -fopenmp -mavx2 laplace3d.c -o laplace3d diff --git a/test/perf/threads/laplace3d/laplace3d.jl b/test/perf/threads/laplace3d/laplace3d.jl index c27956b25205d..52287cb36c8e7 100644 --- a/test/perf/threads/laplace3d/laplace3d.jl +++ b/test/perf/threads/laplace3d/laplace3d.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## 3D Laplace equation diff --git a/test/perf/threads/lbm3d/circshift.jl b/test/perf/threads/lbm3d/circshift.jl index ccd4ec7686b44..144ba82754c46 100644 --- a/test/perf/threads/lbm3d/circshift.jl +++ b/test/perf/threads/lbm3d/circshift.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # An in-place version of circshift. Needs generalization -- currently # works only on a 3D hyperplane of a 4D array and supports only unit diff --git a/test/perf/threads/lbm3d/lbm3d.jl b/test/perf/threads/lbm3d/lbm3d.jl index 7639cdd2719de..14df2cea3c46f 100644 --- a/test/perf/threads/lbm3d/lbm3d.jl +++ b/test/perf/threads/lbm3d/lbm3d.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # 3D Lattice Boltzmann (BGK) model of a fluid. # (http://exolete.com/lbm/) diff --git a/test/perf/threads/stockcorr/pstockcorr.jl b/test/perf/threads/stockcorr/pstockcorr.jl index 076feb7cc58b2..0b00c158f82e8 100644 --- a/test/perf/threads/stockcorr/pstockcorr.jl +++ b/test/perf/threads/stockcorr/pstockcorr.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## Test case from Issue #445 ## diff --git a/test/pkg.jl b/test/pkg.jl index afbf89adef932..9e81abeedd5e9 100644 --- a/test/pkg.jl +++ b/test/pkg.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license import Base.Pkg.PkgError diff --git a/test/pollfd.jl b/test/pollfd.jl index 7c7fe9359d784..6751fb0942485 100644 --- a/test/pollfd.jl +++ b/test/pollfd.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # This script does the following # Sets up n unix pipes diff --git a/test/printf.jl b/test/printf.jl index 312b8698c1ba4..4a50982aa368b 100644 --- a/test/printf.jl +++ b/test/printf.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # printf # int diff --git a/test/profile.jl b/test/profile.jl index f9a731c1c5427..b4d53a6cbd8cd 100644 --- a/test/profile.jl +++ b/test/profile.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function busywait(t, n_tries) iter = 0 diff --git a/test/random.jl b/test/random.jl index 330a569e8800c..1403af94cfa19 100644 --- a/test/random.jl +++ b/test/random.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Issue #6573 srand(0); rand(); x = rand(384) diff --git a/test/ranges.jl b/test/ranges.jl index d990f0fad3410..895ee4d873299 100644 --- a/test/ranges.jl +++ b/test/ranges.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # ranges @test size(10:1:0) == (0,) diff --git a/test/read.jl b/test/read.jl index f88863be4d7a8..6f794a84f59bd 100644 --- a/test/read.jl +++ b/test/read.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license mktempdir() do dir diff --git a/test/reduce.jl b/test/reduce.jl index 9bd2130a6c5bb..d27ef930c929f 100644 --- a/test/reduce.jl +++ b/test/reduce.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # fold(l|r) & mapfold(l|r) @test foldl(+, Int64[]) === Int64(0) # In reference to issues #7465/#20144 (PR #20160) diff --git a/test/reducedim.jl b/test/reducedim.jl index 77a9dc537b5a5..4da34397991ef 100644 --- a/test/reducedim.jl +++ b/test/reducedim.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # main tests diff --git a/test/reflection.jl b/test/reflection.jl index 40c06c87306db..57f2a93534503 100644 --- a/test/reflection.jl +++ b/test/reflection.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # code_native / code_llvm (issue #8239) # It's hard to really test these, but just running them should be diff --git a/test/regex.jl b/test/regex.jl index 636c25da954a7..39fa2ad4871cb 100644 --- a/test/regex.jl +++ b/test/regex.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function collect_eachmatch(re, str, overlap=false) [m.match for m in collect(eachmatch(re, str, overlap))] diff --git a/test/repl.jl b/test/repl.jl index 15733ad2feefd..ff42c4c69fc3d 100644 --- a/test/repl.jl +++ b/test/repl.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license const curmod = current_module() const curmod_name = fullname(curmod) diff --git a/test/replcompletions.jl b/test/replcompletions.jl index 1fdebef6872f5..6e0d9a38ebda3 100644 --- a/test/replcompletions.jl +++ b/test/replcompletions.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.REPLCompletions diff --git a/test/replutil.jl b/test/replutil.jl index 468aa48aa3fdd..1a403ed17d6cf 100644 --- a/test/replutil.jl +++ b/test/replutil.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license const curmod = current_module() const curmod_name = fullname(curmod) diff --git a/test/resolve.jl b/test/resolve.jl index 059e23a90cecb..c36220ccb9239 100644 --- a/test/resolve.jl +++ b/test/resolve.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Pkg.Types using Base.Pkg.Query diff --git a/test/rounding.jl b/test/rounding.jl index 63dc10e419a53..32a19d10b1a1b 100644 --- a/test/rounding.jl +++ b/test/rounding.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Small sanity tests to ensure changing the rounding of float functions work using Base.Test diff --git a/test/runtests.jl b/test/runtests.jl index 72585cf098959..e481d4f3e7ceb 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test include("choosetests.jl") diff --git a/test/serialize.jl b/test/serialize.jl index 63aac82a3f55e..dbd1e92ca8440 100644 --- a/test/serialize.jl +++ b/test/serialize.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/sets.jl b/test/sets.jl index c5abf4df21308..e4050fe731099 100644 --- a/test/sets.jl +++ b/test/sets.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Set tests diff --git a/test/show.jl b/test/show.jl index e70904452b64b..d9960abdd184b 100644 --- a/test/show.jl +++ b/test/show.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license const curmod = current_module() const curmod_name = fullname(curmod) diff --git a/test/simdloop.jl b/test/simdloop.jl index 4ea2f82ba8355..57be1d59bd79a 100644 --- a/test/simdloop.jl +++ b/test/simdloop.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function simd_loop_example_from_manual(x, y, z) s = zero(eltype(z)) diff --git a/test/socket.jl b/test/socket.jl index 70bc4a03c505e..aeb76aeff2166 100644 --- a/test/socket.jl +++ b/test/socket.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license @test ip"127.0.0.1" == IPv4(127,0,0,1) @test ip"192.0" == IPv4(192,0,0,0) diff --git a/test/sorting.jl b/test/sorting.jl index 635eea81d127a..28d7020d25458 100644 --- a/test/sorting.jl +++ b/test/sorting.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Order: Forward diff --git a/test/sparse/cholmod.jl b/test/sparse/cholmod.jl index 973620132359e..3f782fa63c18f 100644 --- a/test/sparse/cholmod.jl +++ b/test/sparse/cholmod.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license srand(123) diff --git a/test/sparse/higherorderfns.jl b/test/sparse/higherorderfns.jl index 7e77ed2263bfa..4b9e0a711af7a 100644 --- a/test/sparse/higherorderfns.jl +++ b/test/sparse/higherorderfns.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # These tests cover the higher order functions specialized for sparse arrays defined in # base/sparse/higherorderfns.jl, particularly map[!]/broadcast[!] for SparseVectors and diff --git a/test/sparse/sparse.jl b/test/sparse/sparse.jl index 42b62dab12313..f0ae30b96c99c 100644 --- a/test/sparse/sparse.jl +++ b/test/sparse/sparse.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license @testset "issparse" begin @test issparse(sparse(ones(5,5))) diff --git a/test/sparse/sparsevector.jl b/test/sparse/sparsevector.jl index a2c429dad196f..ca2f1217ceb29 100644 --- a/test/sparse/sparsevector.jl +++ b/test/sparse/sparsevector.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ### Data diff --git a/test/sparse/spqr.jl b/test/sparse/spqr.jl index 2b137d028c28c..eaa659dadd65c 100644 --- a/test/sparse/spqr.jl +++ b/test/sparse/spqr.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.SparseArrays.SPQR using Base.SparseArrays.CHOLMOD diff --git a/test/sparse/umfpack.jl b/test/sparse/umfpack.jl index b1bfd48d64be7..adbce3839a962 100644 --- a/test/sparse/umfpack.jl +++ b/test/sparse/umfpack.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license se33 = speye(3) do33 = ones(3) diff --git a/test/spawn.jl b/test/spawn.jl index 8b7582b191ad0..f6c514c21bc1a 100644 --- a/test/spawn.jl +++ b/test/spawn.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ################################### # Cross Platform tests for spawn. # diff --git a/test/stacktraces.jl b/test/stacktraces.jl index f388e382aed07..ac1814354f12c 100644 --- a/test/stacktraces.jl +++ b/test/stacktraces.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Tests for /base/stacktraces.jl diff --git a/test/staged.jl b/test/staged.jl index 28bb661fe361e..debc3ae58d165 100644 --- a/test/staged.jl +++ b/test/staged.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license @generated function staged_t1(a,b) if a == Int diff --git a/test/statistics.jl b/test/statistics.jl index d6fd138ae7951..9e7dbf09f6374 100644 --- a/test/statistics.jl +++ b/test/statistics.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/strings/basic.jl b/test/strings/basic.jl index 7ecb5bebbf13e..b45b6757d80af 100644 --- a/test/strings/basic.jl +++ b/test/strings/basic.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # constructors @test String([0x61,0x62,0x63,0x21]) == "abc!" diff --git a/test/strings/io.jl b/test/strings/io.jl index dedb7463d48b0..1634e7f7cfa8a 100644 --- a/test/strings/io.jl +++ b/test/strings/io.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # string escaping & unescaping cx = Any[ diff --git a/test/strings/search.jl b/test/strings/search.jl index 8fcfe9c62d5d3..98d4736237509 100644 --- a/test/strings/search.jl +++ b/test/strings/search.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # some test strings astr = "Hello, world.\n" diff --git a/test/strings/types.jl b/test/strings/types.jl index 36289bc000a84..c4ff5227a02e2 100644 --- a/test/strings/types.jl +++ b/test/strings/types.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license ## SubString, RevString and Cstring tests ## diff --git a/test/strings/util.jl b/test/strings/util.jl index 21072a524bf4c..92298b767b07b 100644 --- a/test/strings/util.jl +++ b/test/strings/util.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # padding (lpad and rpad) @test lpad("foo", 3) == "foo" diff --git a/test/subarray.jl b/test/subarray.jl index 4c1ada86728df..fb2d8d8300017 100644 --- a/test/subarray.jl +++ b/test/subarray.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test diff --git a/test/subtype.jl b/test/subtype.jl index 1531837946e81..ec133c33d026b 100644 --- a/test/subtype.jl +++ b/test/subtype.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Bottom using Base.Test diff --git a/test/sysinfo.jl b/test/sysinfo.jl index 261935ac715f1..a34adf572abe4 100644 --- a/test/sysinfo.jl +++ b/test/sysinfo.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # We can't guarantee that these are correct, but we can at least check # that they run diff --git a/test/test.jl b/test/test.jl index 36ca3498929fb..3fbc5f9a96ed3 100644 --- a/test/test.jl +++ b/test/test.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # Test @test @test true diff --git a/test/test_exec.jl b/test/test_exec.jl index 0e53cf236c61d..529f9f63ea493 100644 --- a/test/test_exec.jl +++ b/test/test_exec.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test # Check that the fallback test set throws immediately diff --git a/test/test_sourcepath.jl b/test/test_sourcepath.jl index 1e4f55b5b287c..60985b823a9ce 100644 --- a/test/test_sourcepath.jl +++ b/test/test_sourcepath.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # source path in tasks path = Base.source_path()::String # this variable is leaked to the source script diff --git a/test/testdefs.jl b/test/testdefs.jl index ba48564fb9b3d..e9d7a1bdfadd9 100644 --- a/test/testdefs.jl +++ b/test/testdefs.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license function runtests(name, isolate=true) old_print_setting = Base.Test.TESTSET_PRINT_ENABLE[] diff --git a/test/threads.jl b/test/threads.jl index 995fb2942df64..878db358f0456 100644 --- a/test/threads.jl +++ b/test/threads.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license using Base.Test using Base.Threads diff --git a/test/topology.jl b/test/topology.jl index 66273149e25a0..00a53daa9ea51 100644 --- a/test/topology.jl +++ b/test/topology.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license include("testdefs.jl") addprocs(4; topology="master_slave") diff --git a/test/triplequote.jl b/test/triplequote.jl index 074afec18a22c..35bc1fa593b7a 100644 --- a/test/triplequote.jl +++ b/test/triplequote.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # triple-quote delimited strings @test """abc""" == "abc" diff --git a/test/tuple.jl b/test/tuple.jl index 7756797e9af4d..ca15da42a44c0 100644 --- a/test/tuple.jl +++ b/test/tuple.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license @test convert(Tuple, (1,2)) == (1,2) @testset "indexing" begin diff --git a/test/unicode/UnicodeError.jl b/test/unicode/UnicodeError.jl index 14a4a3db362ca..a5665dff49bbe 100644 --- a/test/unicode/UnicodeError.jl +++ b/test/unicode/UnicodeError.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license @testset "invalid utf8" begin let io = IOBuffer() diff --git a/test/unicode/utf8.jl b/test/unicode/utf8.jl index 1a95da78bd577..093c899e0f3ee 100644 --- a/test/unicode/utf8.jl +++ b/test/unicode/utf8.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license @testset "cesu8 input" begin let ch = 0x10000 diff --git a/test/unicode/utf8proc.jl b/test/unicode/utf8proc.jl index 8e2834b954993..403c2775f9897 100644 --- a/test/unicode/utf8proc.jl +++ b/test/unicode/utf8proc.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license @testset "string normalization" begin # normalize_string (Unicode normalization etc.): diff --git a/test/util/segfault.jl b/test/util/segfault.jl index ebc1a5d8edb90..fef390870776f 100644 --- a/test/util/segfault.jl +++ b/test/util/segfault.jl @@ -1,3 +1,3 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license unsafe_load(convert(Ptr{UInt8},C_NULL)) diff --git a/test/util/throw_error_exception.jl b/test/util/throw_error_exception.jl index 035afea8388ff..d0acea8f647f0 100644 --- a/test/util/throw_error_exception.jl +++ b/test/util/throw_error_exception.jl @@ -1,3 +1,3 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license error("This purposefully dies") diff --git a/test/vecelement.jl b/test/vecelement.jl index 6476beade9ad7..95209b143c28b 100644 --- a/test/vecelement.jl +++ b/test/vecelement.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license make_value{T<:Integer}(::Type{T}, i::Integer) = 3*i%T make_value{T<:AbstractFloat}(::Type{T},i::Integer) = T(3*i) diff --git a/test/version.jl b/test/version.jl index 7f7f691ba775e..5620d66dadb81 100644 --- a/test/version.jl +++ b/test/version.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # parsing tests @test v"2" == VersionNumber(2) diff --git a/test/workspace.jl b/test/workspace.jl index 01d5fb843e241..bf6dd461b35fa 100644 --- a/test/workspace.jl +++ b/test/workspace.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license script = """ # Issue #11948 diff --git a/test/worlds.jl b/test/worlds.jl index 28a89b2e5c9dc..13bb28597c090 100644 --- a/test/worlds.jl +++ b/test/worlds.jl @@ -1,4 +1,4 @@ -# This file is a part of Julia. License is MIT: http://julialang.org/license +# This file is a part of Julia. License is MIT: https://julialang.org/license # tests for accurate updating of method tables diff --git a/ui/repl.c b/ui/repl.c index 769f2281cce3e..0ae1580f7cda0 100644 --- a/ui/repl.c +++ b/ui/repl.c @@ -1,4 +1,4 @@ -// This file is a part of Julia. License is MIT: http://julialang.org/license +// This file is a part of Julia. License is MIT: https://julialang.org/license /* repl.c