Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 258 for Dword2 (0.32 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/runtime/mgcmark.go

    	}
    
    	for i := uintptr(0); i < n; i += goarch.PtrSize {
    		if ptrmask != nil {
    			word := i / goarch.PtrSize
    			bits := *addb(ptrmask, word/8)
    			if bits == 0 {
    				// Skip 8 words (the loop increment will do the 8th)
    				//
    				// This must be the first time we've
    				// seen this word of ptrmask, so i
    				// must be 8-word-aligned, but check
    				// our reasoning just in case.
    				if i%(goarch.PtrSize*8) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. docs/en/docs/python-types.md

    I think `Union[SomeType, None]` is more explicit about what it means.
    
    It's just about the words and names. But those words can affect how you and your teammates think about the code.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. src/sync/atomic/doc.go

    //
    // On ARM, 386, and 32-bit MIPS, it is the caller's responsibility to arrange
    // for 64-bit alignment of 64-bit words accessed atomically via the primitive
    // atomic functions (types [Int64] and [Uint64] are automatically aligned).
    // The first word in an allocated struct, array, or slice; in a global
    // variable; or in a local variable (because the subject of all atomic operations
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 11.7K bytes
    - Viewed (0)
Back to top