Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 361 - 370 of 519 for h$ (0.02 seconds)

  1. android/guava/src/com/google/common/collect/ImmutableSetMultimap.java

       *         .putAll('c', Arrays.asList('a', 'r', 'r', 'o', 't'))
       *         .putAll('a', Arrays.asList('s', 'p', 'a', 'r', 'a', 'g', 'u', 's'))
       *         .putAll('c', Arrays.asList('h', 'e', 'r', 'r', 'y'))
       *         .build();
       *
       * // after deduplication, the resulting multimap is equivalent to
       *
       * static final ImmutableSetMultimap<Character, Character> FIRST_LETTER_MULTIMAP =
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Feb 19 22:57:35 GMT 2026
    - 26.3K bytes
    - Click Count (0)
  2. src/main/resources/fess_indices/_aws/fess.json

    3000,\uFEFF => \u0020", "~,˜,῀,⁓,∼,∿,~ => 〜", "A => A", "B => B", "C => C", "D => D", "E => E", "F => F", "G => G", " => H", "I => I", "J => J", "K => K", "L => L", "M => M", "N => N", "O => O", "P => P", "Q => Q", "R => R", "S => S", "T => T", "U => U", "V => V", "W => W", "X => X", "Y => Y", "Z => Z", "a => a", "b => b", "c => c", "d => d", "e => e", "f => f", "g => g", " => h", "i => i", "j => j", "k => k", "l => l", "m => m", "n => n", "o => o", "p => p", "q => q", "r => r", "s => s", "t =>...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  3. src/main/resources/fess_indices/_cloud/fess.json

    3000,\uFEFF => \u0020", "~,˜,῀,⁓,∼,∿,~ => 〜", "A => A", "B => B", "C => C", "D => D", "E => E", "F => F", "G => G", " => H", "I => I", "J => J", "K => K", "L => L", "M => M", "N => N", "O => O", "P => P", "Q => Q", "R => R", "S => S", "T => T", "U => U", "V => V", "W => W", "X => X", "Y => Y", "Z => Z", "a => a", "b => b", "c => c", "d => d", "e => e", "f => f", "g => g", " => h", "i => i", "j => j", "k => k", "l => l", "m => m", "n => n", "o => o", "p => p", "q => q", "r => r", "s => s", "t =>...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 07:52:55 GMT 2026
    - 117.5K bytes
    - Click Count (0)
  4. android/guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java

        assertThat(set.subSet("a", "g")).containsExactly("b", "c", "d", "e", "f").inOrder();
        assertThat(set.subSet("a", "b")).isSameInstanceAs(this.<String>of());
        assertThat(set.subSet("g", "h")).isSameInstanceAs(this.<String>of());
        assertThat(set.subSet("c", "c")).isSameInstanceAs(this.<String>of());
        assertThrows(IllegalArgumentException.class, () -> set.subSet("e", "c"));
      }
    
      @J2ktIncompatible
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 13 13:01:07 GMT 2026
    - 46.3K bytes
    - Click Count (0)
  5. cmd/auth-handler.go

    				atomic.AddUint64(&globalHTTPStats.rejectedRequestsTime, 1)
    				return
    			}
    			h.ServeHTTP(w, r)
    			return
    		case authTypeJWT, authTypeSTS:
    			h.ServeHTTP(w, r)
    			return
    		default:
    			if isSupportedS3AuthType(aType) {
    				h.ServeHTTP(w, r)
    				return
    			}
    		}
    
    		if ok {
    			tc.FuncName = "handler.Auth"
    			tc.ResponseRecorder.LogErrBody = true
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 25.4K bytes
    - Click Count (0)
  6. cmd/xl-storage_test.go

    	}
    
    	for i, test := range xlStorageReadFileWithVerifyTests {
    		h := test.algorithm.New()
    		h.Write(data)
    		if test.expError != nil {
    			h.Write([]byte{0})
    		}
    
    		buffer := make([]byte, test.length)
    		n, err := xlStorage.ReadFile(t.Context(), volume, test.file, int64(test.offset), buffer, NewBitrotVerifier(test.algorithm, h.Sum(nil)))
    
    		switch {
    		case err == nil && test.expError != nil:
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 66K bytes
    - Click Count (0)
  7. cmd/api-response.go

    	}
    }
    
    // generates CompleteMultipartUploadResponse for given bucket, key, location and ETag.
    func generateCompleteMultipartUploadResponse(bucket, key, location string, oi ObjectInfo, h http.Header) CompleteMultipartUploadResponse {
    	cs, _ := oi.decryptChecksums(0, h)
    	c := CompleteMultipartUploadResponse{
    		Location: location,
    		Bucket:   bucket,
    		Key:      key,
    		// AWS S3 quotes the ETag in XML, make sure we are compatible here.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Oct 24 04:05:19 GMT 2025
    - 35K bytes
    - Click Count (0)
  8. docs/smb3-features/01-smb3-lease-design.md

        public static final int SMB2_LEASE_NONE           = 0x00;
        public static final int SMB2_LEASE_READ_CACHING   = 0x01;  // R - Read caching
        public static final int SMB2_LEASE_HANDLE_CACHING = 0x02;  // H - Handle caching  
        public static final int SMB2_LEASE_WRITE_CACHING  = 0x04;  // W - Write caching
        
        // Common combinations
        public static final int SMB2_LEASE_READ_HANDLE    = 0x03;  // RH
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 02:53:50 GMT 2025
    - 22K bytes
    - Click Count (0)
  9. src/main/webapp/js/admin/adminlte.min.js.map

    QAAQL,qBACfO,EAAMvC,SAAS4B,GACfU,EAAMlC,YAAY0B,GAAkCjB,MAAM,KAAKC,OAAM,WACnEpG,EAAAA,QAAE6G,GAA0BiB,OAC5BD,EAAMnC,YAAYwB,GAClBlH,EAAAA,QAAE0B,MAAM4E,cAGVsB,EAAMlC,YAAYyB,GAGpBnH,EAAAA,QAAE0B,KAAKC,UAAUnB,QAAQR,EAAAA,QAAEoD,MA9DV,iCAgEjB2E,YAAW,WACT/H,EAAAA,QAAEqC,EAAKV,UAAUnB,QAAQR,EAAAA,QAAEoD,MAhEP,wCAiEnB1B,KAAKiG,QAAQ/C,mBAGlBoD,KAAA,SAAKnC,QAAgB,IAAhBA,IAAAA,GAAS,GACZ,IAAM+B,EAAQ5H,EAAAA,QAAE,QACV6H,EAAQ7H,EAAAA,QAAE,QAEZ6F,GACF7F,EAAAA,QAAE6G,GAA0BiB,OAI1BpG,KAAKiG,QAAQL,qBACfO,EAAMvC,SAAS...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 132.4K bytes
    - Click Count (0)
  10. src/bufio/bufio_test.go

    	str := ""
    	all := ""
    	for i := 0; i < len(texts)-1; i++ {
    		texts[i] = str + "\n"
    		all += texts[i]
    		str += string(rune(i%26 + 'a'))
    	}
    	texts[len(texts)-1] = all
    
    	for h := 0; h < len(texts); h++ {
    		text := texts[h]
    		for i := 0; i < len(readMakers); i++ {
    			for j := 0; j < len(bufreaders); j++ {
    				for k := 0; k < len(bufsizes); k++ {
    					readmaker := readMakers[i]
    					bufreader := bufreaders[j]
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Feb 07 01:08:54 GMT 2025
    - 51.6K bytes
    - Click Count (0)
Back to Top