Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 25 for redirection (0.26 sec)

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

      @Test
      fun follow20Redirects() {
        for (i in 0..19) {
          server.enqueue(
            MockResponse(
              code = 301,
              headers = headersOf("Location", "/${i + 1}"),
              body = "Redirecting to /" + (i + 1),
            ),
          )
        }
        server.enqueue(MockResponse(body = "Success!"))
        executeSynchronously("/0")
          .assertCode(200)
          .assertBody("Success!")
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  2. doc/go1.17_spec.html

    </p>
    
    <pre class="ebnf">
    ChannelType = ( "chan" | "chan" "&lt;-" | "&lt;-" "chan" ) ElementType .
    </pre>
    
    <p>
    The optional <code>&lt;-</code> operator specifies the channel <i>direction</i>,
    <i>send</i> or <i>receive</i>. If no direction is given, the channel is
    <i>bidirectional</i>.
    A channel may be constrained only to send or only to receive by
    <a href="#Assignments">assignment</a> or
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    long enough.'
    
      Alice felt that this could not be denied, so she tried another
    question.  `What sort of people live about here?'
    
      `In THAT direction,' the Cat said, waving its right paw round,
    `lives a Hatter:  and in THAT direction,' waving the other paw,
    `lives a March Hare.  Visit either you like:  they're both mad.'
    
      `But I don't want to go among mad people,' Alice remarked.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    long enough.'
    
      Alice felt that this could not be denied, so she tried another
    question.  `What sort of people live about here?'
    
      `In THAT direction,' the Cat said, waving its right paw round,
    `lives a Hatter:  and in THAT direction,' waving the other paw,
    `lives a March Hare.  Visit either you like:  they're both mad.'
    
      `But I don't want to go among mad people,' Alice remarked.
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/main/webapp/js/admin/popper.min.js.map

    [x='bottom']\n     * Where to anchor the X axis (`bottom` or `top`). AKA X offset origin.\n     * Change this if your popper should grow in a direction different from `bottom`\n     */\n    x: 'bottom',\n    /**\n     * @prop {string} [x='left']\n     * Where to anchor the Y axis (`left` or `right`). AKA Y offset origin.\n     * Change this if your popper should grow in a direction different from `right`\n     */\n    y: 'right',\n  },\n\n  /**\n   * Applies the computed styles to the popper element.\n   *\n...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 07 10:28:50 UTC 2020
    - 121K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top