Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 204 for Words (0.12 sec)

  1. src/sync/once.go

    	done atomic.Uint32
    	m    Mutex
    }
    
    // Do calls the function f if and only if Do is being called for the
    // first time for this instance of [Once]. In other words, given
    //
    //	var once Once
    //
    // if once.Do(f) is called multiple times, only the first call will invoke f,
    // even if f has a different value in each invocation. A new instance of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/main/resources/fess_label_ru.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
    - 45.6K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/mutator/ClearArtifactTransformCacheWithoutInstrumentedJarsMutator.groovy

     *
     * Since buildscript classpath instrumentation also uses artifact transforms, we can avoid
     * re-instrumenting jars by applying this mutator.
     *
     * In other words, this mutator can be applied to a scenario that tests performance of artifact transforms,
     * but does not want to test impact of re-instrumenting jars.
     *
     * This mutator could be also moved to the gradle-profiler.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 12:30:06 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. .github/bot_config.yml

    compiler_assignees:
       - joker-eph
       - sanjoy
    # filesystem path
    filesystem_path:
       - tensorflow/c/experimental/filesystem
    # security path
    security_path:
       - tensorflow/security
    # words checklist
    segfault_memory:
       - segfault
       - memory leaks
    # assignees
    filesystem_security_assignee:
       - mihaimaruseac
       
    # Cuda Comment
    cuda_comment: >
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 03 04:55:57 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

                    buf.append(' ');
                }
                prev = c;
            }
            final String[] words = buf.toString().trim().split(" ");
            try {
                final SuggestItem item =
                        contentsParser.parseSearchWords(words, null, fields, tags, roles, num, readingConverter, normalizer, analyzer, langs);
                if (item == null) {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  6. src/unicode/utf16/utf16.go

    	if r < surrSelf || r > maxRune {
    		return replacementChar, replacementChar
    	}
    	r -= surrSelf
    	return surr1 + (r>>10)&0x3ff, surr2 + r&0x3ff
    }
    
    // RuneLen returns the number of 16-bit words in the UTF-16 encoding of the rune.
    // It returns -1 if the rune is not a valid value to encode in UTF-16.
    func RuneLen(r rune) int {
    	switch {
    	case 0 <= r && r < surr1, surr3 <= r && r < surrSelf:
    		return 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 19:08:48 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. src/crypto/md5/md5block_arm.s

    // 8(FP) is p.len
    //12(FP) is p.cap
    //
    // Stack frame
    #define p_end	end-4(SP)	// pointer to the end of data
    #define p_data	data-8(SP)	// current data pointer
    #define buf	buffer-(8+4*16)(SP)	//16 words temporary buffer
    		// 3 words at 4..12(R13) for called routine parameters
    
    TEXT	·block(SB), NOSPLIT, $84-16
    	MOVW	p+4(FP), Rdata	// pointer to the data
    	MOVW	p_len+8(FP), Rt0	// number of bytes
    	ADD	Rdata, Rt0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/cluster_scoping_pass.cc

      node->AddAttr(kXlaInternalScopeAttr, scope);
    }
    
    // NB! We append a new scope as suffix to the _XlaInternalScope attribute
    // instead of overriding the old value.  In other words, appending scope B to
    // scope A creates the conjunction of the scopes A and B (i.e, A & B) and,
    // in effect, the node gets both the old and new scopes.  As a unique scope
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/OrderingTest.java

          <T extends @Nullable Object> Scenario<?> mutate(Scenario<T> scenario) {
            List<Iterable<T>> words = Lists.newArrayList();
            words.add(Collections.<T>emptyList());
            for (T t : scenario.strictlyOrderedList) {
              words.add(Arrays.asList(t));
              for (T s : scenario.strictlyOrderedList) {
                words.add(Arrays.asList(t, s));
              }
            }
            return new Scenario<Iterable<T>>(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Mar 07 18:34:03 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  10. src/go/doc/comment/testdata_test.go

    	"path/filepath"
    	"strings"
    	"testing"
    )
    
    func TestTestdata(t *testing.T) {
    	files, _ := filepath.Glob("testdata/*.txt")
    	if len(files) == 0 {
    		t.Fatalf("no testdata")
    	}
    	var p Parser
    	p.Words = map[string]string{
    		"italicword": "",
    		"linkedword": "https://example.com/linkedword",
    	}
    	p.LookupPackage = func(name string) (importPath string, ok bool) {
    		if name == "comment" {
    			return "go/doc/comment", true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top