Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 139 for Synchronizer (0.15 sec)

  1. src/sync/atomic/doc.go

    // functions, are the atomic equivalents of "return *addr" and
    // "*addr = val".
    //
    // In the terminology of [the Go memory model], if the effect of
    // an atomic operation A is observed by atomic operation B,
    // then A “synchronizes before” B.
    // Additionally, all the atomic operations executed in a program
    // behave as though executed in some sequentially consistent order.
    // This definition provides the same semantics as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. src/runtime/race_s390x.s

    	// Tail call fails to restore R15, so use a normal one.
    	BL	racecall<>(SB)
    	RET
    racecallatomic_ignore:
    	// Call __tsan_go_ignore_sync_begin to ignore synchronization during
    	// the atomic op. An attempt to synchronize on the address would cause
    	// a crash.
    	MOVD	R1, R6				// Save target function.
    	MOVD	R14, R7				// Save PC.
    	MOVD	$__tsan_go_ignore_sync_begin(SB), R1
    	MOVD	g_racectx(g), R2		// ThreadState *.
    	BL	racecall<>(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. cmd/global-heal.go

    					// proceed to heal nonetheless.
    					entry, _ = entries.firstFound()
    				}
    				jt.Take()
    				go healEntry(bucket, *entry)
    			},
    			finished: nil,
    		})
    		jt.Wait() // synchronize all the concurrent heal jobs
    		if err != nil {
    			// Set this such that when we return this function
    			// we let the caller retry this disk again for the
    			// buckets it failed to list.
    			retErr = err
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. docs/en/docs/async.md

    As the execution time is consumed mostly by waiting for <abbr title="Input and Output">I/O</abbr> operations, they call them "I/O bound" operations.
    
    It's called "asynchronous" because the computer / program doesn't have to be "synchronized" with the slow task, waiting for the exact moment that the task finishes, while doing nothing, to be able to take the task result and continue the work.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/stdlib_test.go

    	"builtin": true,
    
    	// go.dev/issue/46027: some imports are missing for this submodule.
    	"crypto/internal/edwards25519/field/_asm": true,
    	"crypto/internal/bigmod/_asm":             true,
    }
    
    // printPackageMu synchronizes the printing of type-checked package files in
    // the typecheckFiles function.
    //
    // Without synchronization, package files may be interleaved during concurrent
    // type-checking.
    var printPackageMu sync.Mutex
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:18:33 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top