Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for ts (0.09 sec)

  1. src/net/http/client_test.go

    func testRedirectCookiesJar(t *testing.T, mode testMode) {
    	var ts *httptest.Server
    	ts = newClientServerTest(t, mode, echoCookiesRedirectHandler).ts
    	c := ts.Client()
    	c.Jar = new(TestJar)
    	u, _ := url.Parse(ts.URL)
    	c.Jar.SetCookies(u, []*Cookie{expectedCookies[0]})
    	resp, err := c.Get(ts.URL)
    	if err != nil {
    		t.Fatalf("Get: %v", err)
    	}
    	resp.Body.Close()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  2. src/net/http/fs_test.go

    func testServeIndexHtmlFS(t *testing.T, mode testMode) {
    	const want = "index.html says hello\n"
    	ts := newClientServerTest(t, mode, FileServer(Dir("."))).ts
    	defer ts.Close()
    
    	for _, path := range []string{"/testdata/", "/testdata/index.html"} {
    		res, err := ts.Client().Get(ts.URL + path)
    		if err != nil {
    			t.Fatal(err)
    		}
    		b, err := io.ReadAll(res.Body)
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 23:39:44 UTC 2024
    - 49.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    		}
    		ts[0].Nsec = 0
    		if ts[1].Nsec >= 5e8 {
    			ts[1].Sec++
    		}
    		ts[1].Nsec = 0
    
    		// Not as efficient as it could be because Timespec and
    		// Timeval have different types in the different OSes
    		tv := []Timeval{
    			NsecToTimeval(TimespecToNsec(ts[0])),
    			NsecToTimeval(TimespecToNsec(ts[1])),
    		}
    		return Lutimes(path, tv)
    	}
    	return UtimesNano(path, ts)
    }
    
    // End UtimesNanoAt
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    type Timespec struct {
    	Sec  int64
    	Nsec int64
    }
    
    func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
    
    func NsecToTimespec(nsec int64) (ts Timespec) {
    	ts.Sec = nsec / 1e9
    	ts.Nsec = nsec % 1e9
    	return
    }
    
    // TODO(brainman): fix all needed for net
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  5. src/reflect/type.go

    			t := st.common()
    			if haveIdenticalUnderlyingType(&typ.Type, t, true) {
    				return toType(t)
    			}
    		}
    	}
    
    	addToCache := func(t Type) Type {
    		var ts []Type
    		if ti, ok := structLookupCache.m.Load(hash); ok {
    			ts = ti.([]Type)
    		}
    		structLookupCache.m.Store(hash, append(ts, t))
    		return t
    	}
    
    	// Look in known types.
    	for _, t := range typesByString(str) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  6. src/time/time.go

    		return t.ext > u.ext
    	}
    	ts := t.sec()
    	us := u.sec()
    	return ts > us || ts == us && t.nsec() > u.nsec()
    }
    
    // Before reports whether the time instant t is before u.
    func (t Time) Before(u Time) bool {
    	if t.wall&u.wall&hasMonotonic != 0 {
    		return t.ext < u.ext
    	}
    	ts := t.sec()
    	us := u.sec()
    	return ts < us || ts == us && t.nsec() < u.nsec()
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go

    func impl_utimensat(dirfd int, path string, ts *[2]Timespec, flags int) (err error) {
    	var _p0 *byte
    	_p0, err = BytePtrFromString(path)
    	if err != nil {
    		return
    	}
    	runtime.EnterSyscall()
    	r0, e2, e1 := CallLeFuncWithErr(GetZosLibVec()+SYS___UTIMENSAT_A<<4, uintptr(dirfd), uintptr(unsafe.Pointer(_p0)), uintptr(unsafe.Pointer(ts)), uintptr(flags))
    	runtime.ExitSyscall()
    	if int64(r0) == -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 88.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// Use the finished time of the latest exited container as the start point to calculate whether to do back-off.
    	ts := cStatus.FinishedAt
    	// backOff requires a unique key to identify the container.
    	key := getStableKey(pod, container)
    	if backOff.IsInBackOffSince(key, ts) {
    		if containerRef, err := kubecontainer.GenerateContainerRef(pod, container); err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  9. src/encoding/json/decode_test.go

    			Field:  "PP.T.Y",
    			Type:   reflect.TypeFor[int](),
    			Offset: 29,
    		},
    	},
    	{
    		CaseName: Name(""),
    		in:       `{"Ts": [{"Y": 1}, {"Y": 2}, {"Y": "bad-type"}]}`,
    		ptr:      new(PP),
    		err: &UnmarshalTypeError{
    			Value:  "string",
    			Struct: "T",
    			Field:  "Ts.Y",
    			Type:   reflect.TypeFor[int](),
    			Offset: 29,
    		},
    	},
    	// #14702
    	{
    		CaseName: Name(""),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 16:40:14 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/sidecar_simulation_test.go

    	}
    	expectedTLSContext := func(filterChain *listener.FilterChain) error {
    		tlsContext := &tls.DownstreamTlsContext{}
    		ts := filterChain.GetTransportSocket().GetTypedConfig()
    		if ts == nil {
    			return fmt.Errorf("expected transport socket for chain %v", filterChain.GetName())
    		}
    		if err := ts.UnmarshalTo(tlsContext); err != nil {
    			return err
    		}
    		commonTLSContext := tlsContext.CommonTlsContext
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
Back to top