Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 201 - 210 of 463 for verb (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. android/guava/src/com/google/common/escape/CharEscaperBuilder.java

     *
     * @author Sven Mawson
     * @since 15.0
     */
    @GwtCompatible
    public final class CharEscaperBuilder {
      /**
       * Simple decorator that turns an array of replacement char[]s into a CharEscaper, this results in
       * a very fast escape method.
       */
      private static final class CharArrayDecorator extends CharEscaper {
        private final char[] @Nullable [] replacements;
        private final int replaceLength;
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Jul 17 15:26:41 GMT 2025
    - 3.9K bytes
    - Click Count (0)
  2. docs/en/docs/advanced/strict-content-type.md

    ## CSRF Risk { #csrf-risk }
    
    This default behavior provides protection against a class of **Cross-Site Request Forgery (CSRF)** attacks in a very specific scenario.
    
    These attacks exploit the fact that browsers allow scripts to send requests without doing any CORS preflight check when they:
    
    * don't have a `Content-Type` header (e.g. using `fetch()` with a `Blob` body)
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Feb 23 17:45:20 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/crawler/interval/FessIntervalControllerTest.java

         * Test boundary values for delay settings
         */
        @Test
        public void test_delayBoundaryValues() {
            FessIntervalController controller = new FessIntervalController();
    
            // Test with very large values
            controller.setDelayMillisAfterProcessing(Long.MAX_VALUE);
            assertEquals(Long.MAX_VALUE, controller.getDelayMillisAfterProcessing());
    
            // Test with minimum value (0)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 6.2K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java

            assertProvideThrowsException("123Test");
            assertProvideThrowsException("Test123Classification");
        }
    
        @Test
        public void test_provide_withLongClassificationName() {
            // Test with very long classification name
            StringBuilder longName = new StringBuilder();
            for (int i = 0; i < 1000; i++) {
                longName.append("VeryLongClassificationName");
            }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 7.7K bytes
    - Click Count (0)
  5. okhttp/src/jvmTest/kotlin/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt

          fileSystem.write(outputFile) {
            importResults.writeOut(this)
          }
        }
    
      /**
       * These assertions ensure the [PublicSuffixDatabase] remains correct. The specification is
       * very flexible regarding wildcard rules, but this flexibility is not something currently used
       * in practice. To simplify the implementation, we've avoided implementing the flexible rules in
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Aug 06 05:33:11 GMT 2025
    - 6.1K bytes
    - Click Count (0)
  6. docs/es/docs/how-to/custom-docs-ui-assets.md

    ### Prueba los archivos estáticos { #test-the-static-files }
    
    Inicia tu aplicación y ve a [http://127.0.0.1:8000/static/redoc.standalone.js](http://127.0.0.1:8000/static/redoc.standalone.js).
    
    Deberías ver un archivo JavaScript muy largo de **ReDoc**.
    
    Podría comenzar con algo como:
    
    ```JavaScript
    /*! For license information please see redoc.standalone.js.LICENSE.txt */
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 8.4K bytes
    - Click Count (0)
  7. docs/fr/docs/advanced/strict-content-type.md

    Il pourrait ensuite ouvrir un site malveillant, par exemple quelque chose comme
    
    ```
    https://evilhackers.example.com
    ```
    
    Et ce site malveillant enverrait des requêtes en utilisant `fetch()` avec un corps `Blob` vers l’API locale à l’adresse
    
    ```
    http://localhost:8000/v1/agents/multivac
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:33:45 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  8. docs/pt/llm-prompt.md

    **Example:**
    
    Source:
    Let's see how that works and how to change it if you need to do that.
    
    Avoid translating literally as:
    Vamos ver como isso funciona e como alterar isso se você precisar fazer isso.
    
    Better translation:
    Vamos ver como isso funciona e como alterar se você precisar.
    
    ---
    
    For the next terms, use the following translations:
    
    * /// check: /// check | Verifique
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Jan 16 12:27:02 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  9. docs/en/docs/tutorial/stream-json-lines.md

    ```json
    {"name": "Plumbus", "description": "A multi-purpose household device."}
    {"name": "Portal Gun", "description": "A portal opening device."}
    {"name": "Meeseeks Box", "description": "A box that summons a Meeseeks."}
    ```
    
    It's very similar to a JSON array (equivalent of a Python list), but instead of being wrapped in `[]` and having `,` between the items, it has **one JSON object per line**, they are separated by a new line character.
    
    /// info
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  10. guava-tests/test/com/google/common/io/LineBufferTest.java

    import java.util.List;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Unit tests for {@link LineBuffer} and {@link LineReader}.
     *
     * @author Chris Nokleberg
     */
    @AndroidIncompatible // occasionally very slow
    @NullUnmarked
    public class LineBufferTest extends IoTestCase {
    
      public void testProcess() throws IOException {
        bufferHelper("");
        bufferHelper("\n", "\n");
        bufferHelper("\r\n", "\r\n");
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 17 19:26:39 GMT 2026
    - 4.7K bytes
    - Click Count (0)
Back to Top