Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 139 for Synchronizer (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. src/runtime/proc.go

    // Can be executed by any P.
    func runqgrab(pp *p, batch *[256]guintptr, batchHead uint32, stealRunNextG bool) uint32 {
    	for {
    		h := atomic.LoadAcq(&pp.runqhead) // load-acquire, synchronize with other consumers
    		t := atomic.LoadAcq(&pp.runqtail) // load-acquire, synchronize with the producer
    		n := t - h
    		n = n - n/2
    		if n == 0 {
    			if stealRunNextG {
    				// Try to steal from pp.runnext.
    				if next := pp.runnext; next != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pkg/volume/util/atomic_writer.go

    // a target directory.
    //
    // Note:
    //
    //  1. AtomicWriter reserves the set of pathnames starting with `..`.
    //  2. AtomicWriter offers no concurrency guarantees and must be synchronized
    //     by the caller.
    //
    // The visible files in this volume are symlinks to files in the writer's data
    // directory.  Actual files are stored in a hidden timestamped directory which
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 12:32:15 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SystemHelper.java

            }
        }
    
        protected short getSystemCpuPercent() {
            final long now = getCurrentTimeAsLong();
            if (now - systemCpuCheckTime > systemCpuCheckInterval) {
                synchronized (this) {
                    if (now - systemCpuCheckTime > systemCpuCheckInterval) {
                        try {
                            final OsProbe osProbe = OsProbe.getInstance();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun May 26 05:52:29 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.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. src/sync/map.go

    //
    // The zero Map is empty and ready for use. A Map must not be copied after first use.
    //
    // In the terminology of [the Go memory model], Map arranges that a write operation
    // “synchronizes before” any read operation that observes the effect of the write, where
    // read and write operations are defined as follows.
    // [Map.Load], [Map.LoadAndDelete], [Map.LoadOrStore], [Map.Swap], [Map.CompareAndSwap],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
Back to top