Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 791 for immediatetly (0.16 sec)

  1. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/SnapshotVisitResult.java

        /**
         * Continue visiting. When returned after visiting a directory,
         * the entries in the directory will be visited next.
         */
        CONTINUE,
    
        /**
         * Terminate visiting immediately.
         */
        TERMINATE,
    
        /**
         * If returned from visiting a directory, the directories entries will not be visited;
         * otherwise works as {@link #CONTINUE}.
         */
        SKIP_SUBTREE
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. android/guava/src/com/google/common/util/concurrent/SmoothRateLimiter.java

       * it only remembers the last request. What if the RateLimiter was unused for a long period of
       * time, then a request arrived and was immediately granted? This RateLimiter would immediately
       * forget about that past underutilization. This may result in either underutilization or
       * overflow, depending on the real world consequences of not using the expected rate.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top