Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 930 for sloc (0.08 sec)

  1. src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java

                    "aaa");
            assertQueryBuilder(MatchPhraseQueryBuilder.class,
                    "{\"match_phrase\":{\"title\":{\"query\":\"aaa\",\"slop\":0,\"zero_terms_query\":\"NONE\",\"boost\":1.0}}}", //
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. src/internal/concurrent/hashtriemap.go

    	var i *indirect[K, V]
    	var hashShift uint
    	var slot *atomic.Pointer[node[K, V]]
    	var n *node[K, V]
    	for {
    		// Find the key or a candidate location for insertion.
    		i = ht.root
    		hashShift = 8 * goarch.PtrSize
    		haveInsertPoint := false
    		for hashShift != 0 {
    			hashShift -= nChildrenLog2
    
    			slot = &i.children[(hash>>hashShift)&nChildrenMask]
    			n = slot.Load()
    			if n == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 16:01:55 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. test/fixedbugs/bug369.dir/main.go

    package main
    
    import (
    	"flag"
    	"os"
    	"runtime"
    	"testing"
    
    	fast "./fast"
    	slow "./slow"
    )
    
    var buf = make([]byte, 1048576)
    
    func BenchmarkFastNonASCII(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		fast.NonASCII(buf, 0)
    	}
    }
    
    func BenchmarkSlowNonASCII(b *testing.B) {
    	for i := 0; i < b.N; i++ {
    		slow.NonASCII(buf, 0)
    	}
    }
    
    func main() {
    	testing.Init()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 19:54:30 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  4. src/runtime/cgo/gcc_android.c

    #define TLS_SLOT_APP 2
    
    // inittls allocates a thread-local storage slot for g.
    //
    // It finds the first available slot using pthread_key_create and uses
    // it as the offset value for runtime.tls_g.
    static void
    inittls(void **tlsg, void **tlsbase)
    {
    	pthread_key_t k;
    	int i, err;
    	void *handle, *get_ver, *off;
    
    	// Check for Android Q where we can use the free TLS_SLOT_APP slot.
    	handle = dlopen("libc.so", RTLD_LAZY);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 09 23:17:17 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/schedule_test.go

    package ssa
    
    import (
    	"cmd/compile/internal/types"
    	"testing"
    )
    
    func TestSchedule(t *testing.T) {
    	c := testConfig(t)
    	cases := []fun{
    		c.Fun("entry",
    			Bloc("entry",
    				Valu("mem0", OpInitMem, types.TypeMem, 0, nil),
    				Valu("ptr", OpConst64, c.config.Types.Int64, 0xABCD, nil),
    				Valu("v", OpConst64, c.config.Types.Int64, 12, nil),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 01:46:00 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  6. src/log/slog/logger.go

    //
    //	slog.SetLogLoggerLevel(slog.LevelDebug)
    //
    // calls to [Debug] will be passed to the log.Logger.
    //
    // After [SetDefault] is called, calls to the default [log.Logger] are passed to the
    // slog default handler. In that mode,
    // SetLogLoggerLevel sets the level at which those calls are logged.
    // That is, after calling
    //
    //	slog.SetLogLoggerLevel(slog.LevelDebug)
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 08 18:26:18 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/api/v1/testdata/prepare_to_library.mlir

    \220\22} : (tensor<1120x?xi32>) -> tensor<2xi32> loc(#loc12)\0A    return %1#1, %1#2, %2, %3 : tensor<1x1120x?xi32>, tensor<1x1120x?xi32>, tensor<1120x?xi32>, tensor<2xi32> loc(#loc9)\0A  } loc(#loc9)\0A} loc(#loc)\0A#loc = loc(unknown)\0A#loc4 = loc(\22Split:\22)\0A#loc5 = loc(\22split\22)\0A#loc6 = loc(\22Reshape_5\22)\0A#loc7 = loc(\22Shape:\22)\0A#loc8 = loc(\22Shape_4\22)\0A#loc10 = loc(fused[#loc4, #loc5])\0A#loc11 = loc(fused[#loc1, #loc6])\0A#loc12 = loc(fused[#loc7, #loc8])\0A", recv_key = "hos...
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jan 31 23:44:50 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. src/runtime/tls_arm64.s

    	AND	$0xfffffffffffffff8, R0
    #endif
    	MOVD	runtime·tls_g(SB), R27
    	MOVD	g, (R0)(R27)
    
    nocgo:
    	RET
    
    #ifdef TLSG_IS_VARIABLE
    #ifdef GOOS_android
    // Use the free TLS_SLOT_APP slot #2 on Android Q.
    // Earlier androids are set up in gcc_android.c.
    DATA runtime·tls_g+0(SB)/8, $16
    #endif
    GLOBL runtime·tls_g+0(SB), NOPTR, $8
    #else
    GLOBL runtime·tls_g+0(SB), TLSBSS, $8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 19 00:41:03 UTC 2021
    - 1.2K bytes
    - Viewed (0)
  9. guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/testers/Platform.java

      // Use fewer steps in the ListIteratorTester in ListListIteratorTester because it's slow in prod
      // mode.
      static int listListIteratorTesterNumIterations() {
        // TODO(hhchan): It's 4 in java.  Figure out why even 3 is too slow in prod mode.
        return 2;
      }
    
      // Use fewer steps in the IteratorTester in CollectionIteratorTester because it's slow in prod
      // mode.
      static int collectionIteratorTesterNumIterations() {
        return 3;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Oct 04 15:31:40 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/test_finished_subtest_goroutines.txt

    # Regression test for https://golang.org/issue/45127:
    # Goroutines for completed parallel subtests should exit immediately,
    # not block until earlier subtests have finished.
    
    [short] skip
    
    ! go test .
    stdout 'panic: slow failure'
    ! stdout '\[chan send'
    
    -- go.mod --
    module golang.org/issue45127
    
    go 1.16
    -- issue45127_test.go --
    package main
    
    import (
    	"fmt"
    	"runtime"
    	"runtime/debug"
    	"sync"
    	"testing"
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 19 17:34:25 UTC 2021
    - 1K bytes
    - Viewed (0)
Back to top