- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 1,333 for Fields (0.06 sec)
-
guava/src/com/google/common/collect/EnumBiMap.java
* * Then we declare the getters for these fields as @GwtIncompatible so that no one can try to use * them under J2CLโor, as an unfortunate side effect, under GWT. We do still give the fields * themselves their proper values under GWT, since GWT's EnumMap does need the Class instance. * * Note that sometimes these fields *do* have correct values under J2CL: They will if the caller
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Aug 24 01:40:03 UTC 2023 - 6.3K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/EnumBiMap.java
* * Then we declare the getters for these fields as @GwtIncompatible so that no one can try to use * them under J2CLโor, as an unfortunate side effect, under GWT. We do still give the fields * themselves their proper values under GWT, since GWT's EnumMap does need the Class instance. * * Note that sometimes these fields *do* have correct values under J2CL: They will if the caller
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Aug 24 01:40:03 UTC 2023 - 6.3K bytes - Viewed (0) -
cmd/storage-datatypes.go
Metrics bool `msg:"m"` NoOp bool `msg:"np"` } // DiskInfo is an extended type which returns current // disk usage per path. // The above means that any added/deleted fields are incompatible. // // The above means that any added/deleted fields are incompatible. // //msgp:tuple DiskInfo type DiskInfo struct { Total uint64 Free uint64 Used uint64 UsedInodes uint64 FreeInodes uint64
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 22 15:30:50 UTC 2024 - 17.3K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/common/help.jsp
<%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%> <h2>Query Syntax</h2> <dl> <dt>Field</dt> <dd> You can search any field by typing the field name followed by a colon ":" and then the term you are looking for. If you want to find documents which has "Fess" as the document title, you can enter: <pre>title:Fess</pre> The available fields are "url", "host", "site", "title", "content",
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Feb 26 14:01:31 UTC 2018 - 2.4K bytes - Viewed (0) -
fastapi/security/oauth2.py
fields `username` and `password`. All the initialization parameters are extracted from the request. The only difference between `OAuth2PasswordRequestFormStrict` and `OAuth2PasswordRequestForm` is that `OAuth2PasswordRequestFormStrict` requires the client to send the form field `grant_type` with the value `"password"`, which
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Oct 23 18:30:18 UTC 2024 - 21.1K bytes - Viewed (0) -
docs/em/docs/tutorial/schema-extra-example.md
### ๐ผ ๐ฉบ ๐ โฎ๏ธ `examples` ๐ฎ `Body()` `/docs` ๐ ๐ ๐: <img src="/img/tutorial/body-fields/image02.png"> ## ๐ก โน /// warning ๐ ๐ถ ๐ก โน ๐ ๐ฉ **๐ป ๐** & **๐**. ๐ฅ ๐ญ ๐ โช ๐ท ๐, ๐ ๐ช ๐ฅ, & ๐ ๐ฒ ๐ซ ๐ช ๐ โน, ๐ญ ๐ ๐ถ ๐ซ. /// ๐โ ๐ ๐ฎ ๐ผ ๐ Pydantic ๐ท, โ๏ธ `schema_extra` โ๏ธ `Field(example="something")` ๐ ๐ผ ๐ฎ **๐ป ๐** ๐ Pydantic ๐ท.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.5K bytes - Viewed (0) -
docs/en/docs/tutorial/response-model.md
### Type Annotations and Tooling First let's see how editors, mypy and other tools would see this. `BaseUser` has the base fields. Then `UserIn` inherits from `BaseUser` and adds the `password` field, so, it will include all the fields from both models. We annotate the function return type as `BaseUser`, but we are actually returning a `UserIn` instance.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 18.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/net/HttpHeadersTest.java
throws IllegalAccessException { for (Field field : relevantFields(clazz)) { assertEquals( upperToHttpHeaderName(field.getName(), specialCases, uppercaseAcronyms), field.get(null)); } } // Visible for other tests to use static ImmutableSet<Field> relevantFields(Class<?> cls) { ImmutableSet.Builder<Field> builder = ImmutableSet.builder(); for (Field field : cls.getDeclaredFields()) { /*
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 22 21:08:08 UTC 2024 - 3.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/net/HttpHeadersTest.java
throws IllegalAccessException { for (Field field : relevantFields(clazz)) { assertEquals( upperToHttpHeaderName(field.getName(), specialCases, uppercaseAcronyms), field.get(null)); } } // Visible for other tests to use static ImmutableSet<Field> relevantFields(Class<?> cls) { ImmutableSet.Builder<Field> builder = ImmutableSet.builder(); for (Field field : cls.getDeclaredFields()) { /*
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 22 21:08:08 UTC 2024 - 3.9K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnenc/goals/Init.java
"Configure " + dispatcherMeta.displayName()); context.addInHeader(""); for (DispatcherMeta.Field field : dispatcherMeta.fields()) { String fieldKey = field.getKey(); String fieldDescription = "Configure " + fieldKey + ": " + field.getDescription(); if (field.getOptions().isPresent()) { // list options ListPromptBuilder listPromptBuilder =
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 12.1K bytes - Viewed (0)