Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 672 for dana (0.02 sec)

  1. src/main/webapp/WEB-INF/orig/view/header.jsp

    					<c:if test="${eoled}">
    						<li class="nav-item" data-bs-toggle="tooltip" data-placement="left" title="<la:message key="labels.eol_error" />">
    							<a class="nav-link active" href="${eolLink}" target="_olh"><em class="fas fa-times-circle text-danger"></a>
    						</li>
    					</c:if>
    					<c:if test="${developmentMode}">
    						<li class="nav-item" data-bs-toggle="tooltip" data-placement="left"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/header.jsp

    					<c:if test="${eoled}">
    						<li class="nav-item" data-bs-toggle="tooltip" data-placement="left" title="<la:message key="labels.eol_error" />">
    							<a class="nav-link active" href="${eolLink}" target="_olh"><em class="fas fa-times-circle text-danger"></a>
    						</li>
    					</c:if>
    					<c:if test="${developmentMode}">
    						<li class="nav-item" data-bs-toggle="tooltip" data-placement="left"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 11:58:45 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbPipeHandleInternal.java

         * @param off offset in the buffer
         * @param length length of data to send
         * @throws IOException if an I/O error occurs
         */
        void send(byte[] buf, int off, int length) throws IOException;
    
        /**
         * Performs a transaction on the pipe.
         *
         * @param buf the buffer containing the transaction data
         * @param off the offset in the buffer
         * @param length the length of data to send
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3.7K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/AdminAccesstokenAction.java

                searchPaging(data, form);
            });
        }
    
        /**
         * Search with paging.
         * @param data The render data.
         * @param form The search form.
         */
        protected void searchPaging(final RenderData data, final SearchForm form) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 16.9K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb1/util/HexdumpTest.java

            // Create test data and dump from offset
            byte[] data = createTestData(64);
            int offset = 16;
            int length = 32;
    
            Hexdump.hexdump(ps, data, offset, length);
            String output = baos.toString();
    
            assertNotNull(output);
            // Should start at offset 0 in display but show data from offset 16
            assertTrue(output.contains("00000:"));
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/orig/view/index.jsp

    							<c:if test="${eoled}">
    								<li class="nav-item" data-bs-toggle="tooltip" data-placement="left" title="<la:message key="labels.eol_error" />">
    									<a class="nav-link active" href="${eolLink}" target="_olh"><em class="fas fa-times-circle text-danger"></a>
    								</li>
    							</c:if>
    							<c:if test="${developmentMode}">
    								<li class="nav-item" data-bs-toggle="tooltip" data-placement="left"
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 7K bytes
    - Viewed (1)
  7. src/test/java/jcifs/pac/kerberos/KerberosAuthDataTest.java

            byte[] invalidToken = "invalid-relevant-auth-data-token".getBytes();
    
            // WHEN parsing the auth data
            // THEN a PACDecodingException should be thrown
            assertThrows(PACDecodingException.class, () -> {
                KerberosAuthData.parse(KerberosConstants.AUTH_DATA_RELEVANT, invalidToken, mockKeys);
            }, "Parsing invalid relevant auth data should throw a PACDecodingException.");
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  8. docs/fr/docs/tutorial/debugging.md

    # <abbr title="En anglais: Debugging">Débogage</abbr>
    
    Vous pouvez connecter le <abbr title="En anglais: debugger">débogueur</abbr> dans votre éditeur, par exemple avec Visual Studio Code ou PyCharm.
    
    ## Faites appel à `uvicorn`
    
    Dans votre application FastAPI, importez et exécutez directement `uvicorn` :
    
    {* ../../docs_src/debugging/tutorial001.py hl[1,15] *}
    
    ### À propos de `__name__ == "__main__"`
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Oct 27 17:31:14 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    0960..0963    ; valid                                  # 1.1  DEVANAGARI LETTER VOCALIC RR..DEVANAGARI VOWEL SIGN VOCALIC LL
    0964..0965    ; valid                  ;      ; NV8    # 1.1  DEVANAGARI DANDA..DEVANAGARI DOUBLE DANDA
    0966..096F    ; valid                                  # 1.1  DEVANAGARI DIGIT ZERO..DEVANAGARI DIGIT NINE
    0970          ; valid                  ;      ; NV8    # 1.1  DEVANAGARI ABBREVIATION SIGN
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/io/ByteSinkTester.java

        }
        return suite;
      }
    
      private ByteSink sink;
    
      ByteSinkTester(
          ByteSinkFactory factory, byte[] data, String suiteName, String caseDesc, Method method) {
        super(factory, data, suiteName, caseDesc, method);
      }
    
      @Override
      protected void setUp() throws Exception {
        sink = factory.createSink();
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 4K bytes
    - Viewed (0)
Back to top