Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 121 - 130 of 232 for Punycode (0.07 seconds)

  1. cmd/generic-handlers.go

    			i++
    		}
    
    		// Trim whitespace of segment
    		segmentStart, segmentEnd := start, i
    		for segmentStart < segmentEnd && unicode.IsSpace(rune(path[segmentStart])) {
    			segmentStart++
    		}
    		for segmentEnd > segmentStart && unicode.IsSpace(rune(path[segmentEnd-1])) {
    			segmentEnd--
    		}
    
    		// Check for ".." or "."
    		switch {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 20.7K bytes
    - Click Count (1)
  2. src/test/java/jcifs/smb/SMBSignatureValidationExceptionTest.java

        }
    
        // Edge/null/empty: message-only constructor should propagate message and set unsuccessful status
        @ParameterizedTest
        @NullSource
        @ValueSource(strings = { "", " ", "simple", "with unicode ฮฉโ‰ˆรงโˆš", "long-0123456789-abcdefghijklmnopqrstuvwxyz" })
        @DisplayName("Message-only ctor: propagates message and unsuccessful status")
        void messageOnlyConstructor_setsMessage_andUnsuccessfulStatus(String msg) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  3. src/archive/tar/strconv_test.go

    		{"0.123456789abcdef", time.Time{}, false},
    		{"foo", time.Time{}, false},
    		{"\x00", time.Time{}, false},
    		{"๐Ÿต๐Ÿด๐Ÿณ๐Ÿฒ๐Ÿฑ.๐Ÿฐ๐Ÿฏ๐Ÿฎ๐Ÿญ๐Ÿฌ", time.Time{}, false}, // Unicode numbers (U+1D7EC to U+1D7F5)
    		{"98765๏น’43210", time.Time{}, false}, // Unicode period (U+FE52)
    	}
    
    	for _, v := range vectors {
    		ts, err := parsePAXTime(v.in)
    		ok := (err == nil)
    		if v.ok != ok {
    			if v.ok {
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Sep 11 17:52:43 GMT 2025
    - 15K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java

            assertEquals(message, exception.getMessage());
            assertNull(exception.getCause());
        }
    
        @Test
        public void test_constructor_withUnicodeCharacters() {
            // Test with Unicode characters
            String message = "ๆคœ็ดขๆ“ไฝœใฏใ‚ตใƒใƒผใƒˆใ•ใ‚Œใฆใ„ใพใ›ใ‚“ ๐Ÿ”";
            UnsupportedSearchException exception = new UnsupportedSearchException(message);
    
            assertEquals(message, exception.getMessage());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  5. android/guava-tests/benchmark/com/google/common/hash/HashStringBenchmark.java

      HashFunctionEnum hashFunctionEnum;
    
      private String[] strings;
    
      static final int SAMPLES = 0x100;
      static final int SAMPLE_MASK = 0xFF;
    
      /**
       * Compute arrays of valid unicode text, and store it in 3 forms: byte arrays, Strings, and
       * StringBuilders (in a CharSequence[] to make it a little harder for the JVM).
       */
      @BeforeExperiment
      void setUp() {
        long seed = 99;
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue May 13 18:46:00 GMT 2025
    - 5.3K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/storage/StorageItemTest.java

            assertEquals(specialName, item.getName());
        }
    
        public void test_unicodeInName() {
            final String unicodeName = "ใƒ•ใ‚กใ‚คใƒซๅ.txt";
            final StorageItem item = new StorageItem(unicodeName, "/unicode/", false, 200L, null, "dW5pY29kZQ==");
    
            assertEquals(unicodeName, item.getName());
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 12:58:11 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/helper/NotificationHelperTest.java

            discloser.setSubject("ใƒ†ใ‚นใƒˆไปถๅ ๐Ÿš€");
            discloser.setPlainText("ใƒ†ใ‚นใƒˆๅ†…ๅฎนใงใ™ใ€‚\nๆ”น่กŒใ‚‚ใ‚ใ‚Šใพใ™ใ€‚");
    
            String result = notificationHelper.toSlackMessage(discloser);
    
            assertNotNull(result);
            // Unicode characters may be escaped in JSON
            assertTrue(result.contains("ใƒ†ใ‚นใƒˆ") || result.contains("\\u"));
        }
    
        @Test
        public void test_toGoogleChatMessage_withUnicodeContent() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 20K bytes
    - Click Count (0)
  8. src/bytes/buffer.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package bytes
    
    // Simple byte buffer for marshaling data.
    
    import (
    	"errors"
    	"io"
    	"unicode/utf8"
    )
    
    // smallBufferSize is an initial allocation minimal capacity.
    const smallBufferSize = 64
    
    // A Buffer is a variable-sized buffer of bytes with [Buffer.Read] and [Buffer.Write] methods.
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Nov 14 19:01:17 GMT 2025
    - 16.5K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/exception/WebApiExceptionTest.java

            assertEquals(statusCode, exception.getStatusCode());
            assertEquals(message, exception.getMessage());
        }
    
        @Test
        public void test_exceptionWithUnicodeMessage() {
            // Test with unicode characters in message
            int statusCode = 422;
            String message = "ใ‚จใƒฉใƒผ: ็„กๅŠนใชใƒชใ‚ฏใ‚จใ‚นใƒˆ ้”™่ฏฏ๏ผšๆ— ๆ•ˆ่ฏทๆฑ‚ ์˜ค๋ฅ˜: ์ž˜๋ชป๋œ ์š”์ฒญ";
    
            WebApiException exception = new WebApiException(statusCode, message);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 9.5K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/exception/FessUserNotFoundExceptionTest.java

            assertNull(exception.getCause());
        }
    
        @Test
        public void test_constructor_withUnicodeCharacters() {
            // Test with username containing Unicode characters
            String username = "ใƒฆใƒผใ‚ถใƒผๅ";
            FessUserNotFoundException exception = new FessUserNotFoundException(username);
    
            assertNotNull(exception);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 6.8K bytes
    - Click Count (0)
Back to Top