Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 118 of 118 for Weiner (0.1 sec)

  1. src/vendor/golang.org/x/text/unicode/norm/composition.go

    func (rb *reorderBuffer) insertSingle(src input, i int, info Properties) {
    	src.copySlice(rb.byte[rb.nbyte:], i, i+int(info.size))
    	rb.insertOrdered(info)
    }
    
    // insertCGJ inserts a Combining Grapheme Joiner (0x034f) into rb.
    func (rb *reorderBuffer) insertCGJ() {
    	rb.insertSingle(input{str: GraphemeJoiner}, 0, Properties{size: uint8(len(GraphemeJoiner))})
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 19:27:51 UTC 2019
    - 14.1K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/text/unicode/norm/normalize.go

    				return -1
    			}
    			return i // boundary after an illegal UTF-8 encoding
    		}
    	}
    	return i
    }
    
    // decomposeSegment scans the first segment in src into rb. It inserts 0x034f
    // (Grapheme Joiner) when it encounters a sequence of more than 30 non-starters
    // and returns the number of bytes consumed from src or iShortDst or iShortSrc.
    func decomposeSegment(rb *reorderBuffer, sp int, atEOF bool) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 14.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    				return -1
    			}
    			return i // boundary after an illegal UTF-8 encoding
    		}
    	}
    	return i
    }
    
    // decomposeSegment scans the first segment in src into rb. It inserts 0x034f
    // (Grapheme Joiner) when it encounters a sequence of more than 30 non-starters
    // and returns the number of bytes consumed from src or iShortDst or iShortSrc.
    func decomposeSegment(rb *reorderBuffer, sp int, atEOF bool) int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/idna/idna9.0.0.go

    func CheckHyphens(enable bool) Option {
    	return func(o *options) { o.checkHyphens = enable }
    }
    
    // CheckJoiners sets whether to check the ContextJ rules as defined in Appendix
    // A of RFC 5892, concerning the use of joiner runes.
    //
    // This option corresponds to the CheckJoiners flag in UTS #46.
    func CheckJoiners(enable bool) Option {
    	return func(o *options) {
    		o.trie = trie
    		o.checkJoiners = enable
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/idna/idna10.0.0.go

    func CheckHyphens(enable bool) Option {
    	return func(o *options) { o.checkHyphens = enable }
    }
    
    // CheckJoiners sets whether to check the ContextJ rules as defined in Appendix
    // A of RFC 5892, concerning the use of joiner runes.
    //
    // This option corresponds to the CheckJoiners flag in UTS #46.
    func CheckJoiners(enable bool) Option {
    	return func(o *options) {
    		o.trie = trie
    		o.checkJoiners = enable
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  6. src/main/resources/fess_label_de.properties

    labels.tooltip_onlinehelp=Hilfe
    labels.tooltip_logout=Abmelden
    labels.advance=Weiter
    labels.advance_search_title=Advanced Search
    labels.advance_search_must_queries=All diese Wörter
    labels.advance_search_phrase_query=Exakt dieses Wort oder dieser Satz
    labels.advance_search_should_queries=Eines dieser Wörter
    labels.advance_search_not_queries=Keines dieser Wörter
    labels.advance_search_filetype=Dateityp
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Iterables.java

       * cases where {@link Collection#contains} might throw {@link NullPointerException} or {@link
       * ClassCastException}.
       */
      // <? extends @Nullable Object> instead of <?> because of Kotlin b/189937072, discussed in Joiner.
      public static boolean contains(
          Iterable<? extends @Nullable Object> iterable, @CheckForNull Object element) {
        if (iterable instanceof Collection) {
          Collection<?> collection = (Collection<?>) iterable;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Iterables.java

       * cases where {@link Collection#contains} might throw {@link NullPointerException} or {@link
       * ClassCastException}.
       */
      // <? extends @Nullable Object> instead of <?> because of Kotlin b/189937072, discussed in Joiner.
      public static boolean contains(
          Iterable<? extends @Nullable Object> iterable, @CheckForNull Object element) {
        if (iterable instanceof Collection) {
          Collection<?> collection = (Collection<?>) iterable;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.8K bytes
    - Viewed (0)
Back to top