Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,729 for ninit (0.22 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/HttpScriptPluginIntegrationSpec.groovy

            and:
            file("init.gradle").createFile()
            buildFile << """
                task check {}
            """
    
            when:
            def scriptUri = "${server.uri}/${scriptName}"
            file(sourceFile) << """
                apply from: '${scriptUri}'
            """
    
            then:
            args('-I', 'init.gradle')
            succeeds 'check'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 30 08:26:30 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/KotlinApplicationInitIntegrationTest.groovy

            when:
            run ('init', '--type', 'kotlin-application')
    
            then:
            dslFixtureFor(KOTLIN).assertGradleFilesGenerated()
        }
    
        @Requires(value = UnitTestPreconditions.KotlinOnlySupportsJdk21Earlier.class)
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_container.go

    // to be taken for the init containers. This includes actions to initialize the
    // init containers and actions to keep restartable init containers running.
    // computeInitContainerActions returns true if pod has been initialized.
    //
    // The actions include:
    // - Start the first init container that has not been started.
    // - Restart all restartable init containers that have started but are not running.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/integTest/groovy/org/gradle/buildinit/plugins/JavaApplicationInitIntegrationTest.groovy

        def "defaults to Kotlin build scripts"() {
            when:
            run ('init', '--type', 'java-application')
    
            then:
            dslFixtureFor(KOTLIN).assertGradleFilesGenerated()
        }
    
        def "creates sample source if no source present with #scriptDsl build scripts"() {
            def dslFixture = dslFixtureFor(scriptDsl)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  5. tensorflow/cc/ops/while_loop_test.cc

    TEST_F(WhileLoopTest, NullCondOutputNode) {
      Init(1);
      // TODO(skyewm): improve error message
      CreateLoop(
          [](const Scope& s, const std::vector<Output>& inputs, Output* output) {
            *output = {nullptr, 0};
            return s.status();
          },
          AddOneBody, error::INVALID_ARGUMENT, "Node is null");
    }
    
    TEST_F(WhileLoopTest, InvalidCondOutputIndex) {
      Init(1);
      CreateLoop(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 13 22:30:58 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/configurations/BaseGradleBuildType.kt

    import jetbrains.buildServer.configs.kotlin.BuildType
    import model.Stage
    
    open class BaseGradleBuildType(
        val stage: Stage? = null,
        val failStage: Boolean = true,
        init: BaseGradleBuildType.() -> Unit = {}
    ) : BuildType() {
        init {
            this.init()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 298 bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_asset_sinking.mlir

      "tf_saved_model.session_initializer"() {initializers = [@init]} : () -> ()
    
      // CHECK-NOT: "tf_saved_model.asset"
      "tf_saved_model.asset"() {filename = "assets/test0.txt", sym_name = "asset0"} : () -> ()
      "tf_saved_model.asset"() {filename = "assets/test1.txt", sym_name = "asset1"} : () -> ()
    
      // CHECK: func @init()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. pkg/apis/abac/v0/register.go

    var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v0"}
    
    func init() {
    	// TODO: Delete this init function, abac should not have its own scheme.
    	utilruntime.Must(addKnownTypes(abac.Scheme))
    
    	utilruntime.Must(RegisterConversions(abac.Scheme))
    }
    
    var (
    	// SchemeBuilder is the scheme builder with scheme init functions to run for this API package
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 28 20:14:20 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  9. pkg/apis/abac/v1beta1/register.go

    var SchemeGroupVersion = schema.GroupVersion{Group: GroupName, Version: "v1beta1"}
    
    func init() {
    	// TODO: Delete this init function, abac should not have its own scheme.
    	utilruntime.Must(addKnownTypes(abac.Scheme))
    
    	utilruntime.Must(RegisterConversions(abac.Scheme))
    }
    
    var (
    	// SchemeBuilder is the scheme builder with scheme init functions to run for this API package
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 28 20:14:20 UTC 2019
    - 2.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    // limitations under the License.
    
    [[build_init_plugin]]
    = Build Init Plugin
    
    
    The Build Init plugin can be used to create a new Gradle build. It supports creating brand new Gradle builds of various types as well as converting existing Apache Maven builds to Gradle.
    
    [[sec:sample_usage]]
    == Sample usage
    
    ```bash
    gradle init \
      --type java-application \
      --dsl kotlin \
      --test-framework junit-jupiter \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top