Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 for transitioningTo (0.28 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/model/StateTransitionController.java

            }
    
            @Override
            public void assertInState(T expected) {
                throw new IllegalStateException("Expected " + displayName.getDisplayName() + " to be in state " + expected + " but is in state " + state + " and transitioning to " + targetState + ".");
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 03 03:31:44 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/model/StateTransitionControllerTest.groovy

                    asWorker {
                        controller.transition(TestState.A, TestState.B) {
                            instant.transitioning
                            thread.block()
                        }
                    }
                }
                start {
                    thread.blockUntil.transitioning
                    asWorker {
                        controller.inState(TestState.A) {
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. src/runtime/mgclimit.go

    	//
    	// gcBlackenEnabled isn't used directly so as to keep this structure
    	// unit-testable.
    	gcEnabled bool
    
    	// transitioning is true when the GC is in a STW and transitioning between
    	// the mark and sweep phases.
    	transitioning bool
    
    	// test indicates whether this instance of the struct was made for testing purposes.
    	test bool
    
    	bucket struct {
    		// Invariants:
    		// - fill >= 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 22:07:41 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  4. src/runtime/cgo/abi_amd64.h

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Macros for transitioning from the host ABI to Go ABI0.
    //
    // These save the frame pointer, so in general, functions that use
    // these should have zero frame size to suppress the automatic frame
    // pointer, though it's harmless to not do this.
    
    #ifdef GOOS_windows
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 15 12:38:13 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  5. src/runtime/tracestatus.go

    	}
    	return w
    }
    
    // writeProcStatusForP emits a ProcStatus event for the provided p based on its status.
    //
    // The caller must fully own pp and it must be prevented from transitioning (e.g. this can be
    // called by a forEachP callback or from a STW).
    func (w traceWriter) writeProcStatusForP(pp *p, inSTW bool) traceWriter {
    	if !pp.trace.acquireStatus(w.gen) {
    		return w
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  6. src/runtime/nonwindows_stub.go

    // precision of timers, this should be enough larger than the relaxed
    // timer precision to keep the timer error acceptable.
    const osRelaxMinNS = 0
    
    var haveHighResSleep = true
    
    // osRelax is called by the scheduler when transitioning to and from
    // all Ps being idle.
    func osRelax(relax bool) {}
    
    // enableWER is called by setTraceback("wer").
    // Windows Error Reporting (WER) is only supported on Windows.
    func enableWER() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 03:12:13 UTC 2024
    - 962 bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/tooling/provider/model/internal/BuildScopeModelBuilder.java

    public interface BuildScopeModelBuilder {
        /**
         * Creates the model for the given target. The target build will not necessarily have been configured.
         * This method is responsible for transitioning the target into the appropriate state required to create the model.
         *
         * No synchronization is applied to the target, so this method may be called for a given target concurrently by multiple threads.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 14 21:39:26 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  8. src/runtime/cgo/abi_arm64.h

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Macros for transitioning from the host ABI to Go ABI0.
    //
    // These macros save and restore the callee-saved registers
    // from the stack, but they don't adjust stack pointer, so
    // the user should prepare stack space in advance.
    // SAVE_R19_TO_R28(offset) saves R19 ~ R28 to the stack space
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  9. src/runtime/cgo/abi_loong64.h

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Macros for transitioning from the host ABI to Go ABI0.
    //
    // These macros save and restore the callee-saved registers
    // from the stack, but they don't adjust stack pointer, so
    // the user should prepare stack space in advance.
    // SAVE_R22_TO_R31(offset) saves R22 ~ R31 to the stack space
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 02:34:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. docs/bucket/lifecycle/README.md

    ```
    
    ## 4. Enable ILM transition feature
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Aug 26 07:33:25 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top