Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for CurrentState (0.16 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/TestableDaemon.groovy

            def lastRegistryState = registryProbe.currentState
            def lastLogState = logFileProbe.currentState
            while (!timer.hasExpired() && (lastRegistryState != state || lastLogState != state)) {
                Thread.sleep(200)
                lastRegistryState = registryProbe.currentState
                lastLogState = logFileProbe.currentState
            }
            if (lastRegistryState == state && lastLogState == state) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 15:22:16 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/LegacyDaemon.groovy

        protected void waitForState(State state) {
            def timer = Time.startCountdownTimer(STATE_CHANGE_TIMEOUT)
            def lastLogState = logFileProbe.currentState
            while (!timer.hasExpired() && lastLogState != state) {
                Thread.sleep(200)
                lastLogState = logFileProbe.currentState
            }
            if (lastLogState == state) {
                return
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 15:22:16 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/opensearch/extension/analysis/ReloadableKuromojiTokenizerFactory.java

                    attributeImplsField.set(this, attributeImplsObj);
    
                    final Field currentStateField = getAccessibleField(AttributeSource.class, "currentState");
                    final Object currentStateObj = currentStateField.get(tokenizer);
                    currentStateField.set(this, currentStateObj);
                } catch (final Exception e) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 9.5K bytes
    - Viewed (0)
Back to top