英文字典中文字典


英文字典中文字典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       







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

shaped    音标拼音: [ʃ'ept]
a. 制成一定形状的

制成一定形状的

shaped
形 成型

shaped
adj 1: shaped to fit by or as if by altering the contours of a
pliable mass (as by work or effort); "a shaped handgrip";
"the molded steel plates"; "the wrought silver bracelet"
[synonym: {shaped}, {molded}, {wrought}]
2: having the shape of; "a square shaped playing field"

Shape \Shape\ (sh[=a]p), v. t. [imp. {Shaped} (sh[=a]pt); p. p.
{Shaped} or {Shapen} (sh[=a]p"'n); p. pr. & vb. n.
{Shaping}.] [OE. shapen, schapen, AS. sceapian. The p. p.
shapen is from the strong verb, AS. scieppan, scyppan,
sceppan, p. p. sceapen. See {Shape}, n.]
1. To form or create; especially, to mold or make into a
particular form; to give proper form or figure to.
[1913 Webster]

I was shapen in iniquity. --Ps. li. 5.
[1913 Webster]

Grace shaped her limbs, and beauty decked her face.
--Prior.
[1913 Webster]

2. To adapt to a purpose; to regulate; to adjust; to direct;
as, to shape the course of a vessel.
[1913 Webster]

To the stream, when neither friends, nor force,
Nor speed nor art avail, he shapes his course.
--Denham.
[1913 Webster]

Charmed by their eyes, their manners I acquire,
And shape my foolishness to their desire. --Prior.
[1913 Webster]

3. To imagine; to conceive; to call forth (ideas). [archaic]
[1913 Webster]

Oft my jealousy
Shapes faults that are not. --Shak.
[1913 Webster]

4. To design; to prepare; to plan; to arrange.
[1913 Webster]

When shapen was all this conspiracy,
From point to point. --Chaucer.
[1913 Webster]

{Shaping machine}. (Mach.) Same as {Shaper}.

{To shape one's self}, to prepare; to make ready. [Obs.]
[1913 Webster]

I will early shape me therefor. --Chaucer.
[1913 Webster]

75 Moby Thesaurus words for "shaped":
arranged, assembled, blueprinted, built, calculated, cast, charted,
constructed, contrived, crafted, created, custom, custom-built,
custom-made, designed, devised, extracted, fabricated, fashioned,
figured, forged, formed, gathered, grown, handcrafted, handmade,
harvested, homemade, homespun, in the works, machine-made,
machined, made, made to order, man-made, manufactured, methodized,
milled, mined, molded, on the agenda, on the anvil,
on the calendar, on the carpet, on the docket, on the tapis,
organized, planned, plotted, prefab, prefabricated, processed,
projected, put together, raised, rationalized, ready-for-wear,
ready-formed, ready-made, ready-prepared, ready-to-wear, refined,
scheduled, schematized, set, smelted, strategetic, strategic,
sur le tapis, systematized, tactical, well-built, well-constructed,
well-made, worked out


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





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


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

































































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


  • Cache-Control header - HTTP | MDN - MDN Web Docs
    Adding no-cache to the response causes revalidation to the server, so you can serve a fresh response every time — or if the client already has a new one, just respond 304 Not Modified http Cache-Control: no-cache Most HTTP 1 0 caches don't support no-cache directives, so historically max-age=0 was used as a workaround
  • Is there a lt;meta gt; tag to turn off caching in all browsers?
    I found that Chrome responds better to Cache-Control: no-cache (100% conditional requests afterwards) "no-store" sometimes loaded from cache without even attempting a conditional request Firefox responds better to "no-store" but still sometimes loads from cache if you reload immediately afterwords What a mess! –
  • nocache - npm
    Middleware to destroy caching Latest version: 4 0 0, last published: 2 years ago Start using nocache in your project by running `npm i nocache` There are 529 other projects in the npm registry using nocache
  • Feh nocache: minimize caching effects - GitHub
    The nocache tool tries to minimize the effect an application has on the Linux file system cache This is done by intercepting the open and close system calls and calling posix_fadvise with the POSIX_FADV_DONTNEED parameter Because the library remembers which pages (ie , 4K-blocks of the file) were already in file system cache when the file was opened, these will not be marked as "don't need
  • Cache directive no-cache | An explaination of the HTTP Cache-Control . . .
    The Cache-Control header is used to specify directives for caching mechanisms in both HTTP requests and responses A typical header looks like this Cache-Control: public, max-age=10 public Indicates that the response may be cached by any cache private Indicates that the response is intended for a single user and must not be stored by a shared cache
  • CacheControlHeaderValue. NoCache Property (System. Net. Http. Headers)
    true if the HTTP client is not willing to accept a cached response; otherwise, false Remarks This property represents the "no-cache" directive in a cache-control header field on an HTTP request or HTTP response When the NoCache property is set to true present in a HTTP request message, an application should forward the request toward the origin server even if it has a cached copy of what
  • Disable browser caching with meta HTML tags
    The minimum set of HTML headers to disable browser caching that works across the most important browsers: Cache-Control, Pragma, Expires
  • Whats with all the cache nocache stuff and weird filenames?
    The JavaScript code in nocache js then creates a hidden <iframe>, inserts it to the host page's DOM, and loads the cache html file into that iframe The cache html file contains the actual program logic of the GWT application That's the process in a nutshell The sections below describe each file in detail The nocache js File
  • What is the difference between no-cache and no-store in Cache-control?
    no-cache If the no-cache directive does not specify a field-name, then a cache MUST NOT use the response to satisfy a subsequent request without successful revalidation with the origin server This allows an origin server to prevent caching even by caches that have been configured to return stale responses to client requests
  • HTTP caching - HTTP | MDN - MDN Web Docs
    By adding Cache-Control: no-cache to the response along with Last-Modified and ETag — as shown below — the client will receive a 200 OK response if the requested resource has been updated, or will otherwise receive a 304 Not Modified response if the requested resource has not been updated http HTTP 1 1 200 OK Content-Type: text html





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