Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,190 for createId (0.14 sec)

  1. tests/test_tutorial/test_path_operation_configurations/test_tutorial005_py310.py

                                        }
                                    }
                                },
                            },
                        },
                        "summary": "Create an item",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Sep 28 04:14:40 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  2. tests/associations_belongs_to_test.go

    	}
    
    	if company.ID == 0 {
    		t.Fatalf("Company's ID should be created")
    	}
    
    	if err := DB.Model(&user2).Association("Manager").Append(manager); err != nil {
    		t.Fatalf("Error happened when append Manager, got %v", err)
    	}
    
    	if manager.ID == 0 {
    		t.Fatalf("Manager's ID should be created")
    	}
    
    	user.Company = company
    	user.Manager = manager
    	user.CompanyID = &company.ID
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Oct 30 09:15:49 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  3. releasenotes/notes/27430.yaml

    piVersion: release-notes/v2
    kind: feature
    area: istioctl
    
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 24 15:02:51 UTC 2020
    - 196 bytes
    - Viewed (0)
  4. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/maven/MavenProjectsCreatorSpec.groovy

    </project>"""
    
            when:
            creator.create(settings.buildSettings(), pom) as List
    
            then:
            def ex = thrown(MavenConversionException)
            ex.message == "Unable to create Maven project model using POM $pom."
        }
    
        def "fails with decent exception if pom does not exist"() {
            def pom = temp.file("pom.xml")
    
            when:
            creator.create(settings.buildSettings(), pom) as List
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/PolymorphicDomainObjectContainer.java

         *
         * @param type the type of the domain object to be created
         *
         * @param <U> the type of the domain object to be created
         *
         * @return the created domain object
         *
         * @throws InvalidUserDataException if a domain object with the specified name already exists
         * or the container does not support creating a domain object with the specified type
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 27 15:00:20 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  6. tests/default_value_test.go

    		t.Fatalf("Failed to create data with default value, got: %+v", harumph)
    	}
    
    	var result Harumph
    	if err := DB.First(&result, "email = ?", "******@****.***").Error; err != nil {
    		t.Fatalf("Failed to find created data, got error: %v", err)
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Apr 08 03:29:55 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PolymorphicDomainObjectContainerExtensions.kt

    inline fun <reified U : Any> PolymorphicDomainObjectContainer<in U>.create(name: String) =
        create(name, U::class.java)
    
    
    /**
     * Creates a domain object with the specified name and type if it does not exists, and adds it to the container.
     *
     * @param name the name of the domain object to be created
     * @param <U> the type of the domain object to be created
     * @return the created domain object
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_saved_model_passes.h

    namespace mlir {
    namespace tf_saved_model {
    
    // Creates a pass that optimizes tf_saved_model.global_tensor ops.
    std::unique_ptr<OperationPass<ModuleOp>> CreateOptimizeGlobalTensorsPass();
    
    // Creates a pass that freezes tf_saved_model.global_tensor ops.
    std::unique_ptr<OperationPass<ModuleOp>> CreateFreezeGlobalTensorsPass(
        bool allow_mutable_tensors = false);
    
    // Creates a pass that freezes tf_saved_model.asset ops.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 09 19:11:34 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_save_op.mlir

    // Test that the function for SaveV2 op is not created.
    // CHECK: func.func @init_func_restore_op
    // CHECK-NOT: @tf_quant__save
    }
    
    // -----
    
    // SaveV2 op not created when the initializer function doesn't exist.
    
    module attributes {tf_saved_model.semantics} {
      "tf_saved_model.session_initializer"() {initializers = []} : () -> ()
    // Test that the function for SaveV2 op is not created.
    // CHECK-NOT: @tf_quant__save
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  10. platforms/software/publish/src/main/java/org/gradle/api/publish/PublishingExtension.java

         * certain types of repositories that can be created by the repository handler are not valid for publishing, such as {@link org.gradle.api.artifacts.dsl.RepositoryHandler#mavenCentral()}.
         * <p>
         * At this time, only repositories created by the {@code ivy()} factory method have any effect. Please see {@link org.gradle.api.publish.ivy.IvyPublication}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top