Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 128 for avoiding (0.15 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. releasenotes/notes/cni-pprof.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
      - 49053
    
    releaseNotes:
      - |
        **Added** `pprof` endpoints to profile the CNI pod (on port 9867).
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 21:42:29 UTC 2024
    - 260 bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/mod_verify.txt

    env GO111MODULE=on
    [short] skip
    
    # With good go.sum, verify succeeds by avoiding download.
    cp go.sum.good go.sum
    go mod verify
    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.1.0.zip
    
    # With bad go.sum, verify succeeds by avoiding download.
    cp go.sum.bad go.sum
    go mod verify
    ! exists $GOPATH/pkg/mod/cache/download/rsc.io/quote/@v/v1.1.0.zip
    
    # With bad go.sum, sync (which must download) fails.
    rm go.sum
    cp go.sum.bad go.sum
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  4. platforms/jvm/platform-jvm/src/main/java/org/gradle/jvm/internal/services/PlatformJvmServices.java

                public void configure(ServiceRegistration serviceRegistration, JvmMetadataDetector globalJvmMetadataDetector) {
                    if (globalJvmMetadataDetector instanceof ConditionalInvalidation) {
                        // Avoiding generic-unchecked cast with this intermediate implementation that checks the types of the items:
                        ConditionalInvalidation<JvmInstallationMetadata> checkedInvalidationFromDetector =
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/potential_traps.adoc

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[potential_traps]]
    = Avoiding traps
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 706 bytes
    - Viewed (0)
  6. util/gradle_integration_tests.sh

    # Gradle Wrapper overwrites some files when it runs.
    # To avoid modifying the Git client, we copy everything we need to another directory.
    # That provides general hygiene, including avoiding release errors:
    #
    # Preparing to update Javadoc and JDiff for the release...
    # error: Your local changes to the following files would be overwritten by checkout:
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 16 20:48:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/constants.h

    #include "llvm/ADT/StringRef.h"
    #include "mlir/Support/LLVM.h"  // from @llvm-project
    
    namespace mlir {
    namespace quant {
    
    // Name of the save function. The "tf_quant__" prefix is for avoiding conflict
    // with existing function's name.
    inline constexpr StringRef kTfQuantSaveFuncName = "tf_quant__save";
    
    // Name of the TensorFlow Operation to be fetched to save the variables to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 13 02:55:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/DefaultMutationGuard.java

         * So if you are running builds in quick succession, e.g. for profiling, there can be a quick slowdown after some time.
         *
         * This methods removes the elements from the ThreadLocalMap when possible, thus avoiding the problem.
         *
         * See https://github.com/gradle/gradle/issues/13835.
         */
        private void removeThreadLocalStateIfMutationAllowed(boolean mutationAllowed) {
            if (mutationAllowed) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 22 19:47:53 UTC 2022
    - 3K bytes
    - Viewed (0)
  9. src/internal/godebugs/table.go

    	{Name: "x509usepolicies", Package: "crypto/x509"},
    	{Name: "zipinsecurepath", Package: "archive/zip"},
    }
    
    // Lookup returns the Info with the given name.
    func Lookup(name string) *Info {
    	// binary search, avoiding import of sort.
    	lo := 0
    	hi := len(All)
    	for lo < hi {
    		m := int(uint(lo+hi) >> 1)
    		mid := All[m].Name
    		if name == mid {
    			return &All[m]
    		}
    		if name < mid {
    			hi = m
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  10. maven-core/src/site/apt/getting-to-container-configured-mojos.apt

      ---
      Getting to Plexus-configured Mojos
      ---
      John Casey
      ---
      2005-04-29
    
    Abstract
    
      We're moving toward integrating mojos as first-class plexus components, while
      at the same time avoiding introducing required plexus dependencies into the
      mojo development model.
    
      In order to really achieve this, we need mojo configurations (which are
      provided both in terms of static expressions that are just looked up, and
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 30 15:20:35 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top