Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 366 for model1 (0.17 sec)

  1. pilot/pkg/credentials/model.go

    John Howard <******@****.***> 1708715901 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. utils/tests/models.go

    	Active    bool
    }
    
    type Account struct {
    	gorm.Model
    	UserID sql.NullInt64
    	Number string
    }
    
    type Pet struct {
    	gorm.Model
    	UserID *uint
    	Name   string
    	Toy    Toy `gorm:"polymorphic:Owner;"`
    }
    
    type Toy struct {
    	gorm.Model
    	Name      string
    	OwnerID   string
    	OwnerType string
    }
    
    type Tools struct {
    	gorm.Model
    	Name     string
    	CustomID string
    	Type     string
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:36:08 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. fastapi/dependencies/models.py

    Sebastián Ramírez <******@****.***> 1688749933 +0200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r68/Models.java

    import java.io.Serializable;
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.List;
    
    public class Models implements Serializable {
        private final boolean runsInParallel;
        private final List<CustomModel> projects;
    
        public Models(boolean runsInParallel, Collection<CustomModel> projects) {
            this.runsInParallel = runsInParallel;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. docs_src/sql_databases/sql_app_py310/models.py

    Moustapha Sall <******@****.***> 1704810933 -0500
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Jan 09 14:35:33 UTC 2024
    - 710 bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r81/Models.java

    import java.io.Serializable;
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.List;
    
    public class Models implements Serializable {
        private final boolean runsInParallel;
        private final List<ToolchainModel> projects;
    
        public Models(boolean runsInParallel, Collection<ToolchainModel> projects) {
            this.runsInParallel = runsInParallel;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. fastapi/openapi/models.py

    Paul <******@****.***> 1713480573 -0400
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 22:49:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. docs/en/docs/reference/openapi/models.md

    # OpenAPI `models`
    
    OpenAPI Pydantic models used to generate and validate the generated OpenAPI.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Oct 18 12:36:40 UTC 2023
    - 125 bytes
    - Viewed (0)
  9. maven-api-impl/src/test/java/org/apache/maven/internal/impl/DefaultSettingsValidatorTest.java

            problems.clear();
            problems = validator.validate(model2);
            assertEquals(2, problems.size());
    
            repo = repo.withUrl("http://xxx.xxx.com");
            model2 = Settings.newBuilder()
                    .profiles(List.of(prof.withRepositories(List.of(repo))))
                    .build();
            problems.clear();
            problems = validator.validate(model2);
            assertEquals(1, problems.size());
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Mar 25 10:50:01 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/Model.java

     * <p>
     * It is an error for a {@code @Model} rule to return {@code void} and specify a non-managed type as the first parameter.
     * It is an error for a {@code @Model} rule to return {@code void} and for the first parameter to be annotated with {@link Path}.
     * It is an error for a {@code @Model} rule to specify a managed type as the return type.
    
     * <h3>Creating non-managed model elements</h3>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top