Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 188 for instantly (0.14 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/resolve/extensions/KtResolveExtensionProvider.kt

         *
         * Implementations should consider caching the results, so the subsequent invocations should be performed instantly.
         *
         * Implementation cannot use the Kotlin resolve inside, as this function is called during session initialization, so Analysis API access is forbidden.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. ci/official/utilities/setup_docker.sh

    if [[ "$TFCI_DOCKER_PULL_ENABLE" == 1 ]]; then
      # Simple retry logic for docker-pull errors. Sleeps if a pull fails.
      # Pulling an already-pulled container image will finish instantly, so
      # repeating the command costs nothing.
      docker pull "$TFCI_DOCKER_IMAGE" || sleep 15
      docker pull "$TFCI_DOCKER_IMAGE" || sleep 30
      docker pull "$TFCI_DOCKER_IMAGE" || sleep 60
      docker pull "$TFCI_DOCKER_IMAGE"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 18:22:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/BuildOperationQueue.java

     *
     * @param <T> type of build operations to hold
     */
    public interface BuildOperationQueue<T extends BuildOperation> {
    
        /**
         * Adds an operation to be executed, potentially executing it instantly.
         *
         * @param operation operation to execute
         */
        void add(T operation);
    
        /**
         * Cancels all queued operations in this queue.  Any operations that have started will be allowed to complete.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/projectresult/ResolvedLocalComponentsResultGraphVisitor.java

     *
     * TODO: The logic in this visitor should be integrated directly into the DefaultLocalConfigurationMetadataBuilder
     * so that we instantly mark configurations as observed as their metadata is constructed. That would be an improvement
     * over this visitor, since here we only mark a configuration observed if its metadata is present in the final graph.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. src/net/fd_windows.go

    		}
    		if windows.SupportTCPInitialRTONoSYNRetransmissions() {
    			// In Windows 10.0.16299 TCP_INITIAL_RTO_NO_SYN_RETRANSMISSIONS makes ConnectEx() fails instantly.
    			params.MaxSynRetransmissions = windows.TCP_INITIAL_RTO_NO_SYN_RETRANSMISSIONS
    		}
    		var out uint32
    		// Don't abort the connection if WSAIoctl fails, as it is only an optimization.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 16:46:10 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtTypeProvider.kt

        /**
         * This function is provided for a few use-cases where it's hard to go without it.
         *
         * **Please avoid using it**; it will probably be removed in the future.
         *
         * The function is instantly deprecated, so it's not shown in the completion.
         *
         * @receiver A target callable symbol.
         * @return A dispatch receiver type for this symbol if it has any.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. src/syscall/exec_unix.go

    // in threaded C programs that use popen.
    //
    // Luckily, the file descriptors that are most important not to
    // inherit are not the ones that can take an arbitrarily long time
    // to create: pipe returns instantly, and the net package uses
    // non-blocking I/O to accept on a listening socket.
    // The rules for which file descriptor-creating operations use the
    // ForkLock are as follows:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/filters/maxinflight_test.go

    //     hanging for the long time,
    //   - "short" requests are correctly accounted, i.e. there can be only size of channel passed to the
    //     constructor in flight at any given moment,
    //   - subsequent "short" requests are rejected instantly with appropriate error,
    //   - subsequent "long" requests are handled normally,
    //   - we correctly recover after some "short" requests finish, i.e. we can process new ones.
    func TestMaxInFlightNonMutating(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 10.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/delete.go

    		// Note: We want to do this always if resource was not deleted immediately, but
    		// that will break existing clients.
    		// Other cases where resource is not instantly deleted are: namespace deletion
    		// and pod graceful deletion.
    		//nolint:staticcheck // SA1019 backwards compatibility
    		//nolint: staticcheck
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 10:00:32 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/device_compiler.h

                                                 options, args, function, scope,
                                                 ctx, profiler));
          return absl::OkStatus();
        } else {
          VLOG(2) << "Instantly compiling for signature: " << human_signature;
          TF_ASSIGN_OR_RETURN(
              cache_value,
              CompileStrict(signature, compile_options, options, args, function,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
Back to top