Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 290 for EXCLUDE (0.23 sec)

  1. cni/pkg/plugin/testdata/include-exclude-ip.txt.golden

    John Howard <******@****.***> 1676588060 -0800
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Feb 16 22:54:20 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  2. cni/pkg/plugin/testdata/include-exclude-ports.txt.golden

    John Howard <******@****.***> 1676588060 -0800
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Feb 16 22:54:20 GMT 2023
    - 1.1K bytes
    - Viewed (0)
  3. tests/test_response_model_include_exclude.py

        }
    
    
    @app.get(
        "/simple_exclude",
        response_model=Model2,
        response_model_exclude={"ref": {"bar"}},
    )
    def simple_exclude():
        return Model2(
            ref=Model1(foo="simple_exclude model foo", bar="simple_exclude model bar"),
            baz="simple_exclude model2 baz",
        )
    
    
    @app.get(
        "/simple_exclude_dict",
        response_model=Model2,
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Mon Jul 19 19:14:58 GMT 2021
    - 4K bytes
    - Viewed (0)
  4. apache-maven/src/assembly/src.xml

          <excludes>
            <exclude>%regex[(?!((?!target/)[^/]+/)*src/).*target.*]</exclude>
            <exclude>**/*.log</exclude>
            <exclude>**/.gitignore</exclude>
            <exclude>**/.gitattributes</exclude>
            <exclude>init-git-svn.sh</exclude>
            <exclude>**/.repository/**</exclude>
            <exclude>**/.classpath</exclude>
            <exclude>**/.project</exclude>
            <exclude>**/.settings/**</exclude>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Apr 27 13:14:24 GMT 2022
    - 2.2K bytes
    - Viewed (0)
  5. tests/test_skip_defaults.py

    )
    def get_exclude_defaults() -> ModelDefaults:
        return ModelDefaults(x=None, y="y")
    
    
    @app.get(
        "/exclude_none", response_model=ModelDefaults, response_model_exclude_none=True
    )
    def get_exclude_none() -> ModelDefaults:
        return ModelDefaults(x=None, y="y")
    
    
    @app.get(
        "/exclude_unset_none",
        response_model=ModelDefaults,
        response_model_exclude_unset=True,
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Jul 07 17:12:13 GMT 2023
    - 2K bytes
    - Viewed (0)
  6. tests/test_serialize_response_model.py

        }
    
    
    @app.get(
        "/items/valid-exclude-unset", response_model=Item, response_model_exclude_unset=True
    )
    def get_valid_exclude_unset():
        return Item(aliased_name="valid", price=1.0)
    
    
    @app.get(
        "/items/coerce-exclude-unset",
        response_model=Item,
        response_model_exclude_unset=True,
    )
    def get_coerce_exclude_unset():
        return Item(aliased_name="coerce", price="1.0")
    
    
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri May 13 23:38:22 GMT 2022
    - 4.2K bytes
    - Viewed (0)
  7. common/config/mdl.rb

    rule 'MD007', :indent => 4
    rule 'MD013', :line_length => 160, :code_blocks => false, :tables => false
    rule 'MD026', :punctuation => ".,;:!"
    exclude_rule 'MD013'
    exclude_rule 'MD014'
    exclude_rule 'MD030'
    exclude_rule 'MD032'
    exclude_rule 'MD033'
    exclude_rule 'MD041'
    Ruby
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Fri Jan 13 19:46:27 GMT 2023
    - 317 bytes
    - Viewed (0)
  8. apache-maven/pom.xml

                <excludes combine.children="append">
                  <exclude>src/assembly/maven/bin/m2.conf</exclude>
                  <!-- these are partial scripts, resulting in mvn scripts -->
                  <exclude>src/assembly/shared/init</exclude>
                  <exclude>src/assembly/shared/init.cmd</exclude>
                  <exclude>src/assembly/shared/mvnlauncher</exclude>
                  <exclude>src/assembly/shared/mvnlauncher.cmd</exclude>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 10.9K bytes
    - Viewed (0)
  9. maven-core/pom.xml

                  <exclude>org.apache.maven.repository.LocalArtifactRepository</exclude>
                  <exclude>org.apache.maven.repository.LocalRepositoryNotAccessibleException</exclude>
                  <exclude>org.apache.maven.repository.RepositorySystem</exclude>
                  <exclude>org.apache.maven.settings.DefaultMavenSettingsBuilder</exclude>
                  <exclude>org.apache.maven.settings.MavenSettingsBuilder</exclude>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 15.4K bytes
    - Viewed (0)
  10. fastapi/applications.py

                response_model_exclude=response_model_exclude,
                response_model_by_alias=response_model_by_alias,
                response_model_exclude_unset=response_model_exclude_unset,
                response_model_exclude_defaults=response_model_exclude_defaults,
                response_model_exclude_none=response_model_exclude_none,
                include_in_schema=include_in_schema,
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 172.2K bytes
    - Viewed (0)
Back to top