Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 48 for t0 (0.02 sec)

  1. pilot/pkg/config/kube/gateway/controller.go

    // Any status updates required will be enqueued as well.
    func (c *Controller) Reconcile(ps *model.PushContext) error {
    	t0 := time.Now()
    	defer func() {
    		log.Debugf("reconcile complete in %v", time.Since(t0))
    	}()
    	gatewayClass := c.cache.List(gvk.GatewayClass, metav1.NamespaceAll)
    	gateway := c.cache.List(gvk.KubernetesGateway, metav1.NamespaceAll)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportIntegrationTest.groovy

    + numbers
          | Type:   \tNumbers
          | Creator: \tnumbers(Numbers) { ... } @ build.gradle line 28, column 5
        + threshold
              | Type:   \tdouble
              | Value:  \t0.8
              | Creator: \tnumbers(Numbers) { ... } @ build.gradle line 28, column 5
        + value
              | Type:   \tjava.lang.Integer
              | Value:  \t5
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 13:32:55 UTC 2024
    - 22K bytes
    - Viewed (0)
  3. pkg/kube/client.go

    	t0 := time.Now()
    	max := time.Millisecond * 100
    	delay := time.Millisecond
    	f := func() bool {
    		for _, syncFunc := range cacheSyncs {
    			if !syncFunc() {
    				return false
    			}
    		}
    		return true
    	}
    	attempt := 0
    	defer func() {
    		if r {
    			log.WithLabels("name", name, "attempt", attempt, "time", time.Since(t0)).Debugf("sync complete")
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. src/go/types/check.go

    	if a[0].mode == invalid {
    		return
    	}
    	t0, t1 := a[0].typ, a[1].typ
    	assert(isTyped(t0) && isTyped(t1) && (allBoolean(t1) || t1 == universeError))
    	if m := check.Types; m != nil {
    		for {
    			tv := m[x]
    			assert(tv.Type != nil) // should have been recorded already
    			pos := x.Pos()
    			tv.Type = NewTuple(
    				NewVar(pos, check.pkg, "", t0),
    				NewVar(pos, check.pkg, "", t1),
    			)
    			m[x] = tv
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. src/text/tabwriter/tabwriter_test.go

    	},
    
    	{
    		"14",
    		1, 0, 2, ' ', AlignRight,
    		".0\t.3\t2.4\t-5.1\t\n" +
    			"23.0\t12345678.9\t2.4\t-989.4\t\n" +
    			"5.1\t12.0\t2.4\t-7.0\t\n" +
    			".0\t0.0\t332.0\t8908.0\t\n" +
    			".0\t-.3\t456.4\t22.1\t\n" +
    			".0\t1.2\t44.4\t-13.3\t\t",
    
    		"    .0          .3    2.4    -5.1\n" +
    			"  23.0  12345678.9    2.4  -989.4\n" +
    			"   5.1        12.0    2.4    -7.0\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 16:46:34 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. src/time/tick_test.go

    	}, {
    		count: 8,
    		delta: 1 * Second,
    	}} {
    		count, delta := test.count, test.delta
    		ticker := NewTicker(delta)
    		t0 := Now()
    		for range count / 2 {
    			<-ticker.C
    		}
    		ticker.Reset(delta * 2)
    		for range count - count/2 {
    			<-ticker.C
    		}
    		ticker.Stop()
    		t1 := Now()
    		dt := t1.Sub(t0)
    		target := 3 * delta * Duration(count/2)
    		slop := target * 3 / 10
    		if dt < target-slop || dt > target+slop {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. pilot/pkg/xds/discovery.go

    		envoyfilter.RecordMetrics()
    	}
    	// PushContext is reset after a config change. Previous status is
    	// saved.
    	t0 := time.Now()
    	versionLocal := s.NextVersion()
    	push, err := s.initPushContext(req, oldPushContext, versionLocal)
    	if err != nil {
    		return
    	}
    	initContextTime := time.Since(t0)
    	log.Debugf("InitContext %v for push took %s", versionLocal, initContextTime)
    	pushContextInitTime.Record(initContextTime.Seconds())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 20:21:09 UTC 2024
    - 19K bytes
    - Viewed (0)
  8. src/internal/trace/event.go

    // machine. This is because the system clock was not used at all
    // to collect those timestamps.
    type Time int64
    
    // Sub subtracts t0 from t, returning the duration in nanoseconds.
    func (t Time) Sub(t0 Time) time.Duration {
    	return time.Duration(int64(t) - int64(t0))
    }
    
    // Metric provides details about a Metric event.
    type Metric struct {
    	// Name is the name of the sampled metric.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 12:39:00 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  9. src/go/internal/gcimporter/gcimporter_test.go

    	}
    	return outname
    }
    
    func testPath(t *testing.T, path, srcDir string) *types.Package {
    	t0 := time.Now()
    	fset := token.NewFileSet()
    	pkg, err := Import(fset, make(map[string]*types.Package), path, srcDir, nil)
    	if err != nil {
    		t.Errorf("testPath(%s): %s", path, err)
    		return nil
    	}
    	t.Logf("testPath(%s): %v", path, time.Since(t0))
    	return pkg
    }
    
    var pkgExts = [...]string{".a", ".o"} // keep in sync with gcimporter.go
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go

    	SizeofCmsghdr         = 0x10
    )
    
    const (
    	SizeofSockFprog = 0x10
    )
    
    type PtraceRegs struct {
    	Pc  uint64
    	Ra  uint64
    	Sp  uint64
    	Gp  uint64
    	Tp  uint64
    	T0  uint64
    	T1  uint64
    	T2  uint64
    	S0  uint64
    	S1  uint64
    	A0  uint64
    	A1  uint64
    	A2  uint64
    	A3  uint64
    	A4  uint64
    	A5  uint64
    	A6  uint64
    	A7  uint64
    	S2  uint64
    	S3  uint64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top