Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 128 for avoiding (0.28 sec)

  1. src/runtime/trace/annotation.go

    //
    // The regionType is used to classify regions, so there should be only a
    // handful of unique region types.
    func WithRegion(ctx context.Context, regionType string, fn func()) {
    	// NOTE:
    	// WithRegion helps avoiding misuse of the API but in practice,
    	// this is very restrictive:
    	// - Use of WithRegion makes the stack traces captured from
    	//   region start and end are identical.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. src/internal/profile/graph.go

    				if n == nil {
    					residual = true
    					continue
    				}
    				// Add cum weight to all nodes in stack, avoiding double counting.
    				_, sawNode := seenNode[n]
    				if !sawNode {
    					seenNode[n] = true
    					n.addSample(dw, w, false)
    				}
    				// Update edge weights for all edges in stack, avoiding double counting.
    				if (!sawNode || !seenEdge[nodePair{n, parent}]) && parent != nil && n != parent {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  3. manifests/charts/gateway/README.md

    * Utilizes Gateway injection, simplifying upgrades, allowing gateways to run in any namespace, and avoiding repeating config for sidecars and gateways.
    * Published to official Istio Helm repository.
    * Single chart for all gateways (Ingress, Egress, East West).
    
    #### General concerns
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 19:38:07 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/internal/initialization/loadercache/ClassLoadersCachingIntegrationTest.groovy

            createJarWithProperties("a/a/thing.jar")
            addIsCachedCheck()
            addIsCachedCheck("a")
            addIsCachedCheck("a/a")
    
            // Add this to make the hierarchy unique, avoiding interference with the numbers from previous builds
            file("build.gradle") << """
                buildscript {
                    dependencies { classpath files("thing.jar") }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 19 20:09:56 UTC 2022
    - 10.6K bytes
    - Viewed (0)
  5. src/image/jpeg/huffman.go

    // Huffman data.
    var errShortHuffmanData = FormatError("short Huffman data")
    
    // ensureNBits reads bytes from the byte buffer to ensure that d.bits.n is at
    // least n. For best performance (avoiding function calls inside hot loops),
    // the caller is the one responsible for first checking that d.bits.n < n.
    func (d *decoder) ensureNBits(n int32) error {
    	for {
    		c, err := d.readByteStuffedByte()
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  6. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/VfsRelativePath.java

    import static org.gradle.internal.snapshot.PathUtil.isFileSeparator;
    
    /**
     * A relative path represented by a path suffix of an absolute path.
     *
     * The use of this class is to improve performance by avoiding to call {@link String#substring(int)}.
     * The class represents the relative path of absolutePath.substring(offset).
     *
     * A relative path does not start or end with a slash.
     */
    public class VfsRelativePath {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/feature_lifecycle.adoc

    [[sec:internal]]
    == 1. Internal
    
    _Internal_ features are not designed for public use and are only intended to be used by Gradle itself. They can change in any way at any point in time without any notice.
    Therefore, we recommend avoiding the use of such features.
    _Internal_ features are not documented.
    If it appears in this User Manual, the DSL Reference, or the API Reference, then the feature is not _internal_.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/FluentFuture.java

       *     different kind of exception, that exception itself. To avoid hiding bugs and other
       *     unrecoverable errors, callers should prefer more specific types, avoiding {@code
       *     Throwable.class} in particular.
       * @param fallback the {@link Function} to be called if the input fails with the expected
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 11 19:08:44 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  9. src/strconv/atof.go

    }
    var float32pow10 = []float32{1e0, 1e1, 1e2, 1e3, 1e4, 1e5, 1e6, 1e7, 1e8, 1e9, 1e10}
    
    // If possible to convert decimal representation to 64-bit float f exactly,
    // entirely in floating-point math, do so, avoiding the expense of decimalToFloatBits.
    // Three common cases:
    //
    //	value is exact integer
    //	value is exact integer * exact power of ten
    //	value is exact integer / exact power of ten
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 18:50:50 UTC 2022
    - 15.9K bytes
    - Viewed (0)
  10. src/runtime/coro.go

    		// a wasted loop iteration.
    		// The cas will also sync c.gp's
    		// memory enough that the next iteration of the racy load
    		// should see the correct value.
    		// We are avoiding the atomic load to keep this path
    		// as lightweight as absolutely possible.
    		// (The atomic load is free on x86 but not free elsewhere.)
    		next := c.gp
    		if next.ptr() == nil {
    			throw("coroswitch on exited coro")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top