Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 378 for WORDS (0.09 sec)

  1. src/runtime/cpuprof.go

    	"unsafe"
    )
    
    const (
    	maxCPUProfStack = 64
    
    	// profBufWordCount is the size of the CPU profile buffer's storage for the
    	// header and stack of each sample, measured in 64-bit words. Every sample
    	// has a required header of two words. With a small additional header (a
    	// word or two) and stacks at the profiler's maximum length of 64 frames,
    	// that capacity can support 1900 samples or 19 thread-seconds at a 100 Hz
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. test/abi/too_big_to_ssa.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    )
    
    var sink *string
    
    type toobig struct {
    	// 6 words will not SSA but will fit in registers
    	a, b, c string
    }
    
    //go:registerparams
    //go:noinline
    func H(x toobig) string {
    	return x.a + " " + x.b + " " + x.c
    }
    
    //go:registerparams
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 833 bytes
    - Viewed (0)
  3. src/main/webapp/js/advance.js

        }, 3000);
        return true;
      });
    
      if (typeof $.fn.suggestor === "function") {
        $("#as_q").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
    - 1.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. staging/src/k8s.io/apimachinery/pkg/util/rand/rand.go

    // from the default Source.
    func Perm(n int) []int {
    	rng.Lock()
    	defer rng.Unlock()
    	return rng.rand.Perm(n)
    }
    
    const (
    	// We omit vowels from the set of available characters to reduce the chances
    	// of "bad words" being formed.
    	alphanums = "bcdfghjklmnpqrstvwxz2456789"
    	// No. of bits required to index into alphanums string.
    	alphanumsIdxBits = 5
    	// Mask used to extract last alphanumsIdxBits of an int.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 11 11:02:01 UTC 2018
    - 3.5K bytes
    - Viewed (0)
  10. hack/make-rules/cross.sh

    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    # NOTE: Using "${array[*]}" here is correct.  [@] becomes distinct words (in
    # bash parlance).
    
    make all WHAT="${KUBE_SERVER_TARGETS[*]}" KUBE_BUILD_PLATFORMS="${KUBE_SERVER_PLATFORMS[*]}"
    
    make all WHAT="${KUBE_NODE_TARGETS[*]}" KUBE_BUILD_PLATFORMS="${KUBE_NODE_PLATFORMS[*]}"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 26 05:56:36 UTC 2019
    - 1.4K bytes
    - Viewed (0)
Back to top