Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for inheritance (0.12 sec)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.java

     * KIND, either express or implied.  See the License for the
     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.model.inheritance;
    
    import javax.inject.Named;
    import javax.inject.Singleton;
    
    import java.util.ArrayList;
    import java.util.HashMap;
    import java.util.LinkedHashMap;
    import java.util.List;
    import java.util.Map;
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. compat/maven-model-builder/src/site/apt/index.apt

       []
    
     []
    
    
    * Inheritance Assembly
    
      Inheritance Assembly consists in filling current model empty fields with values taken from parent model.
      It is done in <<<InheritanceAssembler>>> ({{{./apidocs/org/apache/maven/model/inheritance/InheritanceAssembler.html}javadoc}}),
      with its <<<DefaultInheritanceAssembler>>> implementation
      ({{{./xref/org/apache/maven/model/inheritance/DefaultInheritanceAssembler.html}source}}).
    
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  3. javadoc-stylesheet.css

        display:inline;
    }
    /*
    List styles
    */
    ul.horizontal li {
        display:inline;
        font-size:0.9em;
    }
    ul.inheritance {
        margin:0;
        padding:0;
    }
    ul.inheritance li {
        display:inline;
        list-style:none;
    }
    ul.inheritance li ul.inheritance {
        margin-left:15px;
        padding-left:15px;
        padding-top:1px;
    }
    ul.blockList, ul.blockListLast {
        margin:10px 0 10px 0;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jul 17 21:01:06 UTC 2013
    - 11.2K bytes
    - Viewed (0)
  4. compat/maven-model-builder/pom.xml

                  <exclude>org.apache.maven.model.inheritance.DefaultInheritanceAssembler</exclude>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. compat/maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilderFactory.java

    import org.apache.maven.model.composition.DefaultDependencyManagementImporter;
    import org.apache.maven.model.composition.DependencyManagementImporter;
    import org.apache.maven.model.inheritance.DefaultInheritanceAssembler;
    import org.apache.maven.model.inheritance.InheritanceAssembler;
    import org.apache.maven.model.interpolation.DefaultModelVersionProcessor;
    import org.apache.maven.model.interpolation.ModelInterpolator;
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. apache-maven/src/assembly/maven/conf/settings.xml

        <!-- mirror
         | Specifies a repository mirror site to use instead of a given repository. The repository that
         | this mirror serves has an ID that matches the mirrorOf element of this mirror. IDs are used
         | for inheritance and direct lookup purposes, and must be unique across the set of mirrors.
         |
        <mirror>
          <id>mirrorId</id>
          <mirrorOf>repositoryId</mirrorOf>
          <name>Human Readable Name for this Mirror.</name>
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Thu Oct 24 15:53:41 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/response-model.md

    But in most of the cases where we need to do something like this, we want the model just to **filter/remove** some of the data as in this example.
    
    And in those cases, we can use classes and inheritance to take advantage of function **type annotations** to get better support in the editor and tools, and still get the FastAPI **data filtering**.
    
    //// tab | Python 3.10+
    
    ```Python hl_lines="7-10  13-14  18"
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ImmutableMultimap.java

      @CanIgnoreReturnValue
      @Deprecated
      @Override
      @DoNotCall("Always throws UnsupportedOperationException")
      // DoNotCall wants this to be final, but we want to override it to return more specific types.
      // Inheritance is closed, and all subtypes are @DoNotCall, so this is safe to suppress.
      @SuppressWarnings("DoNotCall")
      public ImmutableCollection<V> removeAll(@CheckForNull Object key) {
        throw new UnsupportedOperationException();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/sql-databases.md

    And any model class that doesn't have `table=True` is a **data model**, these ones are actually just Pydantic models (with a couple of small extra features). 🤓
    
    With SQLModel, we can use **inheritance** to **avoid duplicating** all the fields in all the cases.
    
    #### `HeroBase` - the base class
    
    Let's start with a `HeroBase` model that has all the **fields that are shared** by all the models:
    
    * `name`
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 09 19:44:42 UTC 2024
    - 14.7K bytes
    - Viewed (0)
Back to top