Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 19 of 19 for redirection (0.34 sec)

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

        for (i in 0..19) {
          server.enqueue(
            MockResponse(
              code = HttpURLConnection.HTTP_MOVED_TEMP,
              headers = headersOf("Location", "/" + (i + 1)),
              body = "Redirecting to /" + (i + 1),
            ),
          )
        }
        server.enqueue(
          MockResponse(body = "Success!"),
        )
        val response = getResponse(newRequest("/0"))
        assertContent("Success!", response)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

            // This set is unlikely to change often, so instead of introducing an additional level of indirection,
            // we are storing it here despite its relationship to Configuration Cache logic.
            // The full prohibited hierarchy is stored because there is no efficient way to check the class hierarchy via `org.objectweb.asm.Type`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

      let options = [
        Option<"fold_transpose_in_ops_", "fold-transpose-in-ops", "bool", /*default=*/"true",
               "Whether to fold transposes in ops which can support folding.">,
        Option<"direction_", "direction", "enum MoveTransposeDirection",
               /*default=*/"MoveTransposeDirection::kBegin", "Move transposes to the beginning or"
               " the end of the block where they are defined.",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/AMD64Ops.go

    		// Rewrites will convert this to (SETG (CMPQ b a)).
    		// InvertFlags is a pseudo-op which can't appear in assembly output.
    		{name: "InvertFlags", argLength: 1}, // reverse direction of arg0
    
    		// Pseudo-ops
    		{name: "LoweredGetG", argLength: 1, reg: gp01}, // arg0=mem
    		// Scheduler ensures LoweredGetClosurePtr occurs only in entry block,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 16:40:24 UTC 2023
    - 98K bytes
    - Viewed (1)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

      auto return_op = dyn_cast_or_null<ReturnOpType>(&operations.back());
      if (!compare_op || !return_op) return false;
      // TODO(xuanyuanluo): Support mhlo::ComparisonDirection::LT direction.
      if (compare_op.getComparisonDirection() != mhlo::ComparisonDirection::GT) {
        return false;
      }
      if (compare_op.getOperands()[0] != comparator_blk.getArgument(0) ||
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/cache/LocalCache.java

      static class Segment<K, V> extends ReentrantLock {
    
        /*
         * TODO(fry): Consider copying variables (like evictsBySize) from outer class into this class.
         * It will require more memory but will reduce indirection.
         */
    
        /*
         * Segments maintain a table of entry lists that are ALWAYS kept in a consistent state, so can
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  7. guava/src/com/google/common/cache/LocalCache.java

      static class Segment<K, V> extends ReentrantLock {
    
        /*
         * TODO(fry): Consider copying variables (like evictsBySize) from outer class into this class.
         * It will require more memory but will reduce indirection.
         */
    
        /*
         * Segments maintain a table of entry lists that are ALWAYS kept in a consistent state, so can
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/data.go

    //			000000000000013d:  IMAGE_REL_AMD64_REL32	_errno
    //
    // The assembly below dispenses with the import symbol and just makes
    // a direct call to _errno.
    //
    // The code below handles indirect refs by redirecting the target of
    // the relocation from "__imp_XYZ" to "XYZ" (since the latter symbol
    // is what the Windows loader is expected to resolve). For direct refs
    // the call is redirected to a stub, where the stub first loads the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

              "periodSeconds"
            ],
            "type": "object"
          },
          "io.k8s.api.autoscaling.v2.HPAScalingRules": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
Back to top