Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 89 for wbMove (0.12 sec)

  1. src/time/tick_test.go

    		t.Helper()
    		for range tries {
    			Sleep(sched)
    			select {
    			case <-done:
    				return
    			default:
    			}
    		}
    		t.Fatalf("never got done")
    	}
    
    	// Reset timer in heap (already reset above, but just in case).
    	tim.Reset(10000 * Second)
    	drainAsync()
    
    	// Test stop while timer in heap (because goroutine is blocked on <-C).
    	done := make(chan bool)
    	notDone(done)
    	go func() {
    		<-C
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/body-multiple-params.md

    As, by default, singular values are interpreted as query parameters, you don't have to explicitly add a `Query`, you can just do:
    
    ```Python
    q: Union[str, None] = None
    ```
    
    Or in Python 3.10 and above:
    
    ```Python
    q: str | None = None
    ```
    
    For example:
    
    === "Python 3.10+"
    
        ```Python hl_lines="27"
        {!> ../../../docs_src/body_multiple_params/tutorial004_an_py310.py!}
        ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jun 09 02:01:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. src/sync/rwmutex.go

    // - Unlock  -> Lock:  readerSem
    // - Unlock  -> RLock: readerSem
    // - RUnlock -> Lock:  writerSem
    //
    // The methods below temporarily disable handling of race synchronization
    // events in order to provide the more precise model above to the race
    // detector.
    //
    // For example, atomic.AddInt32 in RLock should not appear to provide
    // acquire-release semantics, which would incorrectly synchronize racing
    // readers, thus potentially missing races.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  4. src/runtime/coro.go

    	}
    
    	if exit {
    		// The M might have a non-zero OS thread lock count when we get here, gdestroy
    		// will avoid destroying the M if the G isn't explicitly locked to it via lockedm,
    		// which we cleared above. It's fine to gdestroy here also, even when locked to
    		// the thread, because we'll be switching back to another goroutine anyway, which
    		// will take back its thread-lock state before returning.
    		gdestroy(gp)
    		gp = nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

                    require("2.0")
                }
            }
        }
    }
    ----
    ======
    =====
    
    In the above example, the build logic uses iteration and mutation to try to set a default version for a particular dependency if the version is not already set.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/deadcode.go

    				// interface of T from []chan T). We need to traverse its "child" types
    				// with UsedInIface attribute set.
    				// When visiting the child type (chan T in the example above), it will
    				// have UsedInIface set, so it in turn will mark and (re)visit its children
    				// (e.g. T above).
    				// We unset the reachable bit here, so if the child type is already visited,
    				// it will be visited again.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  7. src/sync/mutex.go

    			// In starvation mode ownership is directly handed off from unlocking
    			// goroutine to the next waiter. We are not part of this chain,
    			// since we did not observe mutexStarving when we unlocked the mutex above.
    			// So get off the way.
    			if old>>mutexWaiterShift == 0 || old&(mutexLocked|mutexWoken|mutexStarving) != 0 {
    				return
    			}
    			// Grab the right to wake someone.
    			new = (old - 1<<mutexWaiterShift) | mutexWoken
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                        else -> Unclassified
                    }
                }
            }
        }
    
        /**
         * Returns whether this [FirScope] is a scope wider than [another] based on the above [PartialOrderOfScope] or not.
         */
        private fun FirScope.isWiderThan(another: FirScope): Boolean =
            toPartialOrder().scopeDistanceLevel > another.toPartialOrder().scopeDistanceLevel
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  9. src/go/types/unify.go

    	// If we have at least one type parameter, there is one in x.
    	// If we have exactly one type parameter, because it is in x,
    	// isTypeLit(x) is false and y was not changed above. In other
    	// words, if y was a defined type, it is still a defined type
    	// (relevant for the logic below).
    	switch px, py := u.asBoundTypeParam(x), u.asBoundTypeParam(y); {
    	case px != nil && py != nil:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  10. .bazelrc

    build --incompatible_enforce_config_setting_visibility
    # TODO: also enable this flag after fixing the visibility violations
    # build --incompatible_config_setting_private_default_visibility
    
    # Default options should come above this line.
    
    # Android configs. Bazel needs to have --cpu and --fat_apk_cpu both set to the
    # target CPU to build transient dependencies correctly. See
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top