Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 32 for Hashing (0.16 sec)

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

            .build()
      }
    
      @AfterEach
      fun tearDown() {
        ResponseCache.setDefault(null)
        cache.delete()
      }
    
      /**
       * Test that response caching is consistent with the RI and the spec.
       * http://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html#sec13.4
       */
      @Test
      fun responseCachingByResponseCode() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/CallTest.kt

        }.also { expected ->
          assertThat(expected.message).isEqualTo("Too many follow-up requests: 21")
        }
      }
    
      /**
       * We had a bug where we were passing a null route to the authenticator.
       * https://github.com/square/okhttp/issues/3809
       */
      @Test
      fun authenticateWithNoConnection() {
        server.enqueue(
          MockResponse(
            code = 401,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "properties": {
            "minReadySeconds": {
              "description": "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)",
              "format": "int32",
              "type": "integer"
            },
            "paused": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `Yes,' said Alice, `we learned French and music.'
    
      `And washing?' said the Mock Turtle.
    
      `Certainly not!' said Alice indignantly.
    
      `Ah! then yours wasn't a really good school,' said the Mock
    Turtle in a tone of great relief.  `Now at OURS they had at the
    end of the bill, "French, music, AND WASHING--extra."'
    
      `You couldn't have wanted it much,' said Alice; `living at the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `Yes,' said Alice, `we learned French and music.'
    
      `And washing?' said the Mock Turtle.
    
      `Certainly not!' said Alice indignantly.
    
      `Ah! then yours wasn't a really good school,' said the Mock
    Turtle in a tone of great relief.  `Now at OURS they had at the
    end of the bill, "French, music, AND WASHING--extra."'
    
      `You couldn't have wanted it much,' said Alice; `living at the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  6. src/runtime/proc.go

    	if crashingG.CompareAndSwapNoWB(nil, me) {
    		switchToCrashStack0(fn) // should never return
    		abort()
    	}
    	if crashingG.Load() == me {
    		// recursive crashing. too bad.
    		writeErrStr("fatal: recursive switchToCrashStack\n")
    		abort()
    	}
    	// Another g is crashing. Give it some time, hopefully it will finish traceback.
    	usleep_no_g(100)
    	writeErrStr("fatal: concurrent switchToCrashStack\n")
    	abort()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            """
    
            when:
            executer.requireOwnGradleUserHomeDir("Test checks existence of build-cache entries")
            executer.withArguments("--build-cache", "--info", "-Dorg.gradle.internal.transform-caching-disabled=${transformsDisabled}")
            succeeds ":lib:resolve"
    
            then:
            output.contains("Transformed lib1-1.0.jar to green")
            output.contains("Transformed lib1-1.0.jar to blue")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/SmallSet.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/ADT/StringSwitch.h"
    #include "llvm/Support/Casting.h"
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    #include "mlir/IR/Attributes.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    	}
    	v = ValueOf(&p).MethodByName("NoArgs")
    	v.Call(nil)
    
    	// Curried method of interface value.
    	// Have to wrap interface value in a struct to get at it.
    	// Passing it to ValueOf directly would
    	// access the underlying Point, not the interface.
    	var x interface {
    		Dist(int) int
    	} = p
    	pv := ValueOf(&x).Elem()
    	v = pv.Method(0)
    	if tt := v.Type(); tt != tfunc {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_test.go

    	minImgSize int64 = 23 * 1024 * 1024
    	maxImgSize int64 = 1000 * 1024 * 1024
    )
    
    // fakeImageGCManager is a fake image gc manager for testing. It will return image
    // list from fake runtime directly instead of caching it.
    type fakeImageGCManager struct {
    	fakeImageService kubecontainer.ImageService
    	images.ImageGCManager
    }
    
    func (f *fakeImageGCManager) GetImageList() ([]kubecontainer.Image, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top