Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,215 for ninit (0.08 sec)

  1. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/plugins/precompiled/PrecompiledScriptPluginAccessorSettingEvaluationTest.kt

            initScript(
                gradleUserHome.resolve("init.d/init.gradle"),
                "<init.d>"
            )
            // -I init.gradle
            val initScript = initScript(
                file("init.gradle"),
                "<command-line>"
            )
    
            // when: precompiled script plugin accessors are generated
            buildWithGradleUserHome(
                gradleUserHome,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 30 11:39:02 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/InitScriptExecutionIntegrationTest.groovy

            and:
            executer.gradleUserHomeDir.file('init.d/a.gradle') << 'println "init #a#"'
            executer.gradleUserHomeDir.file('init.d/b.gradle') << 'println "init #b#"'
            executer.gradleUserHomeDir.file('init.d/c.gradle') << 'println "init #c#"'
    
            when:
            run()
    
            then:
            def a = output.indexOf('init #a#')
            def b = output.indexOf('init #b#')
            def c = output.indexOf('init #c#')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/walk.go

    	if n.Typecheck() == 0 {
    		base.Fatalf("missing typecheck: %+v", n)
    	}
    	init := ir.TakeInit(n)
    
    	n.X = walkExpr(n.X, &init)
    	call := walkExpr(mkcall1(chanfn("chanrecv1", 2, n.X.Type()), nil, &init, n.X, typecheck.NodNil()), &init)
    	return ir.InitExpr(init, call)
    }
    
    func convas(n *ir.AssignStmt, init *ir.Nodes) *ir.AssignStmt {
    	if n.Op() != ir.OAS {
    		base.Fatalf("convas: not OAS %v", n.Op())
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/tasks/InitBuildSpec.groovy

            projectLayoutRegistry = Mock()
            defaultGenerator = Mock()
            buildConverter = Mock()
            init.projectLayoutRegistry = projectLayoutRegistry
            init.insecureProtocol.convention(InsecureProtocolOption.WARN)
            init.useDefaults.convention(false)
            init.comments.convention(true)
            init.allowFileOverwrite.convention(false)
        }
    
        def "creates project with all defaults"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/mod_find.txt

    cd $WORK/x
    exists x.go
    go mod init
    stderr 'module x'
    
    # Import comment works even with CRLF line endings.
    rm go.mod
    replace '\n' '\r\n' x.go
    go mod init
    stderr 'module x'
    
    # Derive module path from location inside GOPATH.
    # 'go mod init' should succeed if modules are not explicitly disabled.
    cd $GOPATH/src/example.com/x/y
    go mod init
    stderr 'module example.com/x/y$'
    rm go.mod
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:14 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tf_tfl_translate_cl.cc

        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> enable_stablehlo_conversion(
        "enable-stablehlo-conversion",
        llvm::cl::desc("Enable converting TF to Stablehlo."),
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    opt<bool> post_training_quantization(
        "post-training-quantization",
        llvm::cl::desc("Enable post_training_quantization."),
        llvm::cl::init(false));
    
    // NOLINTNEXTLINE
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 05 20:53:17 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/builtin.go

    func walkUnsafeData(n *ir.UnaryExpr, init *ir.Nodes) ir.Node {
    	slice := walkExpr(n.X, init)
    	res := typecheck.Expr(ir.NewUnaryExpr(n.Pos(), ir.OSPTR, slice))
    	res.SetType(n.Type())
    	return walkExpr(res, init)
    }
    
    func walkUnsafeSlice(n *ir.BinaryExpr, init *ir.Nodes) ir.Node {
    	ptr := safeExpr(n.X, init)
    	len := safeExpr(n.Y, init)
    	sliceType := n.Type()
    
    	lenType := types.Types[types.TINT64]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/M2Installation.groovy

        }
    
        TestFile getUserHomeDir() {
            init()
            return userHomeDir
        }
    
        TestFile getUserM2Directory() {
            init()
            return userM2Directory
        }
    
        TestFile getUserSettingsFile() {
            init()
            return userSettingsFile
        }
    
        TestFile getGlobalMavenDirectory() {
            init()
            return globalMavenDirectory
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_init_path.txt

    # Regression test for https://go.dev/issue/51448.
    # 'go work init . .. foo/bar' should produce a go.work file
    # with the same paths as 'go work init; go work use -r ..',
    # and it should have 'use .' rather than 'use ./.' inside.
    
    cd dir
    
    go work init . .. foo/bar
    mv go.work go.work.init
    
    go work init
    go work use -r ..
    cmp go.work go.work.init
    
    cmpenv go.work $WORK/go.work.want
    
    -- go.mod --
    module example
    go 1.18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 26 17:53:40 UTC 2023
    - 571 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model_remove_vars_in_session_initializer.mlir

      "tf_saved_model.session_initializer"() { initializers = [@init] } : () -> ()
    }
    
    // -----
    
    module attributes {tf_saved_model.semantics} {
      // Test case: Invalid multiple blocks in the initializer funcion.
      "tf_saved_model.session_initializer"() { initializers = [@init] } : () -> ()
      // expected-error@+1 {{expects exactly one block in the MLIR function}}
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 02 00:22:36 UTC 2023
    - 5.2K bytes
    - Viewed (0)
Back to top