Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 234 for immediatetly (0.22 sec)

  1. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/ConnectorServicesTest.groovy

            then:
            connectorOne != connectorTwo
    
            //below is necessary for some of the thread safety measures we took in the internal implementation
            //it is covered in integrations tests as well, but is not immediately obvious why the concurrent integ test fails hence below assertions
    
            //tooling impl loader must be shared across connectors, so that we have single DefaultConnection per distro/classpath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/repositories/resolver/MetadataFetchingCost.java

     * limitations under the License.
     */
    package org.gradle.api.internal.artifacts.repositories.resolver;
    
    public enum MetadataFetchingCost {
        /**
         * Can return metadata immediately. It must <b>not</b> be used in case the metadata is missing,
         * even if it's cheap to tell it's missing. Use {@link #CHEAP} in that case.
         */
        FAST,
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  3. src/crypto/rand/rand_getrandom.go

    	default:
    		panic("no maximum specified for GetRandom")
    	}
    	altGetRandom = batched(getRandom, maxGetRandomRead)
    }
    
    // If the kernel is too old to support the getrandom syscall(),
    // unix.GetRandom will immediately return ENOSYS and we will then fall back to
    // reading from /dev/urandom in rand_unix.go. unix.GetRandom caches the ENOSYS
    // result so we only suffer the syscall overhead once in this case.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:26:43 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. platforms/ide/problems-api/src/main/java/org/gradle/api/problems/internal/InternalProblemReporter.java

    import org.gradle.internal.operations.OperationIdentifier;
    
    public interface InternalProblemReporter extends ProblemReporter {
    
        /**
         * Creates a new problem without reporting it immediately.
         * The created problem can be later reported with {@link #report(Problem)}.
         *
         * @param action The problem configuration.
         * @return The new problem.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. src/os/wait_waitid.go

    //go:build linux
    
    package os
    
    import (
    	"runtime"
    	"syscall"
    	"unsafe"
    )
    
    const _P_PID = 1
    
    // blockUntilWaitable attempts to block until a call to p.Wait will
    // succeed immediately, and reports whether it has done so.
    // It does not actually call p.Wait.
    func (p *Process) blockUntilWaitable() (bool, error) {
    	// The waitid system call expects a pointer to a siginfo_t,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:27:57 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/DevelocityBuildLifecycleService.java

     * to not break the Develocity plugin going forward.
     *
     * @since 8.8
     */
    @ServiceScope(Scope.Build.class)
    public interface DevelocityBuildLifecycleService {
    
        /**
         * Adds an action to be called immediately before a project is evaluated.
         * <p>
         * The action will be applied to all projects configured in the current build. Due to `Isolated Projects`, a particular build might only configure a subset of all projects.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 20:25:05 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/AsyncCacheAccess.java

    import java.util.function.Supplier;
    
    public interface AsyncCacheAccess {
        /**
         * Submits the given action for execution without waiting for the result.
         *
         * An implementation may execute the action immediately or later. All actions submitted by this method must complete before any action submitted to {@link #read(Supplier)} is executed. Actions submitted using this method must run in the order that they are submitted.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/layout.go

    		//           b1
    		//         0/ \1
    		//        b2   b3
    		// Traverse b.Succs in order, the right child node b3 will be scheduled immediately after
    		// b1, traverse b.Succs in reverse order, the left child node b2 will be scheduled
    		// immediately after b1. The test results show that reverse traversal performs a little
    		// better.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 31 21:41:20 UTC 2022
    - 5K bytes
    - Viewed (0)
  9. src/internal/chacha8rand/chacha8.go

    func (s *State) Refill() {
    	s.c += ctrInc
    	if s.c == ctrMax {
    		// Reseed with generated uint64s for forward secrecy.
    		// Normally this is done immediately after computing a block,
    		// but we do it immediately before computing the next block,
    		// to allow a much smaller serialized state (just the seed plus offset).
    		// This gives a delayed benefit for the forward secrecy
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:47:29 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/ExecHandle.java

        /**
         * Aborts the process, blocking until the process has exited. Does nothing if the process has already completed.
         */
        void abort();
    
        /**
         * Waits for the process to finish. Returns immediately if the process has already completed.
         *
         * @return result
         */
        ExecResult waitForFinish();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 19 21:45:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
Back to top