Vous avez cherché: point (Coréen - Anglais)

Coréen

Traduction

point

Traduction

Anglais

Traduction
Traduction

Traduisez instantanément des textes, des documents et des voix avec Lara

Traduire maintenant

Contributions humaines

Réalisées par des traducteurs professionnels, des entreprises, des pages web ou traductions disponibles gratuitement.

Ajouter une traduction

Coréen

Anglais

Infos

Coréen

decimal point number

Anglais

decimal point number

Dernière mise à jour : 2011-10-23
Fréquence d'utilisation : 1
Qualité :

Coréen

point-and-click 자동화

Anglais

point-and-click automation

Dernière mise à jour : 2011-02-26
Fréquence d'utilisation : 2
Qualité :

Coréen

point hopecity in alaska usa

Anglais

point hope

Dernière mise à jour : 2011-10-23
Fréquence d'utilisation : 1
Qualité :

Coréen

실수형(floating-point numbers)

Anglais

string

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Coréen

michael kropfbergermount point of storage

Anglais

michael kropfberger

Dernière mise à jour : 2011-10-23
Fréquence d'utilisation : 1
Qualité :

Coréen

게임resulting score of a game with no point

Anglais

k d e

Dernière mise à jour : 2011-10-23
Fréquence d'utilisation : 1
Qualité :

Coréen

종료하려면 누르십시오... point has been set and is valid

Anglais

click to set

Dernière mise à jour : 2011-10-23
Fréquence d'utilisation : 1
Qualité :

Coréen

returns the double (floating point) value of var.

Anglais

this function is an alias of floatval().

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Coréen

pppoe(point-to-point protocol over ethernet)

Anglais

point-to-point protocol over ethernet

Dernière mise à jour : 2006-09-06
Fréquence d'utilisation : 1
Qualité :

Coréen

the number of significant digits displayed in floating point numbers.

Anglais

enforce year 2000 compliance (will cause problems with non-compliant browsers)

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Coréen

a frequent security mistake made at this point is to allow apache root permissions.

Anglais

a frequent security mistake made at this point is to allow apache root permissions, or to escalate apache 's abilitites in some other way.

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Coréen

in order for this to work, your browscap configuration file setting must point to the correct location of the browscap.ini file.

Anglais

the only way to test if cookies are accepted is to set one with setcookie(), reload, and check for the value.

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Coréen

see also: odbc_field_scale() to get the scale of a floating point number.

Anglais

prev

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Coréen

number. these have both a length and a precision (the number of digits after the decimal point).

Anglais

if the database is successfully created, a dbase_identifier is returned, otherwise false is returned.

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Coréen

the cpdf_rmoveto() function set the current point relative to the coordinates x-coor and y-coor.

Anglais

the optional parameter mode determines the unit length.

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Coréen

as soon as this point is reached, it's time to touch the heart of php and take a look at its core, the c code that makes php go.

Anglais

prev

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Coréen

mb_ereg_search_setpos() sets the starting point of match for mb_ereg_search().

Anglais

mb_ereg_search_setpos() sets the starting point of match for mb_ereg_search().

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Coréen

the cpdf_translate() function set the origin of coordinate system to the point (x-coor, y-coor).

Anglais

the optional parameter mode determines the unit length.

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Coréen

if you find yourself using this function all the time, a much better way to define the encoding is to set ps.default_encoding in the configuration file to point to the right encoding file and all fonts you load will automatically have the right encoding.

Anglais

if you find yourself using this function all the time, a much better way to define the encoding is to set ps.default_encoding in the configuration file to point to the right encoding file and all fonts you load will automatically have the right encoding.

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Coréen

an assertion is a test on the characters following or preceding the current matching point that does not actually consume any characters. the simple assertions coded as \b, \b, \a, \z, \z, ^ and $are described above. more complicated assertions are coded as subpatterns. there are two kinds: those that look ahead of the current position in the subject string, and those that look behind it. an assertion subpattern is matched in the normal way, except that it does not cause the current matching position to be changed. lookahead assertions start with (?= for positive assertions and (?! for negative assertions. for example, \w+(?=;) matches a word followed by a semicolon, but does not include the semicolon in the match, and foo(?!bar) matches any occurrence of "foo" that is not followed by "bar". note that the apparently similar pattern (?!foo)bar does not find an occurrence of "bar" that is preceded by something other than "foo"; it finds any occurrence of "bar" whatsoever, because the assertion (?!foo) is always true when the next three characters are "bar". a lookbehind assertion is needed to achieve this effect. lookbehind assertions start with (? = for positive assertions and (?! for negative assertions. for example, (? !foo)bar does find an occurrence of "bar" that is not preceded by "foo". the contents of a lookbehind assertion are restricted such that all the strings it matches must have a fixed length. however, if there are several alternatives, they do not all have to have the same fixed length. thus (? =bullock_bar_donkey) is permitted, but (? !dogs?_bar_cats?) causes an error at compile time. branches that match different length strings are permitted only at the top level of a lookbehind assertion. this is an extension compared with perl 5.005, which requires all branches to match the same length of string. an assertion such as (? =ab(c_bar_de)) is not permitted, because its single top-level branch can match two different lengths, but it is acceptable if rewritten to use two top-level branches: (? =abc_bar_abde) the implementation of lookbehind assertions is, for each alternative, to temporarily move the current position back by the fixed width and then try to match. if there are insufficient characters before the current position, the match is deemed to fail. lookbehinds in conjunction with once-only subpatterns can be particularly useful for matching at the ends of strings; an example is given at the end of the section on once-only subpatterns. several assertions (of any sort) may occur in succession. for example, (? =\d{3})(? !999)foo matches "foo" preceded by three digits that are not "999". notice that each of the assertions is applied independently at the same point in the subject string. first there is a check that the previous three characters are all digits, then there is a check that the same three characters are not "999". this pattern does not match "foo" preceded by six characters, the first of which are digits and the last three of which are not "999". for example, it doesn't match "123abcfoo". a pattern to do that is (? =\d{3}...)(? !999)foo this time the first assertion looks at the preceding six characters, checking that the first three are digits, and then the second assertion checks that the preceding three characters are not "999". assertions can be nested in any combination. for example, (? =(? !foo)bar)baz matches an occurrence of "baz" that is preceded by "bar" which in turn is not preceded by "foo", while (? =\d{3}(?!999)...)foo is another pattern which matches "foo" preceded by three digits and any three characters that are not "999". assertion subpatterns are not capturing subpatterns, and may not be repeated, because it makes no sense to assert the same thing several times. if any kind of assertion contains capturing subpatterns within it, these are counted for the purposes of numbering the capturing subpatterns in the whole pattern. however, substring capturing is carried out only for positive assertions, because it does not make sense for negative assertions. assertions count towards the maximum of 200 parenthesized subpatterns.

Anglais

it is more efficient to use a character class like [aeiou] than a set of alternatives such as (a_bar_e_bar_i_bar_o_bar_u).

Dernière mise à jour : 2011-10-24
Fréquence d'utilisation : 1
Qualité :

Avertissement : un formatage HTML invisible est présent

Obtenez une traduction de meilleure qualité grâce aux
9,570,772,009 contributions humaines

Les utilisateurs demandent maintenant de l'aide :



Nous utilisons des cookies pour améliorer votre expérience utilisateur sur notre site. En poursuivant votre navigation, vous déclarez accepter leur utilisation. En savoir plus. OK