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







請輸入英文單字,中文詞皆可:

jointure    
n. 寡婦所得財產

寡婦所得財產

jointure
n 1: (law) an estate secured to a prospective wife as a marriage
settlement in lieu of a dower [synonym: {jointure}, {legal
jointure}]
2: the act of making or becoming a single unit; "the union of
opposing factions"; "he looked forward to the unification of
his family for the holidays" [synonym: {union}, {unification},
{uniting}, {conjugation}, {jointure}] [ant: {disunion}]

Jointure \Join"ture\, n. [F. jointure a joint, orig., a joining,
L. junctura, fr. jungere to join. See {Join}, and cf.
{Juncture}.]
[1913 Webster]
1. A joining; a joint. [Obs.]
[1913 Webster]

2. (Law) An estate settled on a wife, which she is to enjoy
after husband's decease, for her own life at least, in
satisfaction of dower.
[1913 Webster]

The jointure that your king must make,
Which with her dowry shall be counterpoised. --Shak.
[1913 Webster]


Jointure \Join"ture\, v. t. [imp. & p. p. {Jointured}; p. pr. &
vb. n. {Jointuring}.]
To settle a jointure upon.
[1913 Webster]

56 Moby Thesaurus words for "jointure":
agglomeration, agglutination, aggregation, appanage, articulation,
bond, bracketing, clustering, combination, communication,
concatenation, concourse, congeries, conglomeration, conjugation,
conjunction, connection, convergence, copulation, coupling, dot,
dower, dowry, endowment, foundation, gathering, hookup,
intercommunication, intercourse, interlinking, investment, joinder,
joining, junction, knotting, legal jointure, liaison, linkage,
linking, marriage, marriage portion, meeting, merger, merging,
pairing, portion, settlement, splice, symbiosis, thirds, tie,
tie-in, tie-up, unification, union, yoking

JOINTURE, estates.. A competent livelihood of freehold for the wife, of
lands and tenements; to take effect in profit or possession, presently after
the death of the husband, for the life of the wife at least.
2. Jointures are regulated by the statute of 27 Hen. VIII. o. 10,
commonly called the statute of uses.
3. To make a good jointure, the following circumstances must concur,
namely; 1. It must take effect, in possession or profit, immediately from
the death of the husband. 2. It must be for the wife's life, or for some
greater estate. 3. It must be limited to the wife herself, and not to any
other person in trust for her. 4. It must be made in satisfaction for the
wife's whole dower, and not of part of it only. 5. The estate limited to the
wife must be expressed or averred to be, in satisfaction of her whole dower.
6. It must be made before marriage. A jointure attended with all these
circumstances is binding on the widow, and is a complete bar to the claim of
dower; or rather it prevents its ever arising. But there are other. modes of
limiting an estate to a wife, which, Lord Coke says, are good jointures
within the statute, provided the wife accepts of them after the death of the
husband. She may, however, reject them, and claim her dower. Cruise, Dig.
tit. 7; 2 Bl. Com. 137; Perk. h.t. In its more enlarged sense, a jointure
signifies a joint estate, limited to both husband and. wife. 2 131. Com.
137. Vide 14 Vin. Ab. 540; Bac. Ab. h.t.; 2 Bouv. Inst. n. 1761, et seq.

請選擇你想看的字典辭典:
單詞字典翻譯
JOINTURE查看 JOINTURE 在Google字典中的解釋Google英翻中〔查看〕
JOINTURE查看 JOINTURE 在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-Control - Expert Guide to HTTP headers
    This is an artifact of HTTP 1 0, as many implementations did not support the no-cache directive max-stale The max-stale directive is used by a client to indicate that they will accept stale HTTP responses up to a certain number of seconds This differs from max-age, as max-stale begins once the max-age expires Cache-Control: max-stale=<seconds>
  • 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
  • Prevent unnecessary network requests with the HTTP Cache
    no-cache This instructs the browser that it must revalidate with the server every time before using a cached version of the URL no-store This instructs the browser and other intermediate caches (like CDNs) to never store any version of the file private Browsers can cache the file but intermediate caches cannot public The response can be
  • 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

|中文姓名英譯,姓名翻譯 |简体中文英文字典