Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 341 for Words (0.54 sec)

  1. src/crypto/internal/bigmod/nat_asm.go

    import "internal/cpu"
    
    // amd64 assembly uses ADCX/ADOX/MULX if ADX is available to run two carry
    // chains in the flags in parallel across the whole operation, and aggressively
    // unrolls loops. arm64 processes four words at a time.
    //
    // It's unclear why the assembly for all other architectures, as well as for
    // amd64 without ADX, perform better than the compiler output.
    // TODO(filippo): file cmd/compile performance issue.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 07:52:41 UTC 2023
    - 942 bytes
    - Viewed (0)
  2. src/crypto/internal/boring/doc.go

    // When enabled is false, all functions in this package panic.
    //
    // BoringCrypto is only available on linux/amd64 and linux/arm64 systems.
    const Enabled = available
    
    // A BigInt is the raw words from a BigInt.
    // This definition allows us to avoid importing math/big.
    // Conversion between BigInt and *big.Int is in crypto/internal/boring/bbig.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 05:28:51 UTC 2023
    - 826 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/main/webapp/js/help.js

        $("#numSearchOption").prop("selectedIndex", 0);
        return false;
      });
    
      if (typeof $.fn.suggestor === "function") {
        $("#query").suggestor({
          ajaxinfo: {
            url: contextPath + "/api/v1/suggest-words",
            fn: ["_default", "content", "title"],
            num: 10,
            lang: $("#langSearchOption").val()
          },
          boxCssInfo: {
            border: "1px solid rgba(82, 168, 236, 0.5)",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. 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)
  7. src/main/webapp/js/index.js

        return false;
      });
    
      if (typeof $.fn.suggestor === "function") {
        $("#contentQuery").suggestor({
          ajaxinfo: {
            url: contextPath + "/api/v1/suggest-words",
            fn: ["_default", "content", "title"],
            num: 10,
            lang: $("#langSearchOption").val()
          },
          boxCssInfo: {
            border: "1px solid rgba(82, 168, 236, 0.5)",
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Mar 30 05:45:24 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. src/runtime/memclr_arm64.s

    	CBNZ	R5, zero_by_line
    	// DCZID_EL0 bit assignments
    	// [63:5] Reserved
    	// [4]    DZP, if bit set DC ZVA instruction is prohibited, else permitted
    	// [3:0]  log2 of the block size in words, eg. if it returns 0x4 then block size is 16 words
    	MRS	DCZID_EL0, R3
    	TBZ	$4, R3, init
    	// ZVA not available
    	MOVW	$~0, R5
    	MOVW	R5, block_size<>(SB)
    	B	no_zva
    
    init:
    	MOVW	$4, R9
    	ANDW	$15, R3, R5
    	LSLW	R5, R9, R5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 18:26:13 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top