Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 430 for tims (0.07 sec)

  1. pkg/kubelet/stats/cri_stats_provider_test.go

    	c9 := p6.Containers[0]
    	assert.Equal(cName9, c9.Name)
    	assert.Equal(container9.CreatedAt, c9.StartTime.UnixNano())
    	assert.NotNil(c9.CPU.Time)
    	assert.Equal(containerStats9.Cpu.Timestamp, p6.CPU.Time.UnixNano())
    	assert.NotNil(c9.Memory.Time)
    	assert.Equal(containerStats9.Memory.Timestamp, p6.Memory.Time.UnixNano())
    }
    
    func TestCRIImagesFsStats(t *testing.T) {
    	ctx := context.Background()
    	var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    			expectedSetCost:  4,
    		},
    		{
    			name:             "date-time array with all",
    			schemaGenerator:  genArrayWithRule("date-time", "self.all(x, true)"),
    			expectedCalcCost: 428963,
    			setMaxElements:   25,
    			expectedSetCost:  77,
    		},
    		{
    			name:             "index of date-time array",
    			schemaGenerator:  genArrayWithRule("date-time", "self[2].getMinutes() == 45"),
    			expectedCalcCost: 4,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. pkg/kubelet/eviction/helpers.go

    				time:      nodeFs.Time,
    			}
    		}
    		if nodeFs.InodesFree != nil && nodeFs.Inodes != nil {
    			result[evictionapi.SignalNodeFsInodesFree] = signalObservation{
    				available: resource.NewQuantity(int64(*nodeFs.InodesFree), resource.DecimalSI),
    				capacity:  resource.NewQuantity(int64(*nodeFs.Inodes), resource.DecimalSI),
    				time:      nodeFs.Time,
    			}
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/crdclient/types.gen.go

    				Namespace:         obj.Namespace,
    				Labels:            obj.Labels,
    				Annotations:       obj.Annotations,
    				ResourceVersion:   obj.ResourceVersion,
    				CreationTimestamp: obj.CreationTimestamp.Time,
    				OwnerReferences:   obj.OwnerReferences,
    				UID:               string(obj.UID),
    				Generation:        obj.Generation,
    			},
    			Spec:   &obj.Spec,
    			Status: &obj.Status,
    		}
    	},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 62.2K bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar_test.go

    		convertIstioListenerToWrapper(ps, "default", istioListener)
    	}
    }
    
    func TestComputeWildcardHostVirtualServiceIndex(t *testing.T) {
    	oldestTime := time.Now().Add(-2 * time.Hour)
    	olderTime := time.Now().Add(-1 * time.Hour)
    	newerTime := time.Now()
    	virtualServices := []config.Config{
    		{
    			Meta: config.Meta{
    				Name:              "foo",
    				Namespace:         "default",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 07 09:38:49 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go

    			}
    			// For the first 100ms from watch creation, watch progress requests are ignored.
    			time.Sleep(200 * time.Millisecond)
    			err = cacher.storage.RequestWatchProgress(metadata.NewOutgoingContext(context.Background(), contextMetadata))
    			if err != nil {
    				t.Fatal(err)
    			}
    			// Give time for bookmark to arrive
    			time.Sleep(time.Second)
    
    			etcdWatchResourceVersion := waitForEtcdBookmark()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  7. cmd/batch-handlers.go

    	Version       int       `json:"-" msg:"v"`
    	JobID         string    `json:"jobID" msg:"jid"`
    	JobType       string    `json:"jobType" msg:"jt"`
    	StartTime     time.Time `json:"startTime" msg:"st"`
    	LastUpdate    time.Time `json:"lastUpdate" msg:"lu"`
    	RetryAttempts int       `json:"retryAttempts" msg:"ra"`
    	Attempts      int       `json:"attempts" msg:"at"`
    
    	Complete bool `json:"complete" msg:"cmp"`
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/CacheBuilder.java

      @CheckForNull Strength valueStrength;
    
      @SuppressWarnings("GoodTime") // should be a java.time.Duration
      long expireAfterWriteNanos = UNSET_INT;
    
      @SuppressWarnings("GoodTime") // should be a java.time.Duration
      long expireAfterAccessNanos = UNSET_INT;
    
      @SuppressWarnings("GoodTime") // should be a java.time.Duration
      long refreshNanos = UNSET_INT;
    
      @CheckForNull Equivalence<Object> keyEquivalence;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  9. pkg/volume/csi/csi_attacher_test.go

    			trigerWatchEventTime: 5 * time.Millisecond,
    			timeout:              30 * time.Millisecond,
    			shouldFail:           true,
    		},
    		{
    			name:                 "time ran out",
    			initAttached:         false,
    			finalAttached:        true,
    			trigerWatchEventTime: 100 * time.Millisecond,
    			timeout:              50 * time.Millisecond,
    			shouldFail:           true,
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  10. src/net/http/client_test.go

    func TestClientPropagatesTimeoutToContext(t *testing.T) {
    	c := &Client{
    		Timeout: 5 * time.Second,
    		Transport: testRoundTripper(func(req *Request) (*Response, error) {
    			ctx := req.Context()
    			deadline, ok := ctx.Deadline()
    			if !ok {
    				t.Error("no deadline")
    			} else {
    				t.Logf("deadline in %v", deadline.Sub(time.Now()).Round(time.Second/10))
    			}
    			return nil, errors.New("not actually making a request")
    		}),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top