Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 417 for model1 (0.23 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. pilot/pkg/config/kube/gateway/model.go

    	"istio.io/istio/pilot/pkg/credentials"
    	"istio.io/istio/pilot/pkg/model"
    	creds "istio.io/istio/pilot/pkg/model/credentials"
    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/schema/gvk"
    	"istio.io/istio/pkg/util/sets"
    )
    
    const (
    	gatewayAliasForAnnotationKey = "gateway.istio.io/alias-for"
    	gatewayTLSTerminateModeKey   = "gateway.istio.io/tls-terminate-mode"
    	gatewayNameOverride          = "gateway.istio.io/name-override"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:09 UTC 2024
    - 4K bytes
    - Viewed (0)
  7. src/mdo/model.vm

      specific language governing permissions and limitations
      under the License.
    *#
    #parse ( "common.vm" )
    #
    #set ( $package = "${packageModelV4}" )
    #set ( $root = $model.getClass( $model.getRoot($version), $version ) )
    #foreach ( $class in $model.allClasses )
      #set ( $ancestors = $Helper.ancestors( $class ) )
      #set ( $allFields = [] )
      #set ( $inheritedFields = [] )
      #foreach ( $cl in $ancestors )
        #if ( $cl != $class )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 21:28:01 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. pkg/config/model.go

    John Howard <******@****.***> 1716996669 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. model.go

    package gorm
    
    import "time"
    
    // Model a basic GoLang struct which includes the following fields: ID, CreatedAt, UpdatedAt, DeletedAt
    // It may be embedded into your model or you may build your own model without it
    //
    //	type User struct {
    //	  gorm.Model
    //	}
    type Model struct {
    	ID        uint `gorm:"primarykey"`
    	CreatedAt time.Time
    	UpdatedAt time.Time
    	DeletedAt DeletedAt `gorm:"index"`
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sat Feb 18 01:06:43 UTC 2023
    - 396 bytes
    - Viewed (0)
  10. pkg/test/echo/common/model.go

    John Howard <******@****.***> 1641342165 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 05 00:22:45 UTC 2022
    - 3.1K bytes
    - Viewed (0)
Back to top