Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 68 for avoiding (0.13 sec)

  1. okhttp/src/test/java/okhttp3/CallHandshakeTest.kt

        defaultSupportedCipherSuites =
          handshakeCertificates.sslSocketFactory().supportedCipherSuites.toList()
      }
    
      @Test
      fun testDefaultHandshakeCipherSuiteOrderingTls12Restricted() {
        // We are avoiding making guarantees on ordering of secondary Platforms.
        platform.assumeNotConscrypt()
        platform.assumeNotBouncyCastle()
    
        val client = makeClient(ConnectionSpec.RESTRICTED_TLS, TlsVersion.TLS_1_2)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. src/runtime/map_benchmark_test.go

    					m[0] = size // Add one element so len(m) != 0 avoiding fast paths.
    					clear(m)
    				}
    			})
    		}
    	})
    	b.Run("NonReflexive", func(b *testing.B) {
    		for size := 1; size < 100000; size *= 10 {
    			b.Run(strconv.Itoa(size), func(b *testing.B) {
    				m := make(map[float64]int, size)
    				for i := 0; i < b.N; i++ {
    					m[1.0] = size // Add one element so len(m) != 0 avoiding fast paths.
    					clear(m)
    				}
    			})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 16:41:16 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  3. src/log/slog/doc.go

    or gather a struct's fields in a Group. See the examples under [LogValuer] for
    details.
    
    A LogValue method may return a Value that itself implements [LogValuer]. The [Value.Resolve]
    method handles these cases carefully, avoiding infinite loops and unbounded recursion.
    Handler authors and others may wish to use [Value.Resolve] instead of calling LogValue directly.
    
    # Wrapping output methods
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 15 14:35:48 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  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. 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)
  8. 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)
  9. 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
    - 19.6K bytes
    - Viewed (0)
  10. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/incremental/asm/ClassDependenciesVisitor.java

            moduleName = name;
            dependencyToAllReason = "module-info of '" + name + "' has changed";
            return null;
        }
    
        // performs a fast analysis of classes referenced in bytecode (method bodies)
        // avoiding us to implement a costly visitor and potentially missing edge cases
        private void collectRemainingClassDependencies(ClassReader reader) {
            ClassAnalysisUtils.getClassDependencies(reader, classDescriptor -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 27 13:49:15 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top