Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
docker-py
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
docker-py
Commits
e5edaf4e
Kaydet (Commit)
e5edaf4e
authored
Agu 05, 2014
tarafından
Leonid Mirsky
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Adding value verifications for mem_limit string representation
üst
019468da
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
6 deletions
+20
-6
client.py
docker/client.py
+20
-6
No files found.
docker/client.py
Dosyayı görüntüle @
e5edaf4e
...
@@ -112,12 +112,26 @@ class Client(requests.Session):
...
@@ -112,12 +112,26 @@ class Client(requests.Session):
]
]
if
isinstance
(
mem_limit
,
six
.
string_types
):
if
isinstance
(
mem_limit
,
six
.
string_types
):
units
=
{
'k'
:
1024
,
if
len
(
mem_limit
)
==
0
:
'm'
:
1024
*
1024
,
mem_limit
=
0
'g'
:
1024
*
1024
*
1024
}
else
:
suffix
=
mem_limit
[
-
1
]
.
lower
()
units
=
{
'k'
:
1024
,
if
suffix
in
units
.
keys
():
'm'
:
1024
*
1024
,
mem_limit
=
int
(
mem_limit
[:
-
1
])
*
units
[
suffix
]
'g'
:
1024
*
1024
*
1024
}
suffix
=
mem_limit
[
-
1
]
.
lower
()
if
suffix
in
units
.
keys
():
try
:
digits
=
int
(
mem_limit
[:
-
1
])
except
ValueError
:
message
=
(
'Failed converting the string value for mem_limit ({0}) to a number.'
)
raise
errors
.
DockerException
(
message
.
format
(
mem_limit
[:
-
1
]))
mem_limit
=
digits
*
units
[
suffix
]
else
:
message
=
(
'The specified value for mem_limit parameter ({0}) should specify'
' the units. The postfix should be one of the `k` `m` `g` characters'
)
raise
errors
.
DockerException
(
message
.
format
(
mem_limit
))
if
isinstance
(
ports
,
list
):
if
isinstance
(
ports
,
list
):
exposed_ports
=
{}
exposed_ports
=
{}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment