英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

profile    音标拼音: [pr'of,ɑɪl]
n. 侧面,轮廓,人物素描
vt. 描绘…轮廓,评论人物

侧面,轮廓,人物素描描绘…轮廓,评论人物

profile
基本资料;外形;侧录

profile
设定档 外形 轮廓

profile
n 1: an analysis (often in graphical form) representing the
extent to which something exhibits various characteristics;
"a biochemical profile of blood"; "a psychological profile
of serial killers"
2: an outline of something (especially a human face as seen from
one side)
3: biographical sketch
4: degree of exposure to public notice; "that candidate does not
have sufficient visibility to win an election" [synonym:
{visibility}, {profile}]
5: a vertical section of the Earth's crust showing the different
horizons or layers
v 1: write about; "The author of this article profiles a famous
painter"
2: represent in profile, by drawing or painting

Profile \Pro"file\, v. t. [imp. & p. p. {Profiled}; p. pr. & vb.
n. {Profiling}] [Cf. F. profiler, It. profilare. See
{Profile}, n.]
1. to draw the outline of; to draw in profile, as an
architectural member.
[1913 Webster]

2. (Mech.) To shape the outline of an object by passing a
cutter around it.
[1913 Webster]

{Profiling machine}, a jigging machine.
[1913 Webster]


Profile \Pro"file\, n. [It. profilo, fr. L. pro before filum a
thread, an outline, shape: cf. F. profil. See {File} arow,
and cf. {Purfle}, {Purl}, a fringe.]
1. An outline, or contour; as, the profile of an apple.
[1913 Webster]

2. (Paint & Sculp.) A human head represented sidewise, or in
a side view; the side face or half face.
[1913 Webster]

3.
(a) (Arch.) A section of any member, made at right angles
with its main lines, showing the exact shape of
moldings and the like.
(b) (Civil Engin.) A drawing exhibiting a vertical section
of the ground along a surveyed line, or graded work,
as of a railway, showing elevations, depressions,
grades, etc.
[1913 Webster]

146 Moby Thesaurus words for "profile":
Clio, Muse of history, adventures, analysis, annals, autobiography,
bank, beam, biographical sketch, biography, blueprint, border,
broad lines, broadside, brouillon, cameo, cartoon, case history,
catalog, cataloging, character, character sketch, characterization,
chart, cheek, chop, chronicle, chronicles, chronology, coast,
confessions, configuration, contour, copy, curriculum vitae,
delineate, delineation, depiction, describe, description, design,
details, diagram, diary, draft, draw, drawing, ebauche, elevation,
esquisse, evocation, examination, experiences, features,
figuration, figure, flank, fortunes, framework, galbe, gestalt,
graph, graphic account, ground plan, hagiography, hagiology, hand,
handedness, haunch, head, hip, historiography, history, house plan,
ichnography, image, imagery, impression, itemization, journal,
jowl, laterality, legend, life, life and letters, life story, limn,
limning, line, lineaments, lineation, lines, list, main features,
many-sidedness, martyrology, memoir, memoirs, memorabilia,
memorial, memorials, miniature, multilaterality, necrology,
obituary, outline, particularization, pattern, photobiography,
photograph, picture, planking, plot, portrait, portraiture,
portrayal, projection, quarter, record, relief, rendering,
rendition, representation, resume, rough, shapes, shore, side,
siding, silhouette, skeleton, sketch, specification, statistics,
story, study, survey, table, temple, theory of history, tournure,
unilaterality, vignette, vivid description, word painting,
working drawing

1. A control file for a program, especially a text file
automatically read from each user's home directory and
intended to be easily modified by the user in order to
customise the program's behaviour. Used to avoid {hard-coded}
choices (see also {dot file}, {rc file}).

2. A report on the amounts of time spent in each routine of a
program, used to find and {tune} away the {hot spots} in it.
This sense is often verbed. Some profiling modes report units
other than time (such as call counts) and/or report at
granularities other than per-routine, but the idea is similar.


请选择你想看的字典辞典:
单词字典翻译
Profile查看 Profile 在百度字典中的解释百度英翻中〔查看〕
Profile查看 Profile 在Google字典中的解释Google英翻中〔查看〕
Profile查看 Profile 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • What is the difference between ~ . profile and ~ . bash_profile?
    The profile was the original profile configuration for the Bourne shell (a k a , sh) bash, being a Bourne compatible shell will read and use it The bash_profile on the other hand is only read by bash It is intended for commands that are incompatible with the standard Bourne shell
  • What do the scripts in etc profile. d do? - Unix Linux Stack Exchange
    @AvindraGoolcharan Different distros may use different schemes for this kind of thing The profile d directory only works because its contents are sourced by etc profile, which is specified by shells such as bash as a startup file (see INVOCATION in man bash); if you edit etc profile, you can disable etc profile d
  • How to permanently set environmental variables
    To do if for all users shells, depending on distro you could use etc environment or etc profile Creating a new file in etc profile d may be preferable if it exists, as it will be less likely to conflict with updates made by the packaging system
  • What is the purpose of . bashrc and how does it work?
    Contrast bash_profile and profile which are only run at the start of a new login shell (bash -l) You choose whether a command goes in bashrc vs bash_profile depending on whether you want it to run once or for every interactive shell start
  • Setting PATH vs. exporting PATH in ~ . bash_profile [duplicate]
    Any of the ENV files first invoked by a shell such as bashrc or profile will set variable values for the life of that shell So any variables that are set and export ed within those files will maintain that export characteristic and be export ed to all child processes invoked by that shell for the life of the shell or until they are unset
  • Where should I source usr local etc profile from? . bash_profile or . . .
    usr local etc profile is not a classic location and would not be sourced Many distributions have a directory etc profile d, and put code in etc profile to source the files in etc profile d If your distribution does that, the best place for your machine-specific content would be a machine-specific file in etc profile d
  • bash - How to correctly add a path to PATH? - Unix Linux Stack Exchange
    The profile file is read by login shells, so it will only take effect the next time you log in (Some systems configure terminals to read a login shell; in that case you can start a new terminal window, but the setting will take effect only for programs started via a terminal, and how to set PATH for all programs depends on the system )
  • path - How do I set a user environment variable? (permanently, not . . .
    Note: If either of these files exists and your login shell is bash, profile is not read when you log in over ssh or on a text console, but it might still be read instead of bash_profile if you log in from the GUI Also, if there is no bash_profile, then use bashrc If you've set zsh as your login shell, use ~ zprofile instead of ~ profile
  • How to config alias on RedHat server? - Unix Linux Stack Exchange
    you said on Redhat server look at etc profile d contents and you see a bunch of sh and csh files In etc passwd if your account login is bin bash then it will reference the sh files, if bin csh or bin tcsh then the csh files
  • nmcli not showing connections - Unix Linux Stack Exchange
    Error: wlp3s0 - no such connection profile A thing to note is my laptop is connected to the Wi-Fi and can access the internet, and I connected to the Wi-Fi during the installation of Debian And when I restart NetworkManager, it doesn't reconnect to the Wi-Fi unless I reboot I'll gladly provide any more info for help





中文字典-英文字典  2005-2009