Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 268 for Words (0.04 sec)

  1. src/main/java/org/codelibs/fess/helper/PopularWordHelper.java

                    } catch (final SuggesterException e) {
                        logger.warn("Failed to generate popular words.", e);
                    }
    
                    return wordList;
                });
            } catch (final ExecutionException e) {
                logger.warn("Failed to load popular words.", e);
            }
            return Collections.emptyList();
        }
    
        public void clearCache() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/go/doc/comment/parse.go

    type Parser struct {
    	// Words is a map of Go identifier words that
    	// should be italicized and potentially linked.
    	// If Words[w] is the empty string, then the word w
    	// is only italicized. Otherwise it is linked, using
    	// Words[w] as the link target.
    	// Words corresponds to the [go/doc.ToHTML] words parameter.
    	Words map[string]string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 33.5K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/FilteringClassLoader.java

            private final Trie trie;
            private final Set<String> set;
    
            public TrieSet(Collection<String> words) {
                this.trie = Trie.from(words);
                this.set = new HashSet<String>(words);
            }
    
            public boolean find(CharSequence seq) {
                return trie.find(seq);
            }
    
            public boolean contains(String seq) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  4. hack/verify-spelling.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This script checks commonly misspelled English words in all files in the
    # working directory by client9/misspell package.
    # Usage: `hack/verify-spelling.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 02 22:40:10 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/index/contents/ContentsParser.java

    import org.codelibs.fess.suggest.index.contents.querylog.QueryLog;
    import org.codelibs.fess.suggest.normalizer.Normalizer;
    
    public interface ContentsParser {
        SuggestItem parseSearchWords(String[] words, String[][] readings, String[] fields, String[] tags, String roles[], long score,
                ReadingConverter readingConverter, Normalizer normalizer, SuggestAnalyzer analyzer, String[] langs);
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  6. src/crypto/internal/edwards25519/field/fe_test.go

    func (v *Element) toBig() *big.Int {
    	buf := v.Bytes()
    
    	words := make([]big.Word, 32*8/bits.UintSize)
    	for n := range words {
    		for i := 0; i < bits.UintSize; i += 8 {
    			if len(buf) == 0 {
    				break
    			}
    			words[n] |= big.Word(buf[0]) << big.Word(i)
    			buf = buf[1:]
    		}
    	}
    
    	return new(big.Int).SetBits(words)
    }
    
    func TestDecimalConstants(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  7. src/runtime/profbuf.go

    // tag is stored in a circular buffer tags, running in parallel.
    // In the circular buffer data, each event takes 2+hdrsize+len(stk)
    // words: the value 2+hdrsize+len(stk), then the time of the event, then
    // hdrsize words giving the fixed-size header, and then len(stk) words
    // for the stack.
    //
    // The current effective offsets into the tags and data circular buffers
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/internal/upload/run.go

    		return nil, fmt.Errorf("no build info")
    	}
    	year, month, day := time.Now().UTC().Date()
    	goVers := info.GoVersion
    	// E.g.,  goVers:"go1.22-20240109-RC01 cl/597041403 +dcbe772469 X:loopvar"
    	words := strings.Fields(goVers)
    	goVers = words[0]
    	progPkgPath := info.Path
    	if progPkgPath == "" {
    		progPkgPath = strings.TrimSuffix(filepath.Base(os.Args[0]), ".exe")
    	}
    	prog := path.Base(progPkgPath)
    	progVers := info.Main.Version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 21:12:15 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/base/base.go

    type Command struct {
    	// Run runs the command.
    	// The args are the arguments after the command name.
    	Run func(ctx context.Context, cmd *Command, args []string)
    
    	// UsageLine is the one-line usage message.
    	// The words between "go" and the first flag or argument in the line are taken to be the command name.
    	UsageLine string
    
    	// Short is the short description shown in the 'go help' output.
    	Short string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/file/archive/DecompressionCoordinator.java

     * For a given build tree, only a single process is allowed write access to extract archives at a time.
     *
     * Multiple build processes are allowed to extract archives concurrently as long as they use different build trees (in other words, different root directories).
     * <p>
     * Within a process, only one thread is allowed write access to a given expanded directory. This is to avoid concurrent writes
     * to the same expanded directory.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 15:15:04 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top