Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 45 of 45 for participant (0.37 sec)

  1. src/syscall/syscall_linux_test.go

    			// test to race thread destruction too.
    			once := routines%5 == 4
    			go waiter(question, response, once)
    
    			// Keep a count of how many goroutines are
    			// going to participate in the
    			// question/response test. This will count up
    			// towards 2*launches minus the count of
    			// routines that have been invoked with
    			// once=true.
    			routines++
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    Alternatively, if the property is internal, that is to say that it shouldn't participate in up-to-date checking (it's not an input or an output), then you need to annotate it with link:{javadocPath}/org/gradle/api/tasks/Internal.html[@Internal].
    
    [[incompatible_annotations]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  3. src/runtime/iface.go

    	// The hash is used in type switches. However, compiler statically generates itab's
    	// for all interface/type pairs used in switches (which are added to itabTable
    	// in itabsinit). The dynamically-generated itab's never participate in type switches,
    	// and thus the hash is irrelevant.
    	// Note: m.Hash is _not_ the hash used for the runtime itabTable hash table.
    	m.Hash = 0
    	itabInit(m, true)
    	itabAdd(m)
    	unlock(&itabLock)
    finish:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_groovy_to_kotlin_dsl.adoc

    // https://gradle.slack.com/archives/C14BJHC2K/p1534945935000100
    // split into "migrating builds" vs. "migrating scripts"?
    
    As we've seen above, both scripts using the Kotlin DSL and those using the Groovy DSL can participate in the same build.
    In addition, Gradle plugins from the _buildSrc_ directory, an included build or an external location can be implemented using any JVM language.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/func.go

    	nn := typecheck.TempAt(pos, f.fe.Func(), typ) // Note: adds new auto to fn.Dcl list
    	nn.SetNonMergeable(true)
    	return nn
    }
    
    // IsMergeCandidate returns true if variable n could participate in
    // stack slot merging. For now we're restricting the set to things to
    // items larger than what CanSSA would allow (approximateky, we disallow things
    // marked as open defer slots so as to avoid complicating liveness
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
Back to top