Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 811 - 820 of 1,636 for dama (0.02 seconds)

  1. src/test/java/jcifs/internal/smb1/trans/nt/SmbComNtTransactionResponseTest.java

        void testReadParameterWordsWireFormatZeroSetupCount() throws Exception {
            byte[] buffer = new byte[100];
            int bufferIndex = 10;
    
            // Prepare buffer with test data
            // Reserved bytes (3 bytes)
            buffer[bufferIndex] = 0x00;
            buffer[bufferIndex + 1] = 0x00;
            buffer[bufferIndex + 2] = 0x00;
    
            // totalParameterCount (4 bytes)
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 16.3K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/core/io/FileUtilTest.java

        public void testReadBytes_CustomMaxSize_ExceedsLimit() throws Exception {
            final File file = tempFolder.newFile("medium.txt");
            final byte[] data = new byte[1024]; // 1KB
            final FileOutputStream out = new FileOutputStream(file);
            try {
                out.write(data);
            } finally {
                out.close();
            }
    
            // Set maxSize smaller than file size (should throw exception)
    Created: Fri Apr 03 20:58:12 GMT 2026
    - Last Modified: Sat Nov 22 11:21:59 GMT 2025
    - 10.3K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/storage/TagForm.java

    import org.apache.logging.log4j.core.config.plugins.validation.constraints.Required;
    
    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for handling tag operations in storage management.
     * This form represents tag data including path, name, and associated metadata.
     */
    public class TagForm {
    
        /**
         * The file or directory path associated with this tag.
         */
        @Required
        public String path;
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.5K bytes
    - Click Count (0)
  4. scripts/tests/test_translation_fixer/test_header_permalinks/test_header_number_mismatch.py

    from pathlib import Path
    
    import pytest
    from typer.testing import CliRunner
    
    from scripts.translation_fixer import cli
    
    data_path = Path(
        "scripts/tests/test_translation_fixer/test_header_permalinks/data"
    ).absolute()
    
    
    @pytest.mark.parametrize(
        "copy_test_files",
        [(f"{data_path}/en_doc.md", f"{data_path}/translated_doc_number_gt.md")],
        indirect=True,
    )
    def test_gt(runner: CliRunner, root_dir: Path, copy_test_files):
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Jan 10 22:43:44 GMT 2026
    - 1.9K bytes
    - Click Count (0)
  5. android/guava/src/com/google/common/collect/ArrayListMultimap.java

       *
       * <p>You may also consider the equivalent {@code
       * MultimapBuilder.hashKeys().arrayListValues().build()}, which provides more control over the
       * underlying data structure.
       */
      public static <K extends @Nullable Object, V extends @Nullable Object>
          ArrayListMultimap<K, V> create() {
        return new ArrayListMultimap<>();
      }
    
      /**
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 05 23:15:58 GMT 2025
    - 6.8K bytes
    - Click Count (0)
  6. docs/tr/docs/tutorial/path-params-numeric-validations.md

    Python bu `*` ile bir şey yapmaz; ama bundan sonraki tüm parametrelerin keyword argument (anahtar-değer çiftleri) olarak çağrılması gerektiğini bilir; buna <abbr title="Kökeni: K-ey W-ord Arg-uments - Anahtar Kelime Argümanları"><code>kwargs</code></abbr> da denir. Default değerleri olmasa bile.
    
    {* ../../docs_src/path_params_numeric_validations/tutorial003_py310.py hl[7] *}
    
    ### `Annotated` ile Daha İyi { #better-with-annotated }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  7. src/main/webapp/js/admin/plugins/form-validator/jsconf.js

    ction(a){"use strict";a.formUtils.registerLoadedModule("jsconf"),a.setupValidation=function(b){var c=a(b.form||"form");a.each(b.validate||b.validation||{},function(b,d){var e;e="#"===b[0]?a(b):"."===b[0]?c.find(b):c.find('*[name="'+b+'"]'),e.attr("data-validation",d.validation),a.each(d,function(a,b){"validation"!==a&&b!==!1&&(b===!0&&(b="true"),"_"===a[0]?(a=a.substring(1),b===!1?e.removeAttr(a):e.attr(a,b)):e.valAttr(a,b))})}),a.validate(b)}}(a)});...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Jan 01 05:12:47 GMT 2018
    - 867 bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/wizard/StartCrawlingForm.java

     *
     * This form is used to collect user input and parameters needed to initiate
     * crawling operations through the administrative interface wizard workflow.
     * It serves as a data transfer object between the web layer and the crawling
     * service components.
     */
    public class StartCrawlingForm {
    
        /**
         * Default constructor.
         */
        public StartCrawlingForm() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.1K bytes
    - Click Count (0)
  9. src/main/java/jcifs/smb1/UniAddress.java

                int i, len, dots;
                char[] data;
    
                i = dots = 0; /* quick IP address validation */
                len = hostname.length();
                data = hostname.toCharArray();
                while (i < len && Character.isDigit(data[i++])) {
                    if (i == len && dots == 3) {
                        // probably an IP address
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 17K bytes
    - Click Count (0)
  10. src/test/java/jcifs/internal/dfs/DfsReferralRequestBufferTest.java

                assertEquals(buffer.size(), bytesEncoded);
    
                // Verify that data before offset is untouched
                for (int i = 0; i < offset; i++) {
                    assertEquals(0, dst[i]);
                }
    
                // Verify encoded data at offset
                ByteBuffer bb = ByteBuffer.wrap(dst).order(ByteOrder.LITTLE_ENDIAN);
                bb.position(offset);
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 17.5K bytes
    - Click Count (0)
Back to Top