Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 341 for Words (0.46 sec)

  1. src/main/resources/fess_label.properties

    labels.tooltip_logout=Logout
    labels.advance=Advance
    labels.advance_search_title=Advanced Search
    labels.advance_search_must_queries=All these words
    labels.advance_search_phrase_query=Phrase search of these words
    labels.advance_search_should_queries=Any of these words
    labels.advance_search_not_queries=None of these words
    labels.advance_search_filetype=File Type
    labels.advance_search_filetype_default=All Type
    labels.advance_search_filetype_html=HTML
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  2. src/go/doc/synopsis.go

    // preceded by exactly one uppercase letter, or at the first paragraph break.
    // The result string has no \n, \r, or \t characters and uses only single
    // spaces between words. If text starts with any of the [IllegalPrefixes],
    // the result is the empty string.
    func (p *Package) Synopsis(text string) string {
    	text = firstSentence(text)
    	lower := strings.ToLower(text)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

                logger.warn("Failed to delete all words.", response.getErrors().get(0));
                return false;
            }
            refresh();
            return true;
        }
    
        public boolean deleteDocumentWords() {
            final SuggestDeleteResponse response = suggester.indexer().deleteDocumentWords();
            if (response.hasError()) {
                logger.warn("Failed to delete document words.", response.getErrors().get(0));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/crypto/chacha20/chacha_generic.go

    	}
    	return c, nil
    }
    
    // The constant first 4 words of the ChaCha20 state.
    const (
    	j0 uint32 = 0x61707865 // expa
    	j1 uint32 = 0x3320646e // nd 3
    	j2 uint32 = 0x79622d32 // 2-by
    	j3 uint32 = 0x6b206574 // te k
    )
    
    const blockSize = 64
    
    // quarterRound is the core of ChaCha20. It shuffles the bits of 4 state words.
    // It's executed 4 times for each of the 20 ChaCha20 rounds, operating on all 16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 13.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/schema/flatbuffer_compatibility_test.cc

      // Check that the schemas conform and fail if they don't
      auto err = current_parser.ConformTo(base_parser);
      if (!err.empty()) {
        fprintf(stderr,
                "Schemas don't conform:\n%s\n"
                "In other words some change you made means that new parsers can't"
                "parse old files.\n",
                err.c_str());
        FAIL();
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 14:28:27 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. src/math/big/arith_s390x.s

    // point to same memory region, we can use a faster version of copy using only MVC here.
    // In the following implementation, we have three copy loops, each copying a word, 4 words, and
    // 32 words at a time.  Via benchmarking, this implementation is faster than calling runtime·memmove.
    copySetup:
    	ADD R12, R6
    	ADD R12, R8
    
    	CMPBGE R5, $4, mediumLoop
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  7. src/go/constant/value.go

    func MakeFromBytes(bytes []byte) Value {
    	words := make([]big.Word, (len(bytes)+(wordSize-1))/wordSize)
    
    	i := 0
    	var w big.Word
    	var s uint
    	for _, b := range bytes {
    		w |= big.Word(b) << s
    		if s += 8; s == wordSize*8 {
    			words[i] = w
    			i++
    			w = 0
    			s = 0
    		}
    	}
    	// store last word
    	if i < len(words) {
    		words[i] = w
    		i++
    	}
    	// remove leading 0's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/telemetry/counter/doc.go

    //     case of the "crash/crash" counter owned by the crashmonitor library. If
    //     the entity name itself contains a '/', that's ok: "cmd/go/flag" is fine.
    //
    //   - Words should be '-' separated, as in "gopls/completion/errors-latency"
    //
    //   - Histograms should use bucket names identifying upper bounds with '<'.
    //     For example given two counters "gopls/completion/latency:<50ms" and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  9. pkg/registry/core/service/allocator/bitmap.go

    // AllocationBitmap may not be modified while this loop is running.
    func (r *AllocationBitmap) ForEach(fn func(int)) {
    	r.lock.Lock()
    	defer r.lock.Unlock()
    
    	words := r.allocated.Bits()
    	for wordIdx, word := range words {
    		bit := 0
    		for word > 0 {
    			if (word & 1) != 0 {
    				fn((wordIdx * wordSize * 8) + bit)
    				word = word &^ 1
    			}
    			bit++
    			word = word >> 1
    		}
    	}
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 25 20:32:40 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. security/pkg/server/ca/authenticate/cert_authenticator.go

    	return ClientCertAuthenticatorType
    }
    
    // Authenticate extracts identities from presented client certificates. This
    // method assumes that certificate chain has been properly validated before
    // this method is called. In other words, this method does not do certificate
    // chain validation itself.
    func (cca *ClientCertAuthenticator) Authenticate(authCtx security.AuthContext) (*security.Caller, error) {
    	if authCtx.GrpcContext != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jul 19 02:12:12 UTC 2022
    - 3.1K bytes
    - Viewed (0)
Back to top