Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 269 for own (0.01 sec)

  1. docs/en/docs/tutorial/response-model.md

    ## See it in the docs { #see-it-in-the-docs }
    
    When you see the automatic docs, you can check that the input model and output model will both have their own JSON Schema:
    
    <img src="/img/tutorial/response-model/image01.png">
    
    And both models will be used for the interactive API documentation:
    
    <img src="/img/tutorial/response-model/image02.png">
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 16K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/annotation/SecuredTest.java

            Method childMethod = ChildClass.class.getMethod("parentMethod");
            Secured childSecured = childMethod.getAnnotation(Secured.class);
            assertNull(childSecured);
        }
    
        // Test child's own method annotation
        public void test_childMethodAnnotation() throws NoSuchMethodException {
            Method method = ChildClass.class.getMethod("childMethod");
            Secured secured = method.getAnnotation(Secured.class);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 15.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/util/MD4.java

                    result[i * 4 + j] = (byte) (context[i] >>> 8 * j);
                }
            }
    
            // reset the engine
            engineReset();
            return result;
        }
    
        // own methods
        //...........................................................................
    
        /**
         *    MD4 basic transformation.
         *    <p>
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 9.6K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/CycleDetectingLockFactoryTest.java

        lock02 = factory3.newReentrantLock(OtherOrder.SECOND);
        lock03 = factory3.newReentrantLock(OtherOrder.THIRD);
      }
    
      // In the unittest, create each ordered factory with its own set of lock
      // graph nodes (as opposed to using the static per-Enum map) to avoid
      // conflicts across different test runs.
      private <E extends Enum<E>>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/util/concurrent/CycleDetectingLockFactoryTest.java

        lock02 = factory3.newReentrantLock(OtherOrder.SECOND);
        lock03 = factory3.newReentrantLock(OtherOrder.THIRD);
      }
    
      // In the unittest, create each ordered factory with its own set of lock
      // graph nodes (as opposed to using the static per-Enum map) to avoid
      // conflicts across different test runs.
      private <E extends Enum<E>>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. docs/en/docs/virtual-environments.md

    A virtual environment is a **directory**, very similar to the global one, where you can install the packages for a project.
    
    This way, each project will have its own virtual environment (`.venv` directory) with its own packages.
    
    ```mermaid
    flowchart TB
        subgraph stone-project[philosophers-stone project]
            stone(philosophers-stone) --->|requires| harry-1
            subgraph venv1[.venv]
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 22.4K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java

                response1.decode(buffer1, 0, buffer1.length);
                response2.decode(buffer2, 0, buffer2.length);
    
                // Each instance should maintain its own state
                assertEquals(10, response1.getChunksWritten());
                assertEquals(4096, response1.getChunkBytesWritten());
                assertEquals(40960, response1.getTotalBytesWritten());
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 19.8K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/NotifyResponseTest.java

            // Verify chaining
            assertEquals(response2, response1.getNextResponse());
            assertNull(response2.getNextResponse());
    
            // Verify each response maintains its own notifications
            assertEquals(1, response1.getNotifyInformation().size());
            assertEquals(mockNotifyInfo1, response1.getNotifyInformation().get(0));
    
            assertEquals(1, response2.getNotifyInformation().size());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 21.2K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.2.md

      * Deployment was Alpha in 1.1 (though it had apiVersion extensions/v1beta1) and
    was disabled by default. Due to some non-backward-compatible API changes, any
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/escape/UnicodeEscaper.java

     * by multiple threads.
     *
     * <p>Popular escapers are defined as constants in classes like {@link
     * com.google.common.html.HtmlEscapers} and {@link com.google.common.xml.XmlEscapers}. To create
     * your own escapers extend this class and implement the {@link #escape(int)} method.
     *
     * @author David Beaumont
     * @since 15.0
     */
    @GwtCompatible
    @SuppressWarnings("EscapedEntity") // We do mean for the user to see "&lt;" etc.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Feb 13 15:45:16 UTC 2025
    - 13.2K bytes
    - Viewed (0)
Back to top