- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我正在使用 Docker 创建容器应用程序,然后将其部署到 kubernetes engine但是当应用程序被初始化时,我得到这个错误:
err: open C:\Go/lib/time/zoneinfo.zip: no such file or directory
最佳答案
您可能会考虑构建您的 Go 应用程序 with Go 1.15 (2020 年 8 月,两年后)
New embedded tzdata package
Go 1.15 includes a new package,
time/tzdata
, that permits embedding the timezone database into a program.
- Importing this package (as
import _ "time/tzdata"
) permits the program to find timezone information even if the timezone database is not available on the local system.- You can also embed the timezone database by building with
-tags timetzdata
.Either approach increases the size of the program by about 800 KB.
这样,一旦作为 Docker 镜像部署到 Kubernetes 引擎,它就不必尝试加载任何时区信息,因为这些信息已嵌入其程序中。
This solution has the drawback that the timezone information version is linked to the version of Go you use for building.
If you keep using a fixed version of Go for your project, you will keep timezones from that version.
Being able to update the timezone information independently from the Go version (update every time you rebuild the Docker image for deploy) might be a better choice.
作为示例,请参见支石墓的 answer .
关于go - 如何创建包含 zoneinfo.zip 的二进制文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52489347/
在 Go 程序中,我调用 time.LoadLocation("Europe/Berlin") ,它返回一个错误,指出 open/usr/local/go/lib/time/zoneinfo.zip
本文整理了Java中libcore.util.ZoneInfo.makeTimeZone()方法的一些代码示例,展示了ZoneInfo.makeTimeZone()的具体用法。这些代码示例主要来源于G
本文整理了Java中libcore.util.ZoneInfo.clone()方法的一些代码示例,展示了ZoneInfo.clone()的具体用法。这些代码示例主要来源于Github/Stackove
本文整理了Java中libcore.util.ZoneInfo.getOffset()方法的一些代码示例,展示了ZoneInfo.getOffset()的具体用法。这些代码示例主要来源于Github/
本文整理了Java中libcore.util.ZoneInfo.setID()方法的一些代码示例,展示了ZoneInfo.setID()的具体用法。这些代码示例主要来源于Github/Stackove
本文整理了Java中libcore.util.ZoneInfo.getID()方法的一些代码示例,展示了ZoneInfo.getID()的具体用法。这些代码示例主要来源于Github/Stackove
本文整理了Java中libcore.util.ZoneInfo.()方法的一些代码示例,展示了ZoneInfo.()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Mave
本文整理了Java中libcore.util.ZoneInfo.hasSameRules()方法的一些代码示例,展示了ZoneInfo.hasSameRules()的具体用法。这些代码示例主要来源于G
关闭。这个问题是off-topic .它目前不接受答案。 想改善这个问题吗? Update the question所以它是 on-topic对于堆栈溢出。 10 年前关闭。 Improve this
我在我的一个测试用例中找到了这个Api Sun.util.calendar.zoneInfo,当我对其进行编译时,我得到了警告消息,上面指出sun.util.calender.ZoneInfo是内部专
我正在编写一个程序,需要能够读取 Linux 上的时区文件。这意味着我需要能够在各个发行版中始终如一地找到它们。据我所知,它们总是位于/usr/share/zoneinfo。问题是,它们实际上总是位于
我正在使用 Docker 创建容器应用程序,然后将其部署到 kubernetes engine但是当应用程序被初始化时,我得到这个错误: err: open C:\Go/lib/time/zonein
本文整理了Java中com.google.cloud.dns.ZoneInfo.of()方法的一些代码示例,展示了ZoneInfo.of()的具体用法。这些代码示例主要来源于Github/Stacko
我有兴趣检索用户当前在 JavaScript 中为其操作系统设置的当前区域信息字符串(“美国/洛杉矶”、“欧洲/伦敦”等)。我已经找到了如何以秒为单位获取当前偏移量、特定日期的偏移量和不太精确的时区(
在 Go 中,您可以通过添加指向要用于时区信息的特定文件的 ZONEINFO 环境变量来指定要使用的特定 zoneinfo.zip 文件。这很棒,因为它使我能够确保我在前端和后端使用的 IANA 时区
本文整理了Java中com.google.cloud.dns.ZoneInfo.getGeneratedId()方法的一些代码示例,展示了ZoneInfo.getGeneratedId()的具体用法。
本文整理了Java中com.google.cloud.dns.ZoneInfo.hashCode()方法的一些代码示例,展示了ZoneInfo.hashCode()的具体用法。这些代码示例主要来源于G
本文整理了Java中com.google.cloud.dns.ZoneInfo.getDescription()方法的一些代码示例,展示了ZoneInfo.getDescription()的具体用法。
本文整理了Java中com.google.cloud.dns.ZoneInfo.getNameServers()方法的一些代码示例,展示了ZoneInfo.getNameServers()的具体用法。
本文整理了Java中com.google.cloud.dns.ZoneInfo.getNameServerSet()方法的一些代码示例,展示了ZoneInfo.getNameServerSet()的具
我是一名优秀的程序员,十分优秀!