Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for Synchronizer (0.32 sec)

  1. maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/MojoDescriptor.java

        public org.apache.maven.api.plugin.descriptor.MojoDescriptor getMojoDescriptorV4() {
            if (mojoDescriptorV4 == null) {
                synchronized (this) {
                    if (mojoDescriptorV4 == null) {
                        mojoDescriptorV4 = org.apache.maven.api.plugin.descriptor.MojoDescriptor.newBuilder()
                                .goal(goal)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  2. src/runtime/race_amd64.s

    	JMP	racecall<>(SB)	// does not return
    racecallatomic_ignore:
    	// Addr is outside the good range.
    	// Call __tsan_go_ignore_sync_begin to ignore synchronization during the atomic op.
    	// An attempt to synchronize on the address would cause crash.
    	MOVQ	AX, BX	// remember the original function
    	MOVQ	$__tsan_go_ignore_sync_begin(SB), AX
    	MOVQ	g_racectx(R14), RARG0	// goroutine context
    	CALL	racecall<>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderConnection.java

                    this.delegate = delegate;
                }
    
                @Override
                public void dispatch(Object message) {
                    synchronized (this) {
                        delegate.dispatch(message);
                    }
                }
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. src/runtime/string.go

    }
    
    // slicebytetostringtmp returns a "string" referring to the actual []byte bytes.
    //
    // Callers need to ensure that the returned string will not be used after
    // the calling goroutine modifies the original slice or synchronizes with
    // another goroutine.
    //
    // The function is only called when instrumenting
    // and otherwise intrinsified by the compiler.
    //
    // Some internal compiler optimizations use this function.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

            }
        }
    
        @Nullable
        private static String getNativeDirOverride() {
            return System.getProperty(NATIVE_DIR_OVERRIDE, System.getenv(NATIVE_DIR_OVERRIDE));
        }
    
        public static synchronized NativeServices getInstance() {
            if (!INSTANCE.initialized) {
                // If this occurs while running gradle or running integration tests, it is indicative of a problem.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. src/runtime/race_arm64.s

    	ADD	$40, RSP, R3
    	JMP	racecall<>(SB)	// does not return
    racecallatomic_ignore:
    	// Addr is outside the good range.
    	// Call __tsan_go_ignore_sync_begin to ignore synchronization during the atomic op.
    	// An attempt to synchronize on the address would cause crash.
    	MOVD	R9, R21	// remember the original function
    	MOVD	$__tsan_go_ignore_sync_begin(SB), R9
    	load_g
    	MOVD	g_racectx(g), R0	// goroutine context
    	BL	racecall<>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	{40, "ELOOP", "too many levels of symbolic links"},
    	{42, "ENOMSG", "no message of desired type"},
    	{43, "EIDRM", "identifier removed"},
    	{44, "ECHRNG", "channel number out of range"},
    	{45, "EL2NSYNC", "level 2 not synchronized"},
    	{46, "EL3HLT", "level 3 halted"},
    	{47, "EL3RST", "level 3 reset"},
    	{48, "ELNRNG", "link number out of range"},
    	{49, "EUNATCH", "protocol driver not attached"},
    	{50, "ENOCSI", "no CSI structure available"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  8. src/runtime/race.go

    // RaceAcquire is equivalent to atomic_load(memory_order_acquire).
    //
    //go:nosplit
    func RaceAcquire(addr unsafe.Pointer) {
    	raceacquire(addr)
    }
    
    // RaceRelease performs a release operation on addr that
    // can synchronize with a later RaceAcquire on addr.
    //
    // In terms of the C memory model, RaceRelease is equivalent to
    // atomic_store(memory_order_release).
    //
    //go:nosplit
    func RaceRelease(addr unsafe.Pointer) {
    	racerelease(addr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	{40, "ELOOP", "too many levels of symbolic links"},
    	{42, "ENOMSG", "no message of desired type"},
    	{43, "EIDRM", "identifier removed"},
    	{44, "ECHRNG", "channel number out of range"},
    	{45, "EL2NSYNC", "level 2 not synchronized"},
    	{46, "EL3HLT", "level 3 halted"},
    	{47, "EL3RST", "level 3 reset"},
    	{48, "ELNRNG", "link number out of range"},
    	{49, "EUNATCH", "protocol driver not attached"},
    	{50, "ENOCSI", "no CSI structure available"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

                    @Inject
                    abstract ArchiveOperations getArchiveOperations()
    
                    @Override
                    void execute() {
                        // This synchronizes all extracters so they try to start at the same time
                        ${server.callFromBuild("wait")}
                        archiveOperations.tarTree(parameters.archiveFile).visit { fcd ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
Back to top