Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 483 for dword (0.04 sec)

  1. src/main/resources/fess_config.properties

    #                                                     ------
    
    suggest.popular.word.seed=0
    suggest.popular.word.tags=
    suggest.popular.word.fields=
    suggest.popular.word.excludes=
    suggest.popular.word.size=10
    suggest.popular.word.window.size=30
    suggest.popular.word.query.freq=10
    suggest.min.hit.count=1
    suggest.field.contents=_default
    suggest.field.tags=label
    suggest.field.roles=role
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Apr 11 02:34:53 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  2. src/runtime/mcheckmark.go

    	"internal/runtime/atomic"
    	"runtime/internal/sys"
    	"unsafe"
    )
    
    // A checkmarksMap stores the GC marks in "checkmarks" mode. It is a
    // per-arena bitmap with a bit for every word in the arena. The mark
    // is stored on the bit corresponding to the first word of the marked
    // allocation.
    type checkmarksMap struct {
    	_ sys.NotInHeap
    	b [heapArenaBytes / goarch.PtrSize / 8]uint8
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  3. src/crypto/internal/edwards25519/field/fe_test.go

    	if n.BitLen() > 32*8 {
    		panic("edwards25519: invalid field element input size")
    	}
    
    	buf := make([]byte, 0, 32)
    	for _, word := range n.Bits() {
    		for i := 0; i < bits.UintSize; i += 8 {
    			if len(buf) >= cap(buf) {
    				break
    			}
    			buf = append(buf, byte(word))
    			word >>= 8
    		}
    	}
    
    	v.SetBytes(buf[:32])
    	return v
    }
    
    func (v *Element) fromDecimal(s string) *Element {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/testdata/generate_saved_models.py

            -1)
    
      @def_function.function(
          input_signature=[tensor_spec.TensorSpec(shape=None, dtype=dtypes.string)])
      def lookup(self, word):
        return self.table.lookup(word)
    
    
    def get_simple_session():
      ops.disable_eager_execution()
      sess = session_lib.Session()
      variables.Variable(1.)
      sess.run(variables.global_variables_initializer())
      return sess
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 18:06:18 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. src/math/fma.go

    	xs, xe, xm := split(bx)
    	ys, ye, ym := split(by)
    	zs, ze, zm := split(bz)
    
    	// Compute product p = x*y as sign, exponent, two-word mantissa.
    	// Start with exponent. "is normal" bit isn't subtracted yet.
    	pe := xe + ye - bias + 1
    
    	// pm1:pm2 is the double-word mantissa for the product p.
    	// Shift left to leave top bit in product. Effectively
    	// shifts the 106-bit product to the left by 21.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 05 22:05:30 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modindex/build.go

    // parseWord skips any leading spaces or comments in data
    // and then parses the beginning of data as an identifier or keyword,
    // returning that word and what remains after the word.
    func parseWord(data []byte) (word, rest []byte) {
    	data = skipSpaceOrComment(data)
    
    	// Parse past leading word characters.
    	rest = data
    	for {
    		r, size := utf8.DecodeRune(rest)
    		if unicode.IsLetter(r) || '0' <= r && r <= '9' || r == '_' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 17:39:23 UTC 2023
    - 26.8K bytes
    - Viewed (0)
  7. src/reflect/asm_riscv64.s

    #include "funcdata.h"
    
    // The frames of each of the two functions below contain two locals, at offsets
    // that are known to the runtime.
    //
    // The first local is a bool called retValid with a whole pointer-word reserved
    // for it on the stack. The purpose of this word is so that the runtime knows
    // whether the stack-allocated return space contains valid values for stack
    // scanning.
    //
    // The second local is an abi.RegArgs value whose offset is also known to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 01 01:41:42 UTC 2022
    - 2.6K bytes
    - Viewed (0)
  8. pkg/util/strcase/camelcase.go

    	if isWordSeparator(s[0]) {
    		// Need a capital letter; drop the '_'.
    		t = append(t, 'X')
    		i++
    	}
    	// Invariant: if the next letter is lower case, it must be converted
    	// to upper case.
    	// That is, we process a word at a time, where words are marked by _, - or
    	// upper case letter. Digits are treated as words.
    	for ; i < len(s); i++ {
    		c := s[i]
    		if isWordSeparator(c) {
    			// Skip the separate and capitalize the next letter.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 28 19:48:10 UTC 2020
    - 2.7K bytes
    - Viewed (0)
  9. platforms/ide/problems-api/src/test/groovy/org/gradle/api/problems/SeverityTest.groovy

     * limitations under the License.
     */
    
    package org.gradle.api.problems
    
    
    import spock.lang.Specification
    
    class SeverityTest extends Specification{
        def "severity toString() should be a capitalized word"() {
            expect:
            Severity.ERROR.toString() == "Error"
            Severity.WARNING.toString() == "Warning"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 27 13:19:04 UTC 2023
    - 907 bytes
    - Viewed (0)
  10. src/reflect/asm_loong64.s

    #define	REGCTXT	R29
    
    // The frames of each of the two functions below contain two locals, at offsets
    // that are known to the runtime.
    //
    // The first local is a bool called retValid with a whole pointer-word reserved
    // for it on the stack. The purpose of this word is so that the runtime knows
    // whether the stack-allocated return space contains valid values for stack
    // scanning.
    //
    // The second local is an abi.RegArgs value whose offset is also known to the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 15:04:25 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top