Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,958 for createId (0.16 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/cmd/internal/cov/covcmd/cmddefs.go

    // compiler when the instrumented code is compiled. The cmd/cover tool
    // creates a struct of this type, JSON-encodes it, and emits the
    // result to a file, which the Go command then passes to the compiler
    // when the instrumented package is built.
    type CoverFixupConfig struct {
    	// Name of the variable (created by cmd/cover) containing the
    	// encoded meta-data for the package.
    	MetaVar string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 30 16:13:15 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. subprojects/core-api/src/main/java/org/gradle/api/NamedDomainObjectContainer.java

         * @return The found or created object. Never null.
         */
        T maybeCreate(String name);
    
        /**
         * Creates a new item with the given name, adding it to this container, then configuring it with the given closure.
         *
         * @param name The name to assign to the created object
         * @param configureClosure The closure to configure the created object with
         * @return The created object. Never null.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 27 15:00:20 UTC 2022
    - 5.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_compiler_options_util.h

    namespace tensorflow {
    
    // Returns created options for the XLA compiler.
    XlaCompiler::Options GenerateCompilerOptions(
        const DeviceCompiler<xla::LocalExecutable, xla::LocalClient>&
            xla_device_compiler,
        const FunctionLibraryRuntime& function_library, DeviceBase* device,
        se::Stream* stream, const XlaPlatformInfo& platform_info,
        bool has_ref_vars);
    
    // Returns created options for XLA compiler when TFRT-TPU is used.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Dec 29 01:41:20 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/ThreadFactoryBuilder.java

        this.nameFormat = nameFormat;
        return this;
      }
    
      /**
       * Sets daemon or not for new threads created with this ThreadFactory.
       *
       * @param daemon whether or not new Threads created with this ThreadFactory will be daemon threads
       * @return this for the builder pattern
       */
      @CanIgnoreReturnValue
      public ThreadFactoryBuilder setDaemon(boolean daemon) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 10 21:56:03 UTC 2023
    - 7.6K bytes
    - Viewed (0)
Back to top