Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 70 for Enable (0.72 sec)

  1. src/cmd/link/internal/ld/main.go

    	flagDumpDep       = flag.Bool("dumpdep", false, "dump symbol dependency graph")
    	flagRace          = flag.Bool("race", false, "enable race detector")
    	flagMsan          = flag.Bool("msan", false, "enable MSan interface")
    	flagAsan          = flag.Bool("asan", false, "enable ASan interface")
    	flagAslr          = flag.Bool("aslr", true, "enable ASLR for buildmode=c-shared on windows")
    
    	flagFieldTrack = flag.String("k", "", "set field tracking `symbol`")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultBuildTreeModelControllerServices.kt

            val modelParameters = if (requirements.isCreatesModel) {
                // When creating a model, disable certain features - only enable configure on demand and configuration cache when isolated projects is enabled
                BuildModelParameters(
                    parallelProjectExecution,
                    isolatedProjects,
                    isolatedProjects,
                    isolatedProjects,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  3. src/archive/tar/writer.go

    	}
    	return tw.writeRawHeader(blk, hdr.Size, hdr.Typeflag)
    }
    
    func (tw *Writer) writePAXHeader(hdr *Header, paxHdrs map[string]string) error {
    	realName, realSize := hdr.Name, hdr.Size
    
    	// TODO(dsnet): Re-enable this when adding sparse support.
    	// See https://golang.org/issue/22735
    	/*
    		// Handle sparse files.
    		var spd sparseDatas
    		var spb []byte
    		if len(hdr.SparseHoles) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/api/standalone/StandaloneAnalysisAPISessionBuilder.kt

    internal object StandaloneSessionServiceRegistrar : AnalysisApiSimpleServiceRegistrar() {
        override fun registerApplicationServices(application: MockApplication) {
            application.apply {
                // TODO (KT-68386): Re-enable once KT-68386 is fixed.
                //registerService(KotlinAnalysisPermissionOptions::class.java, KotlinStandaloneAnalysisPermissionOptions::class.java)
            }
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 14K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/security.go

    	re(`-Wl,-berok`),
    	re(`-Wl,-Bstatic`),
    	re(`-Wl,-Bsymbolic-functions`),
    	re(`-Wl,-O[0-9]+`),
    	re(`-Wl,-d[ny]`),
    	re(`-Wl,--disable-new-dtags`),
    	re(`-Wl,-e[=,][a-zA-Z0-9]+`),
    	re(`-Wl,--enable-new-dtags`),
    	re(`-Wl,--end-group`),
    	re(`-Wl,--(no-)?export-dynamic`),
    	re(`-Wl,-E`),
    	re(`-Wl,-framework,[^,@\-][^,]+`),
    	re(`-Wl,--hash-style=(sysv|gnu|both)`),
    	re(`-Wl,-headerpad_max_install_names`),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/cmd/go/internal/help/helpdoc.go

    		generated by running a "go build -cover" binary.
    		Requires that GOEXPERIMENT=coverageredesign is enabled.
    
    Special-purpose environment variables:
    
    	GCCGOTOOLDIR
    		If set, where to find gccgo tools, such as cgo.
    		The default is based on how gccgo was configured.
    	GOEXPERIMENT
    		Comma-separated list of toolchain experiments to enable or disable.
    		The list of available experiments may change arbitrarily over time.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheState.kt

            writeStrings(startParameterTaskNames)
        }
    
        private
        fun DefaultReadContext.readStartParameterOf(gradle: GradleInternal) {
            // Restore startParameter.taskNames to enable `gradle.startParameter.setTaskNames(...)` idiom in included build scripts
            // See org/gradle/caching/configuration/internal/BuildCacheCompositeConfigurationIntegrationTest.groovy:134
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  8. android/pom.xml

                <configuration>
                  <compilerArgs combine.children="append">
                    <!-- https://errorprone.info/docs/installation#maven -->
                    <!-- TODO(cpovirk): Enable NullArgumentForNonNullParameter for
                         prod code. It's disabled automatically for "test code"
                         (which is good: our tests have intentional violations), but
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. pom.xml

                <configuration>
                  <compilerArgs combine.children="append">
                    <!-- https://errorprone.info/docs/installation#maven -->
                    <!-- TODO(cpovirk): Enable NullArgumentForNonNullParameter for
                         prod code. It's disabled automatically for "test code"
                         (which is good: our tests have intentional violations), but
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 03 20:33:34 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

                ignoringUnexpectedInputs()
            }
        }
    
        @Issue("https://github.com/gradle/gradle/issues/22305")
        def "evaluating a value source parameter does not enable input tracking inside the value source"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            buildFile.text = """
    
                import org.gradle.api.provider.*
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top