id stringlengths 16 145 | text stringlengths 1 179k | title stringclasses 1
value |
|---|---|---|
github_using_workflows_jobs/github_using_workflows_0_1.txt | -public-forks)
* [ Approve private fork runs ](/en/actions/managing-workflow-runs/approving-workflow-runs-from-private-forks)
* [ Review deployments ](/en/actions/managing-workflow-runs/reviewing-deployments)
* [ Skip workflow runs ](/en/actions/managing-workflow-runs/skipping-workflow-runs)
* [ Dele... | |
github_using_workflows_jobs/github-series-actions-workflow-dispatch0_15_0.txt | Support Nikhil Akki by becoming a sponsor. Any amount is appreciated!
Sponsor | |
github_using_workflows_jobs/manually-running-a-workflow7_84_0.txt | * Autoscale self-hosted runners
* Run a script before or after a job | |
github_using_workflows_jobs/github_using_workflows_6_19.txt | or-github-
actions#onpull_requestpull_request_targetbranchesbranches-ignore) ."
For example, this workflow will run when someone opens a pull request that
targets a branch whose name starts with ` releases/ ` :
on:
pull_request_target:
types:
- opened
branches:
... | |
github_using_workflows_jobs/how-to-get-the-current-branch-within-github-actions6_50_0.txt |
on:
delete:
...
steps:
- name: Do something
shell: bash
run: |
refname=$(sed -e s:refs/heads/::g -e s:/:-:g <<< ${{ github.event.ref }})
cut refs/heads/ and convert slashes to dashes, .e.g. `
refs/heads/feature/somefeature ` to ` feature-somefeature ` | |
github_using_workflows_jobs/manually-running-a-workflow7_40_0.txt | * Deploying PHP to Azure App Service
* Deploying Docker to Azure App Service | |
github_using_workflows_jobs/manually-running-a-workflow7_86_0.txt | * Proxy servers
* Label runners | |
github_using_workflows_jobs/github_using_jobs_8_2.txt | * [ OpenID Connect in AWS ](/en/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services)
* [ OpenID Connect in Azure ](/en/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure)
* [ OpenID Connect in Google Cloud Platf... | |
github_using_workflows_jobs/251790_30_0.txt | More
* Overview
* Repositories
* Discussions
* Packages
* People | |
github_using_workflows_jobs/251790_88_0.txt | TL;DR Altough tags show up as releases in the Github UI, creating and
pushing a tag does not trigger a release creation event! Since the action
does not trigger the event that my GitHub Action was listening to, it never
ran and therefore never showed up in the Actions section. By configuring the
action workfl... | |
github_using_workflows_jobs/github_using_jobs_8_6.txt | ` , ` windows-2022 ` , ` windows-2019 ` | The ` windows-latest ` label currently uses the Windows 2022 runner image.
` macos-latest ` , ` macos-14 ` [Beta], ` macos-13 ` , ` macos-12 ` , ` macos-11 ` | The ` macos-latest ` workflow label currently uses the macOS 12 runner image.
For more information about Gi... | |
github_using_workflows_jobs/how-to-get-the-current-branch-within-github-actions6_14_0.txt | ##### Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you
use most. | |
github_using_workflows_jobs/how-to-get-the-current-branch-within-github-actions6_78_0.txt | Sanjay Bharwani Sanjay Bharwani
4,033 38 38 silver badges 38 38 bronze badges | |
github_using_workflows_jobs/github_using_workflows_6_17.txt | events occur on the forked repository.
When a first-time contributor submits a pull request to a public repository, a
maintainer with write access may need to approve running workflows on the pull
request. For more information, see " [ Approving workflow runs from public
forks ](/en/actions/managing-workflow-runs/appr... | |
github_using_workflows_jobs/github_using_workflows_5_1.txt |
* [ Approve private fork runs ](/en/actions/managing-workflow-runs/approving-workflow-runs-from-private-forks)
* [ Review deployments ](/en/actions/managing-workflow-runs/reviewing-deployments)
* [ Skip workflow runs ](/en/actions/managing-workflow-runs/skipping-workflow-runs)
* [ Delete a workflow ... | |
github_using_workflows_jobs/manually-running-a-workflow7_56_0.txt | * Publish Node.js packages
* Manage issues and pull requests | |
github_using_workflows_jobs/github_using_workflows_7_8.txt | un artifacts
uses: actions/download-artifact@v4
If you download all workflow run's artifacts, a directory for each artifact is
created using its name.
For more information on syntax, see the [ actions/download-artifact
](https://github.com/actions/download-artifact) action.
## Passing data between jobs i... | |
github_using_workflows_jobs/251790_89_0.txt | All reactions
0 replies | |
github_using_workflows_jobs/github_using_workflows_10_4.txt | r-runners/managing-larger-runners)
* [ Control access to larger runners ](/en/actions/using-github-hosted-runners/about-larger-runners/controlling-access-to-larger-runners)
* [ Run jobs on larger runners ](/en/actions/using-github-hosted-runners/about-larger-runners/running-jobs-on-larger-runners)
* ... | |
github_using_workflows_jobs/251790_44_0.txt | 2) The GITHUB_REF of the release event is a tag ref, and Github will only
reference the workflow YAML files on this tag ref, and the tag ref is created
from the specified branch (master in your cases).
3) You can’t use the event occurs on a branch/tag ref to t… | |
github_using_workflows_jobs/251790_0_0.txt | Skip to content
## Navigation Menu | |
github_using_workflows_jobs/github_using_jobs_4_6.txt | each other, a failure or skip applies to
all jobs in the dependency chain from the point of failure or skip onwards. If
you would like a job to run even if a job it is dependent on did not succeed,
use the ` always() ` conditional expression in ` jobs.<job_id>.if ` .
### Example: Requiring successful dependent jobs
... | |
github_using_workflows_jobs/github_using_workflows_6_25.txt | runs-on: ubuntu-latest
steps:
- run: |
echo "Log level: $LEVEL"
echo "Tags: $TAGS"
echo "Environment: $ENVIRONMENT"
env:
LEVEL: ${{ inputs.logLevel }}
TAGS: ${{ inputs.tags }}
ENVIRONMENT: ${{ input... | |
github_using_workflows_jobs/github_using_workflows_6_0.txt | Skip to main content
[ GitHub Docs ](/en)
Version: Free, Pro, & Team
Search GitHub Docs
* [ GitHub Actions ](/en/actions "GitHub Actions") /
* [ Using workflows ](/en/actions/using-workflows "Using workflows") /
* [ Events that trigger workflows ](/en/actions/using-workflows/events-that-trigger-workflows ... | |
github_using_workflows_jobs/how-to-get-the-current-branch-within-github-actions6_101_0.txt | 8
How to get target branch in github actions on release | |
github_using_workflows_jobs/251790_61_0.txt | *
# {{title}} | |
github_using_workflows_jobs/251790_118_0.txt | * Terms
* Privacy
* Security
* Status
* Docs
* Contact
* Manage cookies
* Do not share my personal information
You can’t perform that action at this time. | |
github_using_workflows_jobs/github_using_workflows_12_2.txt | OpenID Connect in AWS ](/en/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services)
* [ OpenID Connect in Azure ](/en/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure)
* [ OpenID Connect in Google Cloud Platform ]... | |
github_using_workflows_jobs/251790_106_0.txt | Product Feedback
5 participants | |
github_using_workflows_jobs/manually-running-a-workflow7_70_0.txt | * About monitoring and troubleshooting
* Visualization graph | |
github_using_workflows_jobs/github_using_workflows_0_2.txt | d-connect)
* [ OpenID Connect in AWS ](/en/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services)
* [ OpenID Connect in Azure ](/en/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-azure)
* [ OpenID Connect in Goo... | |
github_using_workflows_jobs/251790_19_0.txt | * Pricing
Search or jump to... | |
github_using_workflows_jobs/251790_48_0.txt | Something went wrong.
Quote reply | |
github_using_workflows_jobs/github_using_workflows_6_16.txt | epository ](/en/repositories/managing-your-repositorys-settings-and-
features/enabling-features-for-your-repository/managing-github-actions-
settings-for-a-repository#enabling-workflows-for-forks-of-private-
repositories) ."
**Note:** Workflows triggered by Dependabot pull requests are treated as
though they are from ... | |
github_using_workflows_jobs/how-to-get-the-current-branch-within-github-actions6_0_0.txt | Skip to main content
Stack Overflow | |
github_using_workflows_jobs/github_using_workflows_9_1.txt | ic-forks)
* [ Approve private fork runs ](/en/actions/managing-workflow-runs/approving-workflow-runs-from-private-forks)
* [ Review deployments ](/en/actions/managing-workflow-runs/reviewing-deployments)
* [ Skip workflow runs ](/en/actions/managing-workflow-runs/skipping-workflow-runs)
* [ Delete a ... | |
github_using_workflows_jobs/manually-running-a-workflow7_105_0.txt | * GitHub CLI
* Web browser
## In this article | |
github_using_workflows_jobs/how-to-get-the-current-branch-within-github-actions6_75_0.txt | > The fully-formed ref of the branch or tag that triggered the workflow run.
So it should be ` $GITHUB_REF_NAME ` instead of ` $GITHUB_REF ` | |
github_using_workflows_jobs/how-to-get-the-current-branch-within-github-actions6_97_0.txt | See more linked questions
#### Related | |
github_using_workflows_jobs/manually-running-a-workflow7_83_0.txt | * About self-hosted runners
* Add self-hosted runners | |
github_using_workflows_jobs/manually-running-a-workflow7_108_0.txt | To run a workflow manually, the workflow must be configured to run on the `
workflow_dispatch ` event.
To trigger the ` workflow_dispatch ` event, your workflow must be in the
default branch. For more information about configuring the ` workflow_dispatch
` event, see " Events that trigger workflows ." | |
github_using_workflows_jobs/251790_39_0.txt | The repository is the following: https://github.com/GuillaumeCleme/AEM-
Remote-ClientLib-Proxy Action Workflows taken from available actions-starter
files and created using the Actions tab “New Workflow” option. I tried
triggering multiple changes, fixing line endings, tabbing, etc. but the `
mvndeploy.yml ` action n... | |
github_using_workflows_jobs/manually-running-a-workflow7_25_0.txt | * Approve private fork runs
* Review deployments | |
github_using_workflows_jobs/how-to-get-the-current-branch-within-github-actions6_25_0.txt | edited Nov 1, 2021 at 19:34
Taylor D. Edmiston | |
github_using_workflows_jobs/251790_76_0.txt | # {{title}}
Something went wrong. | |
github_using_workflows_jobs/how-to-get-the-current-branch-within-github-actions6_22_0.txt | I'm building Docker images with Github Actions and want to tag images with the
branch name.
I found the ` GITHUB_REF ` variable, but it results in ` refs/heads/feature-
branch-1 ` and I need only ` feature-branch-1 ` . | |
astropy_Time/time.html7_10_0.txt | The ` utc ` parameter in the examples above specifies Coordinated Universal
Time (UTC), the world clock known affectionately as “Greenwich Mean Time”
which is the basis for all of the world’s timezones. If you are comfortable
dealing directly with UTC instead of your local timezone, you can build and
display dates wit... | |
astropy_Time/internet-time-service-its3_21_0.txt | The file nistime-32bit.exe can be downloaded from this site. It is a ready-to-
run client for most versions of Windows. It supports a number of different
options, and has extensive help messages for each option.
When you connect to this site, you should use the username “anonymous” and
your email address as the passwo... | |
astropy_Time/deltaut1.html2_36_0.txt | ### ` DUT1Error ` — Error for difference between UT1 and UTC
M -by-1 array
Error for difference between UT1 and UTC (UT1-UTC), according to the
International Astronomical Union (IAU) 2000A resolutions, specified as an M
-by-1 array, in seconds. | |
astropy_Time/time.html7_49_0.txt | * The next time the IERS declares a new leap second that is not listed in Skyfield’s built-in tables, Skyfield’s UTC time will be off by 1 second for every date that falls after the leap second.
* As the Earth’s rotation speeds up or slows down in the coming years more than was predicted in Skyfield’s built-in UT1... | |
astropy_Time/time.html7_59_0.txt | Greenwich Mean Sidereal Time in hours, in the range 0.0 ≤ ` gmst ` < 24.0.
` gast `
Greenwich Apparent Sidereal Time in hours, in the range 0.0 ≤ ` gast ` < 24.0.
` M ` , ` MT ` | |
astropy_Time/internet-time-service-its3_1_0.txt | Here’s how you know
Here’s how you know | |
astropy_Time/deltaut1.html2_11_0.txt | * Documentation
* Examples
* Functions
* Videos
* Answers
Main Content | |
astropy_Time/astropy_Time_39_0.txt | kwargs _ ) [ [source] ](../_modules/astropy/time/core.html#Time.strptime) #
Parse a string to a Time according to a format specification. See [ `
time.strptime ` ](https://docs.python.org/3/library/time.html#time.strptime
"\(in Python v3.12\)") documentation for format specification.
>>> Time.... | |
astropy_Time/astropy_Time_31_0.txt | isclose ( _ other _ , _ atol = None _ ) #
Returns a boolean or boolean array where two Time objects are element-wise
equal within a time tolerance.
This evaluates the expression below:
abs(self - other) <= atol
Parameters :
**other** ` Time `
Time object for compariso... | |
astropy_Time/time.html7_19_0.txt | Note that Skyfield’s ` astimezone() ` method will detect that you are using
a ` pytz ` timezone and automatically call its ` normalize() ` method for
you — which makes sure that daylight savings time is handled correctly — to
spare you from having to make the call yourself.
If you want a ` Time ` to hold an enti... | |
astropy_Time/time.html7_32_0.txt | The resulting ` Time ` object will hold an array of times. As illustrated in
the previous section (on leap seconds), you can use a Python ` for ` to print
each time separately:
t = ts.utc(2020, 6, 16, 7, range(4))
for s in t.utc_strftime('%Y-%m-%d %H:%M'):
print(s)
... | |
astropy_Time/deltaut1.html2_30_0.txt | Custom list of Earth orientation data, specified in a MAT-file.
### ` action ` — Out-of-range action
Warning (default) | action | |
astropy_Time/astropy_Time_42_0.txt | to_string ( ) #
Output a string representation of the Time or TimeDelta object.
Similar to ` str(self.value) ` (which uses numpy array formatting) but array
values are evaluated only for the items that actually are output. For large
arrays this can be a substantial performance improvement.
Returns :
... | |
astropy_Time/time.html7_23_0.txt | First, expect an occasional jump or discrepancy if you are striding forward
through time using the UTC minute, hour, or day. For example, an hourly plot
of planet’s position will show the planet moving slightly farther during an
hour that was lengthened by a leap second than during other hours of the year.
An Earth sat... | |
astropy_Time/internet-time-service-its3_48_0.txt | * Site Privacy
* Accessibility
* Privacy Program
* Copyrights
* Vulnerability Disclosure
* No Fear Act Policy
* FOIA
* Environmental Policy
* Scientific Integrity
* Information Quality Standards
* Commerce.gov
* Science.gov
* USA.gov
* Vote.gov
| |
astropy_Time/internet-time-service-its3_29_0.txt | There are other ways of realizing the leap second:
1) Some systems implement the leap second by repeating second 0 of the next
day instead of second 23:59:59 of the leap second day. This has the same
ambiguity problem of the NIST standard method, and also puts the extra second
in the wrong day. That is, the time tag a... | |
astropy_Time/time.html7_57_0.txt | When you create a ` Time ` it goes ahead and computes its ` tt `
Terrestrial Time attribute starting from whatever time argument you provide.
If you provide the ` utc ` parameter, for example, then the date first
computes and sets ` tai ` and then computes and sets ` tt ` . Each of the
other time attributes only ... | |
astropy_Time/item_list.htm4_9_0.txt | Coordinated Universal Time (UTC)
Coordinated Universal Time (UTC) is a compromised time scale introduced in
1972. To ensure that UTC is kept within 0.9 seconds of UT1, provision was made
for the introduction of " leap second" in the UTC scale whenever necessary.
Thus, UTC differs from International Atomic Time (TAI) b... | |
astropy_Time/time.html7_3_0.txt | * UTC — Coordinated Universal Time (“Greenwich Time”)
* UT1 — Universal Time
* TAI — International Atomic Time
* TT — Terrestrial Time
* TDB — Barycentric Dynamical Time (the JPL’s T eph )
And here are links to the API documentation for time scales and times: | |
astropy_Time/astropy_Time_12_0.txt | mask #
| |
astropy_Time/astropy_Time_7_0.txt | in_subfmt #
Unix wildcard pattern to select subformats for parsing string input times.
| |
astropy_Time/time.html7_46_0.txt | Finally, Barycentric Dynamical Time (TDB) runs at approximately the rate that
an atomic clock would run if it were at rest with respect to the Solar System
barycenter, and therefore unaffected by the Earth’s motion. The acceleration
that Earth experiences in its orbit — sometimes speeding up, sometimes slowing
down — v... | |
astropy_Time/time.html7_25_0.txt | * ` Time.utc_datetime_and_leap_second() `
* ` Time.astimezone_and_leap_second() `
The leap-second return value is usually ` 0 ` but jumps to ` 1 ` when
Skyfield is forced to represent a leap second as a ` datetime ` with the
incorrect time 23:59:59. | |
astropy_Time/internet-time-service-its3_15_0.txt | * Laboratory Homepage
* Division Homepage
* Official United States Time
* Groups Expand or Collapse
* Atomic Devices and Instrumentation
* Ion Storage
* Neutral Atom Optical Clocks
* Phase Noise Metrology
* Precision Photonic Synthesis
* Quantum & Nonlinear Nanophotonics
*... | |
astropy_Time/deltaut1.html2_16_0.txt | ## Description
example | |
astropy_Time/internet-time-service-its3_22_0.txt | The FTP client software in some versions of Microsoft Windows cannot connect
to this public site. There are a number of third-party programs that can
access this site from a Windows system.
You may also get client software and documentation for many operating systems
from the Network Time Foundation at www.ntp.org . | |
astropy_Time/time.html7_7_0.txt | As you can see from these four successive days in history, Pope Gregory had
the calendar jump directly from the old Julian calendar date 1582 October 4 to
the new Gregorian calendar date 1582 October 15, bringing the date of Easter
back into sync with the equinox. Skyfield provides two constants for popular
cutoff date... | |
astropy_Time/deltaut1.html2_53_0.txt | * Trust Center
* Trademarks
* Privacy Policy
* Preventing Piracy
* Application Status
© 1994-2024 The MathWorks, Inc. | |
astropy_Time/internet-time-service-its3_17_0.txt | Linkedin
Twitter | |
astropy_Time/astropy_Time_9_0.txt | isscalar #
| |
astropy_Time/deltaut1.html2_25_0.txt |
mjd = mjuliandate([2015 12 28;2016 1 10])
[dUT1,dUT1Err] = deltaUT1(mjd,'Source','aeroiersdata.mat')
mjd =
57384
57397
dUT1 =
0.0886
0.0648
dUT1Err =
1.0e-05 *
0.3900
0.7300
## Input Arguments | |
astropy_Time/time.html7_38_0.txt | Simply slice across the second dimension of the array to pull a particular
calendar tuple out of the larger result:
print(t.utc[:,2])
[2014. 1. 3. 0. 0. 0.]
| |
astropy_Time/internet-time-service-its3_46_0.txt | 100 Bureau Drive
Gaithersburg, MD 20899
301-975-2000
Webmaster | Contact Us | Our Other Offices | |
astropy_Time/deltaut1.html2_44_0.txt | ×
Select a Web Site | |
astropy_Time/internet-time-service-its3_5_0.txt | * Topics
* All Topics
* Advanced communications
* Artificial intelligence
* Bioscience
* Buildings and construction
* Chemistry
* Climate
* Cybersecurity
* Electronics
* Energy | |
astropy_Time/astropy_Time_38_0.txt | squeeze ( _ * args _ , _ ** kwargs _ ) #
Return an instance with single-dimensional shape entries removed.
Parameters are as for [ ` squeeze() `
](https://numpy.org/doc/stable/reference/generated/numpy.ndarray.squeeze.html#numpy.ndarray.squeeze
"\(in NumPy v1.26\)") . All internal data are views of the ... | |
astropy_Time/deltaut1.html2_41_0.txt | * Estimate Sun Analemma Using Planetary Ephemerides and ECI to AER Transformation
× | |
astropy_Time/astropy_Time_33_0.txt | min ( _ axis = None _ , _ out = None _ , _ keepdims = False _ ) #
Minimum along a given axis.
This is similar to [ ` min() `
](https://numpy.org/doc/stable/reference/generated/numpy.ndarray.min.html#numpy.ndarray.min
"\(in NumPy v1.26\)") , but adapted to ensure that the full precision given by
the... | |
astropy_Time/deltaut1.html2_54_0.txt | * * * * * *
Join the conversation | |
astropy_Time/internet-time-service-its3_12_0.txt | * Video Gallery
* Image Gallery
* Media Contacts
* About NIST | |
astropy_Time/deltaut1.html2_33_0.txt | * None — Does not display warning or error.
Data Types: ` string ` | |
astropy_Time/astropy_Time_1_2.txt | g, **kwargs) | Parse a string to a Time according to a format specification.
` swapaxes ` (*args, **kwargs) | Return an instance with the given axes interchanged.
` take ` (indices[, axis, out, mode]) | Return a new instance formed from the elements at the given indices.
` to_datetime ` ([timezone, le... | |
astropy_Time/astropy_Time_22_0.txt | writeable #
Methods Documentation
| |
astropy_Time/item_list.htm4_18_0.txt | The world has been divided into 24 time zones, each centred on lines of
longitude at 15 degrees intervals so that every country falls within one or
more agreed time zone. The Greenwich Meridian (also called Prime Meridian)
lies at centre of the first zone. Places west of this are one or more hours
behind while those ea... | |
astropy_Time/deltaut1.html2_28_0.txt | Specify optional pairs of arguments as ` Name1=Value1,...,NameN=ValueN ` ,
where ` Name ` is the argument name and ` Value ` is the corresponding value.
Name-value arguments must appear after other arguments, but the order of the
pairs does not matter.
Before R2021a, use commas to separate each name and value, and enc... | |
astropy_Time/internet-time-service-its3_38_0.txt | ### Daytime Protocol (RFC-867)
This protocol is widely used by small computers and dedicated hardware systems
running MS-DOS and similar operating systems. The server listens on port 13,
and responds to requests in tcp/ip format. The standard does not specify an
exact format for the Daytime Protocol, but requires tha... | |
astropy_Time/astropy_Time_44_0.txt | transpose ( _ * args _ , _ ** kwargs _ ) #
Return an instance with the data transposed.
Parameters are as for [ ` transpose() `
](https://numpy.org/doc/stable/reference/generated/numpy.ndarray.transpose.html#numpy.ndarray.transpose
"\(in NumPy v1.26\)") . All internal data are views of the data of the
o... | |
astropy_Time/time.html7_22_0.txt | Note that Skyfield has no problem with a calendar tuple that has hours,
minutes, or — as in this case — seconds that are out of range. When we
provided a range of numbers 58 through 62 as seconds, Skyfield added exactly
the number of seconds we specified to the end of June and let the value
overflow cleanly into the be... | |
astropy_Time/time.html7_24_0.txt |
datetime(2012, 6, 30, 19, 59, 60)
Traceback (most recent call last):
...
ValueError: second must be in 0..59
That limitation is why Skyfield offers a second version of each method that
returns a ` datetime ` . These fancier methods return a leap-second flag as
an additi... | |
astropy_Time/internet-time-service-its3_41_0.txt | This simple protocol is now used by only about 2% of ITS customers. It returns
a 32-bit unformatted binary number that represents the time in UTC seconds
since January 1, 1900. The server listens for Time Protocol requests on port
37, and responds in either tcp/ip or udp/ip formats. Conversion to local time
(if necessa... | |
astropy_Time/time.html7_56_0.txt |
load.timescale(delta_t=67.2810).utc((2014, 1, 1))
## Values cached on the Time object ¶ | |
astropy_Time/astropy_Time_29_0.txt | flatten ( _ * args _ , _ ** kwargs _ ) #
Return a copy with the array collapsed into one dimension.
Parameters are as for [ ` flatten() `
](https://numpy.org/doc/stable/reference/generated/numpy.ndarray.flatten.html#numpy.ndarray.flatten
"\(in NumPy v1.26\)") .
get_delta_ut1_utc ( _ iers_table = No... | |
astropy_Time/astropy_Time_26_0.txt | copy ( _ format = None _ ) #
Return a fully independent copy the Time object, optionally changing the
format.
If ` format ` is supplied then the time format of the returned Time object
will be set accordingly, otherwise it will be unchanged from the original.
In this method a full copy of the internal t... | |
astropy_Time/internet-time-service-its3_32_0.txt | Most versions of UNIX (and its derivatives, such as Linux, FreeBSD, ...) have
support for the leap second built into the operating system. Many desktop
systems do not have any native support at all for leap seconds, although there
are some third-party applications that do this.
The simple text file, leap-seconds.list... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.