Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 4,131 for overridden (0.2 sec)

  1. maven-core/src/test/resources-project-builder/inherited-properties-interpolation/no-profile/pom.xml

        as defined by the child. This boils down to the order of inheritance and (parent) interpolation.
      </description>
    
      <properties>
        <overridden>PARENT</overridden>
        <!-- Test the effective value of this property in the child when "overridden" is defined by child as well -->
        <interpolated>${overridden}</interpolated>
      </properties>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.5K bytes
    - Viewed (0)
  2. istioctl/pkg/workload/testdata/vmconfig/ipv6/meshconfig.yaml

    defaultConfig:
      proxyMetadata:
        # should be overridden by the command
        ISTIO_META_DNS_CAPTURE: "false"
        # should be overridden by the annotation on the WorkloadGroup
        PROXY_CONFIG_ANNOT_VALUE: "foo"
        # should be in the final cluster.env/mesh.yaml
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 300 bytes
    - Viewed (0)
  3. maven-core/src/test/resources-project-builder/inherited-properties-interpolation/active-profile/pom.xml

        as defined by the child. This boils down to the order of inheritance and (parent) interpolation.
      </description>
    
      <properties>
        <overridden>PARENT</overridden>
        <!-- Test the effective value of this property in the child when "overridden" is defined by child as well -->
        <interpolated>${overridden}</interpolated>
      </properties>
    
      <profiles>
        <profile>
          <id>it-parent</id>
          <activation>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.7K bytes
    - Viewed (0)
  4. istioctl/pkg/workload/testdata/vmconfig/ipv4/meshconfig.yaml

    defaultConfig:
      proxyMetadata:
        # should be overridden by the command
        ISTIO_META_DNS_CAPTURE: "false"
        # should be overridden by the annotation on the WorkloadGroup
        PROXY_CONFIG_ANNOT_VALUE: "foo"
        # should be in the final cluster.env/mesh.yaml
    Others
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Thu Jun 15 15:02:17 GMT 2023
    - 300 bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/inherited-properties-interpolation/active-profile/sub/pom.xml

        as defined by the child. This boils down to the order of inheritance and (parent) interpolation.
      </description>
    
      <properties>
        <overridden>CHILD</overridden>
      </properties>
    
      <profiles>
        <profile>
          <id>it-child</id>
          <activation>
            <activeByDefault>true</activeByDefault>
          </activation>
        </profile>
      </profiles>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 29 19:02:56 GMT 2020
    - 1.6K bytes
    - Viewed (0)
  6. build-logic/documentation/src/test/groovy/gradlebuild/docs/dsl/docbook/ClassDocPropertiesBuilderTest.groovy

            def content = parse('''
    <section>
        <section><title>Properties</title>
            <table>
                <thead><tr><td>Name</td><td>inherited</td><td>added</td><td>overridden <overrides>general value</overrides></td></tr></thead>
                <tr><td>a</td><td>specific1</td><td>specific2</td><td>specific3</td></tr>
                <tr><td>b</td><td></td><td/><td/></tr>
            </table>
        </section>
    Groovy
    - Registered: Wed Apr 17 11:36:08 GMT 2024
    - Last Modified: Wed Dec 09 08:14:05 GMT 2020
    - 7.6K bytes
    - Viewed (0)
  7. tests/test_schema_extra_examples.py

        assert response.status_code == 200, response.text
    
    
    def test_openapi_schema():
        """
        Test that example overrides work:
    
        * pydantic model schema_extra is included
        * Body(example={}) overrides schema_extra in pydantic model
        * Body(examples{}) overrides Body(example={}) and schema_extra in pydantic model
        """
        app = create_app()
        client = TestClient(app)
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Oct 24 20:26:06 GMT 2023
    - 37.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/CacheLoader.java

       * only the entries for {@code keys} will be returned from {@code getAll}.
       *
       * <p>This method should be overridden when bulk retrieval is significantly more efficient than
       * many individual lookups. Note that {@link LoadingCache#getAll} will defer to individual calls
       * to {@link LoadingCache#get} if this method is not overridden.
       *
       * @param keys the unique, non-null keys whose values should be loaded
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Dec 19 20:20:14 GMT 2022
    - 9.6K bytes
    - Viewed (0)
  9. tests/test_tutorial/test_configure_swagger_ui/test_tutorial003.py

        response = client.get("/docs")
        assert response.status_code == 200, response.text
        assert (
            '"deepLinking": false,' in response.text
        ), "overridden configs should be preserved"
        assert (
            '"deepLinking": true' not in response.text
        ), "overridden configs should not include the old value"
        assert (
            '"syntaxHighlight": false' not in response.text
        ), "not used parameters should not be included"
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Sat Aug 19 19:54:04 GMT 2023
    - 1.5K bytes
    - Viewed (0)
  10. src/packaging/rpm/packaging.properties

    #
    
    # Environment file
    packaging.env.file=/etc/sysconfig/fess
    
    # Default configuration directory and file to use in bin/plugin script
    
    # Simple marker to check that properties are correctly overridden
    packaging.type=rpm
    
    # Custom header for package scripts
    packaging.scripts.header=
    Properties
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Dec 10 01:24:02 GMT 2015
    - 420 bytes
    - Viewed (0)
Back to top