Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 211 for Dword2 (0.23 sec)

  1. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java

            }
        }
    
        protected QueryBuilder buildFilterQuery(final String fieldName, final List<String> words) {
            final BoolQueryBuilder boolQueryBuilder = QueryBuilders.boolQuery().minimumShouldMatch(1);
            words.stream().forEach(word -> boolQueryBuilder.should(QueryBuilders.termQuery(fieldName, word)));
            return boolQueryBuilder;
        }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. pkg/util/iptables/testing/parse.go

    	parsed := &Rule{Raw: rule}
    
    	// Split rule into "words" (where a quoted string is a single word).
    	var words []string
    	for _, match := range wordRegex.FindAllStringSubmatch(rule, -1) {
    		words = append(words, strings.Trim(match[1], `"`))
    	}
    
    	// The chain name must come first (and can't be the only thing there)
    	if len(words) < 2 || words[0] != "-A" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. src/mime/multipart/multipart_test.go

    		t.Error(err)
    	}
    	got := buf.String()
    	want := "words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words words"
    	if got != want {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:36:47 UTC 2022
    - 30.4K bytes
    - Viewed (0)
  4. src/main/resources/fess_label_en.properties

    labels.suggest_word_configuration=Suggest Word
    labels.suggest_word_title_details=Suggest Word
    labels.suggest_word_type=Word Type
    labels.suggest_word_number=Word Count
    labels.suggest_word_type_all=All
    labels.suggest_word_type_document=Document
    labels.suggest_word_type_query=Query
    labels.elevate_word_configuration=Additional Word
    labels.elevate_word_title_details=Additional Word
    labels.elevate_word_link_list=List
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  5. src/math/big/arith_s390x.s

    	MOVD R7, c+56(FP)
    	RET
    
    // func shlVU(z, x []Word, s uint) (c Word)
    TEXT ·shlVU(SB), NOSPLIT, $0
    	BR ·shlVU_g(SB)
    
    // func shrVU(z, x []Word, s uint) (c Word)
    TEXT ·shrVU(SB), NOSPLIT, $0
    	BR ·shrVU_g(SB)
    
    // CX = R4, r8 = r8, r9=r9, r10 = r2, r11 = r5, DX = r3, AX = r6, BX = R1, (R0 set to 0) + use R11 + use R7 for i
    // func mulAddVWW(z, x []Word, y, r Word) (c Word)
    TEXT ·mulAddVWW(SB), NOSPLIT, $0
    	MOVD z+0(FP), R2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

            }
            refresh();
        }
    
        public void deleteElevateWord(final String word, final boolean apply) {
            suggester.indexer().deleteElevateWord(word, apply);
            refresh();
        }
    
        public void addElevateWord(final String word, final String reading, final String[] tags, final String[] permissions, final Float boost,
                final boolean apply) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  7. src/main/resources/fess_label_ru.properties

    labels.elevate_word_button_upload=Upload
    labels.elevate_word_list_suggest_word=Word
    labels.elevate_word_suggest_word=Word
    labels.elevate_word_reading=Reading
    labels.elevate_word_permissions=Permissions
    labels.elevate_word_boost=Boost
    labels.elevate_word_file=Additional Word File
    labels.bad_word_configuration=Bad Word
    labels.bad_word_title_details=Bad Word
    labels.bad_word_link_list=List
    labels.bad_word_link_edit=Создать новый
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 45.6K bytes
    - Viewed (0)
  8. src/math/big/arith_arm64.s

    	BEQ	done
    copy_4:				// no carry flag, copy the rest
    	vwOneIterCopy(R0, done)
    	B	copy_4
    
    // func shlVU(z, x []Word, s uint) (c Word)
    // This implementation handles the shift operation from the high word to the low word,
    // which may be an error for the case where the low word of x overlaps with the high
    // word of z. When calling this function directly, you need to pay attention to this
    // situation.
    TEXT ·shlVU(SB),NOSPLIT,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java

            andx.useUnicode = useUnicode;
            if( andx instanceof AndXServerMessageBlock ) {
    
                /*
                 * A word about communicating header info to andx smbs
                 *
                 * This is where we recursively invoke the provided andx smb
                 * object to write it's parameter words and bytes to our outgoing
                 * array. Incedentally when these andx smbs are created they are not
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.3K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/opensearch/extension/analysis/NGramSynonymTokenizer.java

            }
    
            public MyToken(final String word, final int startOffset, final int endOffset, final int posInc) {
                this(word, startOffset, endOffset, posInc, Integer.MAX_VALUE); // Integer.MAX_VALUE for seq means unused
            }
    
            public MyToken(final String word, final int startOffset, final int endOffset, final int posInc, final int seq) {
                this.word = word;
                this.startOffset = startOffset;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 17K bytes
    - Viewed (0)
Back to top