Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for allOf (0.33 sec)

  1. android/guava/src/com/google/common/base/Enums.java

          Class<T> enumClass) {
        Map<String, WeakReference<? extends Enum<?>>> result = new HashMap<>();
        for (T enumInstance : EnumSet.allOf(enumClass)) {
          result.put(enumInstance.name(), new WeakReference<Enum<?>>(enumInstance));
        }
        enumConstantCache.put(enumClass, result);
        return result;
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri May 26 11:56:44 GMT 2023
    - 5K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_extra_data_types/test_tutorial001_an.py

                            "content": {
                                "application/json": {
                                    "schema": IsDict(
                                        {
                                            "allOf": [
                                                {
                                                    "$ref": "#/components/schemas/Body_read_items_items__item_id__put"
                                                }
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Apr 19 00:11:40 GMT 2024
    - 6.8K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_schema_extra_example/test_tutorial005_an_py39.py

                                    | IsDict(
                                        # TODO: remove when deprecating Pydantic v1
                                        {
                                            "allOf": [
                                                {"$ref": "#/components/schemas/Item"}
                                            ],
                                            "title": "Item",
                                        }
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Aug 26 18:03:13 GMT 2023
    - 6.8K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_extra_data_types/test_tutorial001_an_py39.py

                            "content": {
                                "application/json": {
                                    "schema": IsDict(
                                        {
                                            "allOf": [
                                                {
                                                    "$ref": "#/components/schemas/Body_read_items_items__item_id__put"
                                                }
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Apr 19 00:11:40 GMT 2024
    - 7K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_extra_data_types/test_tutorial001_py310.py

                            "content": {
                                "application/json": {
                                    "schema": IsDict(
                                        {
                                            "allOf": [
                                                {
                                                    "$ref": "#/components/schemas/Body_read_items_items__item_id__put"
                                                }
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Apr 19 00:11:40 GMT 2024
    - 7K bytes
    - Viewed (0)
  6. tests/test_schema_extra_examples.py

                                    | IsDict(
                                        # TODO: remove this when deprecating Pydantic v1
                                        {
                                            "allOf": [
                                                {"$ref": "#/components/schemas/Item"}
                                            ],
                                            "title": "Item",
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Oct 24 20:26:06 GMT 2023
    - 37.7K bytes
    - Viewed (0)
  7. tests/test_openapi_examples.py

                        "requestBody": {
                            "content": {
                                "application/json": {
                                    "schema": {
                                        "allOf": [{"$ref": "#/components/schemas/Item"}],
                                        "title": "Item",
                                        "examples": [
                                            {"data": "Data in Body examples, example1"}
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Oct 24 20:26:06 GMT 2023
    - 17K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/io/TempFileCreator.java

                ImmutableList.of(
                    AclEntry.newBuilder()
                        .setType(ALLOW)
                        .setPrincipal(user)
                        .setPermissions(EnumSet.allOf(AclEntryPermission.class))
                        .setFlags(DIRECTORY_INHERIT, FILE_INHERIT)
                        .build());
            FileAttribute<ImmutableList<AclEntry>> attribute =
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Oct 06 17:11:11 GMT 2023
    - 12.5K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

            EnumSet<IssueLocality> issueLocalitiesToReport = validationReportLevel == ValidationReportLevel.SUMMARY
                            || validationReportLevel == ValidationReportLevel.VERBOSE
                    ? EnumSet.allOf(IssueLocality.class)
                    : EnumSet.of(IssueLocality.EXTERNAL);
    
            if (hasAnythingToReport(issuesMap, issueLocalitiesToReport)) {
                logger.warn("");
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Nov 19 21:11:13 GMT 2023
    - 17.4K bytes
    - Viewed (0)
  10. fastapi/openapi/models.py

        # Ref: JSON Schema 2020-12: https://json-schema.org/draft/2020-12/json-schema-core.html#name-a-vocabulary-for-applying-s
        # A Vocabulary for Applying Subschemas
        allOf: Optional[List["SchemaOrBool"]] = None
        anyOf: Optional[List["SchemaOrBool"]] = None
        oneOf: Optional[List["SchemaOrBool"]] = None
        not_: Optional["SchemaOrBool"] = Field(default=None, alias="not")
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 22:49:33 GMT 2024
    - 15K bytes
    - Viewed (1)
Back to top