Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 417 for ts (0.06 sec)

  1. src/net/http/httptest/server_test.go

    	// in the exported fields of Server.
    	"NewServerManual": func(h http.Handler) *Server {
    		ts := &Server{Listener: newLocalListener(), Config: &http.Server{Handler: h}}
    		ts.Start()
    		return ts
    	},
    	"NewTLSServerManual": func(h http.Handler) *Server {
    		ts := &Server{Listener: newLocalListener(), Config: &http.Server{Handler: h}}
    		ts.StartTLS()
    		return ts
    	},
    }
    
    func TestServer(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 16:57:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    			io.WriteString(w, r.RemoteAddr)
    		}), func(ts *httptest.Server) {
    			ts.Config.ReadHeaderTimeout = readHeaderTimeout
    			ts.Config.IdleTimeout = 2 * readHeaderTimeout
    		})
    		defer cst.close()
    		ts := cst.ts
    		t.Logf("ReadHeaderTimeout = %v", ts.Config.ReadHeaderTimeout)
    		t.Logf("IdleTimeout = %v", ts.Config.IdleTimeout)
    		c := ts.Client()
    
    		get := func() (string, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. pilot/pkg/config/monitor/file_snapshot_test.go

    }
    
    type testState struct {
    	ConfigFiles map[string][]byte
    	rootPath    string
    }
    
    func (ts *testState) testSetup(t *testing.T) {
    	var err error
    
    	ts.rootPath = t.TempDir()
    
    	for name, content := range ts.ConfigFiles {
    		err = os.WriteFile(filepath.Join(ts.rootPath, name), content, 0o600)
    		if err != nil {
    			t.Fatal(err)
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. src/runtime/cgo/gcc_linux_amd64.c

    	pthread_sigmask(SIG_SETMASK, &oset, nil);
    
    	if (err != 0) {
    		fatalf("pthread_create failed: %s", strerror(err));
    	}
    }
    
    extern void crosscall1(void (*fn)(void), void (*setg_gcc)(void*), void *g);
    static void*
    threadentry(void *v)
    {
    	ThreadStart ts;
    
    	ts = *(ThreadStart*)v;
    	_cgo_tsan_acquire();
    	free(v);
    	_cgo_tsan_release();
    
    	crosscall1(ts.fn, setg_gcc, (void*)ts.g);
    	return nil;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 22:06:46 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. src/runtime/cgo/gcc_windows_386.c

    {
    	setg_gcc = setg;
    	tls_g = (DWORD *)tlsg;
    }
    
    void
    _cgo_sys_thread_start(ThreadStart *ts)
    {
    	_cgo_beginthread(threadentry, ts);
    }
    
    extern void crosscall1(void (*fn)(void), void (*setg_gcc)(void*), void *g);
    static void
    threadentry(void *v)
    {
    	ThreadStart ts;
    
    	ts = *(ThreadStart*)v;
    	free(v);
    
    	// minit queries stack bounds from the OS.
    
    	/*
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 12 03:56:58 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. src/internal/trace/traceviewer/emitter.go

    }
    
    func (e *Emitter) HeapAlloc(ts time.Duration, v uint64) {
    	e.heapStats.heapAlloc = v
    	e.emitHeapCounters(ts)
    }
    
    func (e *Emitter) Focus(id uint64) {
    	e.focusResource = id
    }
    
    func (e *Emitter) GoroutineTransition(ts time.Duration, from, to GState) {
    	e.gstates[from]--
    	e.gstates[to]++
    	if e.prevGstates == e.gstates {
    		return
    	}
    	if e.tsWithinRange(ts) {
    		e.OptionalEvent(&format.Event{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:29:58 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  7. src/go/types/sizes_test.go

    	if got := sizes.Sizeof(ts); got != 20 {
    		t.Errorf("Sizeof(%v) with WordSize 4 = %d want 20", ts, got)
    	}
    	sizes = types.StdSizes{WordSize: 8, MaxAlign: 8}
    	if got := sizes.Sizeof(ts); got != 40 {
    		t.Errorf("Sizeof(%v) with WordSize 8 = %d want 40", ts, got)
    	}
    }
    
    // go.dev/issue/16464
    func TestAlignofNaclSlice(t *testing.T) {
    	const src = `
    package main
    
    var s struct {
    	x *int
    	y []byte
    }
    `
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 21:00:48 UTC 2023
    - 4K bytes
    - Viewed (0)
  8. src/runtime/cgo/gcc_freebsd.c

    	pthread_sigmask(SIG_SETMASK, &oset, nil);
    
    	if (err != 0) {
    		fatalf("pthread_create failed: %s", strerror(err));
    	}
    }
    
    extern void crosscall1(void (*fn)(void), void (*setg_gcc)(void*), void *g);
    static void*
    threadentry(void *v)
    {
    	ThreadStart ts;
    
    	ts = *(ThreadStart*)v;
    	free(v);
    
    	crosscall1(ts.fn, setg_gcc, ts.g);
    	return nil;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 03:40:00 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. src/runtime/cgo/gcc_solaris_amd64.c

    static void*
    threadentry(void *v)
    {
    	ThreadStart ts;
    
    	ts = *(ThreadStart*)v;
    	free(v);
    
    	crosscall1(ts.fn, setg_gcc, (void*)ts.g);
    	return nil;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 14:57:16 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. src/runtime/cgo/gcc_dragonfly_amd64.c

    	pthread_sigmask(SIG_SETMASK, &oset, nil);
    
    	if (err != 0) {
    		fatalf("pthread_create failed: %s", strerror(err));
    	}
    }
    
    extern void crosscall1(void (*fn)(void), void (*setg_gcc)(void*), void *g);
    static void*
    threadentry(void *v)
    {
    	ThreadStart ts;
    
    	ts = *(ThreadStart*)v;
    	free(v);
    
    	crosscall1(ts.fn, setg_gcc, (void*)ts.g);
    	return nil;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 03:39:26 UTC 2023
    - 1.2K bytes
    - Viewed (0)
Back to top