Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for overkill (0.1 sec)

  1. src/cmd/go/testdata/script/mod_tidy_compat_ambiguous.txt

    # root of the module graph contains the package), whereas it is ambiguous in
    # Go 1.16 (because two different modules contain plausible packages and Go 1.16
    # does not privilege roots above other dependencies).
    #
    # However, the overall build list is identical for both versions.
    
    cp go.mod go.mod.orig
    
    ! go mod tidy
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/eventbus/Dispatcher.java

      private static final class LegacyAsyncDispatcher extends Dispatcher {
    
        // This dispatcher matches the original dispatch behavior of AsyncEventBus.
        //
        // We can't really make any guarantees about the overall dispatch order for this dispatcher in
        // a multithreaded environment for a couple of reasons:
        //
        // 1. Subscribers to events posted on different threads can be interleaved with each other
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  3. guava/src/com/google/common/eventbus/Dispatcher.java

      private static final class LegacyAsyncDispatcher extends Dispatcher {
    
        // This dispatcher matches the original dispatch behavior of AsyncEventBus.
        //
        // We can't really make any guarantees about the overall dispatch order for this dispatcher in
        // a multithreaded environment for a couple of reasons:
        //
        // 1. Subscribers to events posted on different threads can be interleaved with each other
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-profile/src/main/java/org/gradle/profile/BuildProfile.java

    import java.util.ArrayList;
    import java.util.LinkedHashMap;
    import java.util.List;
    import java.util.Map;
    
    /**
     * Root container for profile information about a build.  This includes summary
     * information about the overall build timing and collection of project specific
     * information.  All timing information is stored as milliseconds since epoch times.
     * <p>
     * Setters are expected to be called in the following order:
     * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:39 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependenciesExtensions.kt

            }
        }
    }
    
    
    // The #module and #constraint methods here allow the usage of named arguments in Kotlin, even though the signature is overall the same as the Java method.
    
    
    /**
     * Creates a dependency based on the group, name and version (GAV) coordinates.
     *
     * @since 8.0
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 18:51:29 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  6. src/cmd/go/scriptconds_test.go

    	}
    
    	if netTestSem != nil {
    		// When the number of external network connections is limited, we limit the
    		// number of net tests that can run concurrently so that the overall number
    		// of network connections won't exceed the limit.
    		_, dup := scriptNetEnabled.LoadOrStore(t, true)
    		if !dup {
    			// Acquire a net token for this test until the test completes.
    			netTestSem <- struct{}{}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. src/context/example_test.go

    			// which will wake them all up.
    			//
    			// If there are N concurrent calls to waitOnCond, each of the goroutines
    			// will spuriously wake up O(N) other goroutines that aren't ready yet,
    			// so this will cause the overall CPU cost to be O(N²).
    			cond.Broadcast()
    		})
    		defer stopf()
    
    		// Since the wakeups are using Broadcast instead of Signal, this call to
    		// Wait may unblock due to some other goroutine's context becoming done,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 21 20:24:28 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  8. src/crypto/internal/edwards25519/field/fe_generic.go

    	// After the multiplication, we need to reduce (carry) the five coefficients
    	// to obtain a result with limbs that are at most slightly larger than 2⁵¹,
    	// to respect the Element invariant.
    	//
    	// Overall, the reduction works the same as carryPropagate, except with
    	// wider inputs: we take the carry for each coefficient by shifting it right
    	// by 51, and add it to the limb above it. The top carry is multiplied by 19
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 01:16:19 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top