Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 62 for outlier (0.21 sec)

  1. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/doc.go

    // iteration variable of an enclosing loop, and the loop calls the function
    // in such a way (e.g. with go or defer) that it may outlive the loop
    // iteration and possibly observe the wrong value of the variable.
    //
    // Note: An iteration variable can only outlive a loop iteration in Go versions <=1.21.
    // In Go 1.22 and later, the loop variable lifetimes changed to create a new
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. src/runtime/chanbarrier_test.go

    	t.Parallel()
    	testChanSendBarrier(false)
    }
    
    func testChanSendBarrier(useSelect bool) {
    	var wg sync.WaitGroup
    	outer := 100
    	inner := 100000
    	if testing.Short() || runtime.GOARCH == "wasm" {
    		outer = 10
    		inner = 1000
    	}
    	for i := 0; i < outer; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    			var garbage []byte
    			for j := 0; j < inner; j++ {
    				_, err := doRequest(useSelect)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/scripts/process-log.groovy

            String opName = line.contains('"name": "allOf"') ?  'allOf' : 'anyOf'
            File outDir = opName == 'allOf' ? allOfDir : anyOfDir
            def sorted = sort(line)
            String opNameWithHash = "${opName}-${sorted.hashCode()}"
    
            Counter counter = opCounters[opNameWithHash]
            counter.inc()
    
            File mergeOp = new File(outDir, "${counter.formattedId}-${opName}-${counter.counter}.json")
            if (mergeOp.exists()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  4. src/internal/nettrace/nettrace.go

    // be a *Trace struct.
    type TraceKey struct{}
    
    // LookupIPAltResolverKey is a context.Context Value key used by tests to
    // specify an alternate resolver func.
    // It is not exposed to outsider users. (But see issue 12503)
    // The value should be the same type as lookupIP:
    //
    //	func lookupIP(ctx context.Context, host string) ([]IPAddr, error)
    type LookupIPAltResolverKey struct{}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:57:14 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

         *
         * ```
         * typealias Inner = String
         * typealias Outer = Inner
         *
         * val outer: Outer = ""
         * ```
         *
         * Here, `outer`'s type would be expanded to `String`, but its abbreviated type would be `Outer`. `Inner` would be lost.
         */
        public val abbreviatedType: KaUsualClassType?
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/PreCreateOutputParentsStepTest.groovy

    class PreCreateOutputParentsStepTest extends StepSpec<ChangingOutputsContext> {
        def step = new PreCreateOutputParentsStep<>(delegate)
    
        def "outputs are created"() {
            given:
            def outputDir = file("outDir")
            def outputFile = file("parent/outFile")
            def localStateFile = file("local-state/stateFile")
            def destroyableFile = file("destroyable/file.txt")
    
            when:
            step.execute(work, context)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:22 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/upgrade/admin_upgrade.jsp

    							<div class="alert alert-info">${msg}</div>
    						</la:info>
    						<la:errors />
    					</div>
    					<%-- Message: END --%>
    					<div class="col-md-12">
    						<div class="card card-outline card-primary">
    							<div class="card-header">
    								<h3 class="card-title">
    									<la:message key="labels.upgrade_data_migration" />
    								</h3>
    							</div>
    							<div class="card-body">
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. platforms/core-configuration/kotlin-dsl-integ-tests/src/integTest/kotlin/org/gradle/kotlin/dsl/integration/PrecompiledScriptPluginVersionCatalogIntegrationTest.kt

        @Test
        fun `version catalogs main extension is available`() {
            withKotlinBuildSrc()
            withSimpleVersionCatalog()
            val scriptBody = """
                // Can use outer build version catalog when applied
                println(versionCatalogs.named("libs").findLibrary("groovy").get().get())
            """
            withFile("buildSrc/src/main/kotlin/plugin-without-plugins.gradle.kts", scriptBody)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 08:15:18 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  9. src/sync/once.go

    	// waiting for the first's call to f to complete.
    	// This is why the slow path falls back to a mutex, and why
    	// the o.done.Store must be delayed until after f returns.
    
    	if o.done.Load() == 0 {
    		// Outlined slow-path to allow inlining of the fast-path.
    		o.doSlow(f)
    	}
    }
    
    func (o *Once) doSlow(f func()) {
    	o.m.Lock()
    	defer o.m.Unlock()
    	if o.done.Load() == 0 {
    		defer o.done.Store(1)
    		f()
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/cc/saved_model_import.h

    //
    // `tags` identify the `tensorflow::MetaGraphDef` to load from the SavedModel.
    // Similarly, `signature_keys` identify the functions (`SignatureDef`s) to load
    // within the `MetaGraphDef`. `ctx` is the `MLIRContext`, which should outlive
    // the returned `ModuleOp`, thus marked with the lifetime bound attribute.
    // TODO: b/329206105 - Add unit tests after decomposing preprocessing passes.
    absl::StatusOr<ImportedMlirModuleOp> SavedModelToMlirModuleOp(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top