Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 501 for regUsed (0.26 sec)

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

    // to update gp.stack.lo with the stack bounds. If the G itself is passed to
    // _cgo_getstackbound, then writes to the same G can be seen on multiple
    // threads (when the G is reused after thread exit). This would trigger TSAN.
    
    /*
    #include <pthread.h>
    
    void go_callback();
    
    static void *thr(void *arg) {
        go_callback();
        return 0;
    }
    
    static void foo() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 17 21:53:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

            }
        }
    
        private boolean shouldCacheResolutionState() {
            // When there may be more than one configuration defined, cache the component resolution state, so it can be reused for resolving multiple configurations.
            // When there may be no more than one configuration, don't cache the resolution state for reuse. Currently, this only applies to detached configurations, however
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1/types_test.go

    // for removed fields are not re-used. DO NOT remove this test for any reason, this ensures that tombstoned
    // protobuf field numbers are not accidentally reused by other fields.
    func Test_NetworkPolicyRemovedFieldProtobufNumberReservation(t *testing.T) {
    	obj := reflect.ValueOf(NetworkPolicy{}).Type()
    	for i := 0; i < obj.NumField(); i++ {
    		f := obj.Field(i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/api/internal/ReusableAction.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.api.internal;
    
    /**
     * A marker interface for rules which can be safely reused because they are either
     * stateless, or effectively immutable. Ideally this should be inferred, which is
     * why the interface is internal.
     */
    public interface ReusableAction {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 893 bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/cache.go

    	blocks [200]Block
    	locs   [2000]Location
    
    	// Reusable stackAllocState.
    	// See stackalloc.go's {new,put}StackAllocState.
    	stackAllocState *stackAllocState
    
    	scrPoset []*poset // scratch poset to be reused
    
    	// Reusable regalloc state.
    	regallocValues []valState
    
    	ValueToProgAfter []*obj.Prog
    	debugState       debugState
    
    	Liveness interface{} // *gc.livenessFuncCache
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 23:00:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. src/runtime/defs_solaris_amd64.go

    //go:build ignore
    
    /*
    Input to cgo.
    
    GOARCH=amd64 go tool cgo -cdefs defs_solaris.go defs_solaris_amd64.go >defs_solaris_amd64.h
    */
    
    package runtime
    
    /*
    #include <sys/types.h>
    #include <sys/regset.h>
    */
    import "C"
    
    const (
    	REG_RDI    = C.REG_RDI
    	REG_RSI    = C.REG_RSI
    	REG_RDX    = C.REG_RDX
    	REG_RCX    = C.REG_RCX
    	REG_R8     = C.REG_R8
    	REG_R9     = C.REG_R9
    	REG_R10    = C.REG_R10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 1004 bytes
    - Viewed (0)
  7. src/runtime/metrics/sample.go

    // manipulated while a Read with that value is outstanding; that is a data race.
    // This property includes pointer-typed Values (for example, [Float64Histogram])
    // whose underlying storage will be reused by Read when possible. To safely use
    // such values in a concurrent setting, all data must be deep-copied.
    //
    // It is safe to execute multiple Read calls concurrently, but their arguments
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 16:59:11 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/extensions/v1beta1/types_test.go

    // for removed fields are not re-used. DO NOT remove this test for any reason, this ensures that tombstoned
    // protobuf field numbers are not accidentally reused by other fields.
    func Test_NetworkPolicyRemovedFieldProtobufNumberReservation(t *testing.T) {
    	obj := reflect.ValueOf(NetworkPolicy{}).Type()
    	for i := 0; i < obj.NumField(); i++ {
    		f := obj.Field(i)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. src/sync/waitgroup.go

    // at any time.
    // Typically this means the calls to Add should execute before the statement
    // creating the goroutine or other event to be waited for.
    // If a WaitGroup is reused to wait for several independent sets of events,
    // new Add calls must happen after all previous Wait calls have returned.
    // See the WaitGroup example.
    func (wg *WaitGroup) Add(delta int) {
    	if race.Enabled {
    		if delta < 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 4K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PluginUseClassLoadingIntegrationSpec.groovy

    import org.gradle.test.fixtures.file.LeaksFileHandles
    import spock.lang.Issue
    
    @LeaksFileHandles
    class PluginUseClassLoadingIntegrationSpec extends AbstractPluginSpec {
    
        def "plugin classes are reused if possible"() {
            given:
            publishPlugin()
            settingsFile << """
                include "p1"
                include "p2"
            """
    
            when:
            file("p1/build.gradle") << USE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top