Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 235 for dword (0.04 sec)

  1. src/main/resources/fess_label_fr.properties

    labels.elevate_word_button_upload	=	Envoyer
    labels.elevate_word_list_suggest_word	=	Word
    labels.elevate_word_suggest_word	=	Word
    labels.elevate_word_reading	=	Lecture
    labels.elevate_word_permissions	=	Permissions
    labels.elevate_word_boost	=	Booster
    labels.elevate_word_file	=	Fichier Word supplémentaire
    labels.bad_word_configuration	=	Bad Word
    labels.bad_word_title_details	=	Bad Word
    labels.bad_word_link_list	=	Liste
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/code.go

    		buf.WriteString("\n")
    	}
    	buf.WriteString("<pre><code")
    	if b.Info != "" {
    		// https://spec.commonmark.org/0.30/#info-string
    		// “The first word of the info string is typically used to
    		// specify the language of the code sample...”
    		// No definition of what “first word” means though.
    		// The Dingus splits on isUnicodeSpace, but Goldmark only uses space.
    		lang := b.Info
    		for i, c := range lang {
    			if isUnicodeSpace(c) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  3. src/math/big/natdiv.go

    }
    
    // divWVW overwrites z with ⌊x/y⌋, returning the remainder r.
    // The caller must ensure that len(z) = len(x).
    func divWVW(z []Word, xn Word, x []Word, y Word) (r Word) {
    	r = xn
    	if len(x) == 1 {
    		qq, rr := bits.Div(uint(r), uint(x[0]), uint(y))
    		z[0] = Word(qq)
    		return Word(rr)
    	}
    	rec := reciprocalWord(y)
    	for i := len(z) - 1; i >= 0; i-- {
    		z[i], r = divWW(r, x[i], y, rec)
    	}
    	return r
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/ops/gen/common/case_format.cc

      const bool toSnake = (to == LOWER_SNAKE || to == UPPER_SNAKE);
    
      string result;
    
      bool inputStart = true;
      bool wordStart = true;
      for (const char c : str) {
        // Find a word start.
        if (c == delimiter) {
          // Repeated cases of wordStart means explicit delimiter usage.
          if (wordStart) {
            result.push_back(delimiter);
          }
          wordStart = true;
          continue;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 09:51:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/cases/info.go

    // ICU prohibits breaking in such cases as well.
    
    // For the purpose of title casing we use an approximation of the Unicode Word
    // Breaking algorithm defined in Annex #29:
    // https://www.unicode.org/reports/tr29/#Default_Grapheme_Cluster_Table.
    //
    // For our approximation, we group the Word Break types into the following
    // categories, with associated rules:
    //
    // 1) Letter:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/arch/loong64.go

    // Loong64 (LoongArch64) instruction set, to minimize its interaction
    // with the core of the assembler.
    
    package arch
    
    import (
    	"cmd/internal/obj"
    	"cmd/internal/obj/loong64"
    )
    
    func jumpLoong64(word string) bool {
    	switch word {
    	case "BEQ", "BFPF", "BFPT", "BLTZ", "BGEZ", "BLEZ", "BGTZ", "BLT", "BLTU", "JIRL", "BNE", "BGE", "BGEU", "JMP", "JAL", "CALL":
    		return true
    	}
    	return false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  7. src/internal/reflectlite/value.go

    		// Value is indirect, but interface is direct. We need
    		// to load the data at v.ptr into the interface data word.
    		e.Data = *(*unsafe.Pointer)(v.ptr)
    	default:
    		// Value is direct, and so is the interface.
    		e.Data = v.ptr
    	}
    	// Now, fill in the type portion. We're very careful here not
    	// to have any operation between the e.word and e.typ assignments
    	// that would let the garbage collector observe the partially-built
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:01:54 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  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