Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 444 for ts (0.03 sec)

  1. src/runtime/defs_openbsd_arm.go

    	ss_size  uintptr
    	ss_flags int32
    }
    
    type timespec struct {
    	tv_sec    int64
    	tv_nsec   int32
    	pad_cgo_0 [4]byte
    }
    
    //go:nosplit
    func (ts *timespec) setNsec(ns int64) {
    	ts.tv_sec = int64(timediv(ns, 1e9, &ts.tv_nsec))
    }
    
    type timeval struct {
    	tv_sec    int64
    	tv_usec   int32
    	pad_cgo_0 [4]byte
    }
    
    func (tv *timeval) set_usec(x int32) {
    	tv.tv_usec = x
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 17:31:23 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. src/time/format_test.go

    		{math.MaxInt64, math.MaxInt64}, // -292277022365-05-08T08:17:07Z
    	} {
    		f.Add(ts[0], ts[1], true, false, 0)
    		f.Add(ts[0], ts[1], false, true, 0)
    		for _, offset := range []int{0, 60, 60 * 60, 99*60*60 + 99*60, 123456789} {
    			f.Add(ts[0], ts[1], false, false, -offset)
    			f.Add(ts[0], ts[1], false, false, +offset)
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  3. src/runtime/defs_linux_ppc64.go

    )
    
    //struct Sigset {
    //	uint64	sig[1];
    //};
    //typedef uint64 Sigset;
    
    type timespec struct {
    	tv_sec  int64
    	tv_nsec int64
    }
    
    //go:nosplit
    func (ts *timespec) setNsec(ns int64) {
    	ts.tv_sec = ns / 1e9
    	ts.tv_nsec = ns % 1e9
    }
    
    type timeval struct {
    	tv_sec  int64
    	tv_usec int64
    }
    
    func (tv *timeval) set_usec(x int32) {
    	tv.tv_usec = int64(x)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/proxy/upgradeaware_test.go

    				if err != nil {
    					t.Errorf("https (invalid hostname): proxy_test: %v", err)
    				}
    				ts := httptest.NewUnstartedServer(h)
    				ts.TLS = &tls.Config{
    					Certificates: []tls.Certificate{cert},
    					NextProtos:   []string{"http2", "http/1.1"},
    				}
    				ts.StartTLS()
    				return ts
    			},
    			ProxyTransport: utilnet.SetTransportDefaults(&http.Transport{TLSClientConfig: &tls.Config{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 10 07:29:34 UTC 2023
    - 39.4K bytes
    - Viewed (0)
  5. src/runtime/defs_linux_arm64.go

    	_SIGEV_THREAD_ID = 0x4
    
    	_AF_UNIX    = 0x1
    	_SOCK_DGRAM = 0x2
    )
    
    type timespec struct {
    	tv_sec  int64
    	tv_nsec int64
    }
    
    //go:nosplit
    func (ts *timespec) setNsec(ns int64) {
    	ts.tv_sec = ns / 1e9
    	ts.tv_nsec = ns % 1e9
    }
    
    type timeval struct {
    	tv_sec  int64
    	tv_usec int64
    }
    
    func (tv *timeval) set_usec(x int32) {
    	tv.tv_usec = int64(x)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. pilot/pkg/config/monitor/monitor_test.go

    	}).Should(HaveLen(0))
    }
    
    func TestMonitorFileSnapshot(t *testing.T) {
    	ts := &testState{
    		ConfigFiles: map[string][]byte{"gateway.yml": []byte(statusRegressionYAML)},
    	}
    
    	ts.testSetup(t)
    
    	store := memory.Make(collection.SchemasFor(collections.Gateway))
    	fileWatcher := NewFileSnapshot(ts.rootPath, collection.SchemasFor(), "foo")
    
    	mon := NewMonitor("", store, fileWatcher.ReadConfigFiles, "")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/telemetry/README.md

    This repository uses [eslint](https://eslint.org/) to format TS files,
    [stylelint](https://stylelint.io/) to format CSS files, and
    [prettier](https://prettier.io/) to format TS, CSS, Markdown, and YAML files.
    
    See the style guides:
    
    - [TypeScript](https://google.github.io/styleguide/tsguide.html)
    - [CSS](https://go.dev/wiki/CSSStyleGuide)
    
    It is encouraged that all TS and CSS code be run through formatters before
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  8. src/runtime/defs1_netbsd_arm64.go

    }
    
    type stackt struct {
    	ss_sp    uintptr
    	ss_size  uintptr
    	ss_flags int32
    }
    
    type timespec struct {
    	tv_sec  int64
    	tv_nsec int64
    }
    
    func (ts *timespec) setNsec(ns int64) {
    	ts.tv_sec = ns / 1e9
    	ts.tv_nsec = ns % 1e9
    }
    
    type timeval struct {
    	tv_sec  int64
    	tv_usec int32
    	_       [4]byte // EABI
    }
    
    func (tv *timeval) set_usec(x int32) {
    	tv.tv_usec = x
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  9. tools/bug-report/pkg/processlog/processlog.go

    		matches := ztunnelLogPattern.FindStringSubmatch(line)
    		if len(matches) < 5 {
    			return nil, "", "", false
    		}
    		lv = matches[1:]
    	}
    	ts, err := time.Parse(time.RFC3339Nano, lv[0])
    	if err != nil {
    		return nil, "", "", false
    	}
    	timeStamp = &ts
    	switch strings.ToLower(lv[1]) {
    	case levelFatal, levelError, levelWarn, levelInfo, levelDebug, levelTrace:
    		level = lv[1]
    	default:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 19 21:44:33 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. src/compress/gzip/example_test.go

    		if err != nil {
    			log.Fatal(err)
    		}
    
    		// Just output the data for the example.
    		if _, err := io.Copy(os.Stdout, zr); err != nil {
    			log.Fatal(err)
    		}
    	})
    	ts := httptest.NewServer(handler)
    	defer ts.Close()
    
    	// The remainder is the example code.
    
    	// The data we want to compress, as an io.Reader
    	dataReader := strings.NewReader(testdata)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 22 16:24:14 UTC 2022
    - 4.8K bytes
    - Viewed (0)
Back to top