Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,873 for ninit (0.27 sec)

  1. src/cmd/cgo/internal/testsanitizers/testdata/msan8.go

    	int i;
    
    	msanGoSignalThread = pthread_self();
            __atomic_store_n(&msanGoSignalThreadSet, 1, __ATOMIC_SEQ_CST);
    
    	// Force uninit to be undefined for msan.
    	__msan_poison(&uninit, sizeof uninit);
    	for (i = 0; i < 100; i++) {
    		msanGoWait(uninit, uninit, uninit, uninit, uninit, uninit);
            }
    }
    
    // msanGoReady returns whether msanGoSignalThread is set.
    int msanGoReady() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:30:58 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. okhttp/src/main/kotlin/okhttp3/CipherSuite.kt

        @JvmField val TLS_RSA_WITH_NULL_SHA = init("SSL_RSA_WITH_NULL_SHA", 0x0002)
    
        @JvmField val TLS_RSA_EXPORT_WITH_RC4_40_MD5 = init("SSL_RSA_EXPORT_WITH_RC4_40_MD5", 0x0003)
    
        @JvmField val TLS_RSA_WITH_RC4_128_MD5 = init("SSL_RSA_WITH_RC4_128_MD5", 0x0004)
    
        @JvmField val TLS_RSA_WITH_RC4_128_SHA = init("SSL_RSA_WITH_RC4_128_SHA", 0x0005)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 39.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/modelRules/basicRuleSourcePlugin/tests/basicRuleSourcePlugin-model-task.out

              | Value:  	task ':help'
              | Creator: 	Project.<init>.tasks.help()
              | Rules:
                 ⤷ copyToTaskContainer
        + init
              | Type:   	org.gradle.buildinit.tasks.InitBuild
              | Value:  	task ':init'
              | Creator: 	Project.<init>.tasks.init()
              | Rules:
                 ⤷ copyToTaskContainer
        + javaToolchains
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 15:10:38 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top