Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 8,625 for tims (0.13 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/apps/v1/statefulsetcondition.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the LastTransitionTime field is set to the value of the last call.
    func (b *StatefulSetConditionApplyConfiguration) WithLastTransitionTime(value metav1.Time) *StatefulSetConditionApplyConfiguration {
    	b.LastTransitionTime = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta1/statefulsetcondition.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the LastTransitionTime field is set to the value of the last call.
    func (b *StatefulSetConditionApplyConfiguration) WithLastTransitionTime(value metav1.Time) *StatefulSetConditionApplyConfiguration {
    	b.LastTransitionTime = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/client-go/applyconfigurations/apps/v1beta2/daemonsetcondition.go

    // and returns the receiver, so that objects can be built by chaining "With" function invocations.
    // If called multiple times, the LastTransitionTime field is set to the value of the last call.
    func (b *DaemonSetConditionApplyConfiguration) WithLastTransitionTime(value metav1.Time) *DaemonSetConditionApplyConfiguration {
    	b.LastTransitionTime = &value
    	return b
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.7K bytes
    - Viewed (0)
  4. src/go/doc/testdata/benchmark.go

    // license that can be found in the LICENSE file.
    
    package testing
    
    import (
    	"flag"
    	"fmt"
    	"os"
    	"runtime"
    	"time"
    )
    
    var matchBenchmarks = flag.String("test.bench", "", "regular expression to select benchmarks to run")
    var benchTime = flag.Duration("test.benchtime", 1*time.Second, "approximate run time for each benchmark")
    
    // An internal type but exported because it is cross-package; part of the implementation
    // of go test.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/net/nettest/conntest.go

    	c1.SetWriteDeadline(time.Now().Add(time.Millisecond))
    	for i := 0; i < 10; i++ {
    		wg.Add(1)
    		go func() {
    			defer wg.Done()
    
    			b1 := make([]byte, 1024)
    			b2 := make([]byte, 1024)
    			for j := 0; j < 100; j++ {
    				_, err := c1.Write(b1)
    				copy(b1, b2) // Mutate b1 to trigger potential race
    				if err != nil {
    					checkForTimeoutError(t, err)
    					c1.SetWriteDeadline(time.Now().Add(time.Millisecond))
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. testing/performance/README.md

    ### Metrics collected
    
    - Total build execution time.
    - Build configuration time.
    - Task execution time.
    - Heap consumption at the end of the build.
    - Total heap usage during the build
    
    ### Report
    
    A `performance:report` task generates a static HTML report from the contents of the database in `~/.gradle-performance-test-data`. This report allows the results over
    time to be visualized.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3K bytes
    - Viewed (0)
  7. pilot/pkg/model/jwks_resolver.go

    type jwtPubKeyEntry struct {
    	pubKey string
    
    	// The last success refreshed time of the pubKey.
    	lastRefreshedTime time.Time
    
    	// Cached item's last used time, which is set in GetPublicKey.
    	lastUsedTime time.Time
    
    	// OpenID Discovery web request timeout
    	timeout time.Duration
    }
    
    // jwtKey is a key in the JwksResolver keyEntries map.
    type jwtKey struct {
    	jwksURI string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/admission/configuration/validating_webhook_manager_test.go

    	// Wait up to 10s for the notification to be delivered.
    	// (on my system this takes < 2ms)
    	startTime := time.Now()
    	configurations := manager.Webhooks()
    	for len(configurations) == 0 {
    		if time.Since(startTime) > 10*time.Second {
    			break
    		}
    		time.Sleep(time.Millisecond)
    		configurations = manager.Webhooks()
    	}
    
    	// verify presence
    	if len(configurations) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 12 15:20:14 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. tests/integration/telemetry/api/dashboard_test.go

    	// Spread out over 20s so rate() queries will behave correctly
    	ticker := time.NewTicker(time.Second)
    	times := 0
    	for {
    		select {
    		case <-ticker.C:
    			times++
    			scopes.Framework.Infof("sending traffic %v", times)
    			for _, ing := range ingr {
    				hosts, ports := ing.TCPAddresses()
    				host := hosts[0]
    				port := ports[0]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/endpoints/filters/request_received_time_test.go

    package filters
    
    import (
    	"net/http"
    	"net/http/httptest"
    	"testing"
    	"time"
    
    	"k8s.io/apiserver/pkg/endpoints/request"
    	testingclock "k8s.io/utils/clock/testing"
    )
    
    func TestWithRequestReceivedTimestamp(t *testing.T) {
    	receivedTimestampExpected := time.Now()
    
    	var (
    		callCount            int
    		receivedTimestampGot time.Time
    		ok                   bool
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 15 09:52:18 UTC 2021
    - 2K bytes
    - Viewed (0)
Back to top