Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for person1 (0.11 sec)

  1. tests/scan_test.go

    1. func TestScanToEmbedded(t *testing.T) {
    2. person1 := Person{Name: "person 1"}
    3. person2 := Person{Name: "person 2"}
    4. DB.Save(&person1).Save(&person2)
    5.  
    6. address1 := Address{Name: "address 1"}
    7. address2 := Address{Name: "address 2"}
    8. DB.Save(&address1).Save(&address2)
    9.  
    10. DB.Create(&PersonAddress{PersonID: person1.ID, AddressID: int(address1.ID)})
    11. DB.Create(&PersonAddress{PersonID: person1.ID, AddressID: int(address2.ID)})
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Wed Jun 12 10:57:36 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  2. docs/es/docs/async.md

    1. ### Hamburguesas Concurrentes
    2.  
    3. Vas con la persona que te gusta 😍 a pedir comida rápida 🍔, haces cola mientras el cajero 💁 recoge los pedidos de las personas de delante tuyo.
    4.  
    5. <img src="https://fastapi.tiangolo.com/img/async/concurrent-burgers/concurrent-burgers-01.png" alt="illustration">
    6.  
    7. Llega tu turno, haces tu pedido de 2 hamburguesas impresionantes para esa persona 😍 y para ti.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Aug 19 18:15:21 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  3. schema/relationship_test.go

    1. {"ID", "Person", "PersonID", "likes", "", true},
    2. {"ID", "Thing", "ThingID", "likes", "", false},
    3. },
    4. },
    5. Relation{
    6. Name: "Dislikes", Type: schema.Many2Many, Schema: "Person", FieldSchema: "Thing",
    7. JoinTable: JoinTable{Name: "dislikes", Table: "dislikes"},
    8. References: []Reference{
    9. {"ID", "Person", "PersonID", "dislikes", "", true},
    10. {"ID", "Thing", "ThingID", "dislikes", "", false},
    11. },
    12. },
    13. )
    Registered: Sun Nov 03 09:35:10 UTC 2024
    - Last Modified: Mon Apr 15 03:20:20 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  4. LICENSE

    1. Copyright (C) 2016 Daniel Dreibrodt
    2.  
    3. Permission is hereby granted, free of charge, to any person obtaining a copy
    4. of this software and associated documentation files (the "Software"), to deal
    5. in the Software without restriction, including without limitation the rights
    6. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    7. copies of the Software, and to permit persons to whom the Software is
    8. furnished to do so, subject to the following conditions:
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. licenses/sigs.k8s.io/yaml/LICENSE

    1. Copyright (c) 2014 Sam Ghods
    2.  
    3. Permission is hereby granted, free of charge, to any person obtaining a copy
    4. of this software and associated documentation files (the "Software"), to deal
    5. in the Software without restriction, including without limitation the rights
    6. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    7. copies of the Software, and to permit persons to whom the Software is
    8. furnished to do so, subject to the following conditions:
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Oct 31 19:53:28 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  6. licenses/github.com/klauspost/compress/LICENSE

    1. Copyright (c) 2015 Klaus Post
    2.  
    3. Permission is hereby granted, free of charge, to any person obtaining a copy
    4. of this software and associated documentation files (the "Software"), to deal
    5. in the Software without restriction, including without limitation the rights
    6. to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    7. copies of the Software, and to permit persons to whom the Software is
    8. furnished to do so, subject to the following conditions:
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Tue Nov 30 19:13:15 UTC 2021
    - 16.3K bytes
    - Viewed (0)
  7. docs/de/docs/help-fastapi.md

    1. ### Das Problem reproduzieren
    2.  
    3. In den meisten Fällen und bei den meisten Fragen ist etwas mit dem von der Person erstellten **eigenen Quellcode** los.
    4.  
    5. In vielen Fällen wird nur ein Fragment des Codes gepostet, aber das reicht nicht aus, um **das Problem zu reproduzieren**.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. docs/nl/docs/python-types.md

    1. <img src="/img/python-types/image06.png">
    2.  
    3. Merk op dat dit betekent dat "`one_person` een **instantie** is van de klasse `Person`".
    4.  
    5. Dit betekent niet dat `one_person` de **klasse** is met de naam `Person`.
    6.  
    7. ## Pydantic modellen
    8.  
    9. <a href="https://docs.pydantic.dev/" class="external-link" target="_blank">Pydantic</a> is een Python-pakket voor het uitvoeren van datavalidatie.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/mylasta/mail/CrawlerPostcard.java

    1. public void setFrom(String from, String personal) {
    2. doSetFrom(from, personal);
    3. }
    4.  
    5. public void addTo(String to) {
    6. doAddTo(to);
    7. }
    8.  
    9. public void addTo(String to, String personal) {
    10. doAddTo(to, personal);
    11. }
    12.  
    13. public void addCc(String cc) {
    14. doAddCc(cc);
    15. }
    16.  
    17. public void addCc(String cc, String personal) {
    18. doAddCc(cc, personal);
    19. }
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. docs/de/docs/python-types.md

    1. ////
    2.  
    3. ### Klassen als Typen
    4.  
    5. Sie können auch eine Klasse als Typ einer Variablen deklarieren.
    6.  
    7. Nehmen wir an, Sie haben eine Klasse `Person`, mit einem Namen:
    8.  
    9. ```Python hl_lines="1-3"
    10. {!../../docs_src/python_types/tutorial010.py!}
    11. ```
    12.  
    13. Dann können Sie eine Variable vom Typ `Person` deklarieren:
    14.  
    15. ```Python hl_lines="6"
    16. {!../../docs_src/python_types/tutorial010.py!}
    17. ```
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 19.1K bytes
    - Viewed (0)
Back to top