Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 430 for tims (0.05 sec)

  1. pkg/proxy/ipvs/proxier.go

    	ipvs utilipvs.Interface,
    	ipset utilipset.Interface,
    	sysctl utilsysctl.Interface,
    	exec utilexec.Interface,
    	syncPeriod time.Duration,
    	minSyncPeriod time.Duration,
    	excludeCIDRs []string,
    	strictARP bool,
    	tcpTimeout time.Duration,
    	tcpFinTimeout time.Duration,
    	udpTimeout time.Duration,
    	masqueradeAll bool,
    	masqueradeBit int,
    	localDetectors map[v1.IPFamily]proxyutil.LocalTrafficDetector,
    	hostname string,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  2. pkg/controller/volume/attachdetach/reconciler/reconciler_test.go

    	utilstrings "k8s.io/utils/strings"
    )
    
    const (
    	reconcilerLoopPeriod          = 10 * time.Millisecond
    	syncLoopPeriod                = 100 * time.Minute
    	maxWaitForUnmountDuration     = 50 * time.Millisecond
    	maxLongWaitForUnmountDuration = 4200 * time.Second
    	volumeAttachedCheckTimeout    = 5 * time.Second
    )
    
    var registerMetrics sync.Once
    
    // Calls Run()
    // Verifies there are no calls to attach or detach.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 07:00:14 UTC 2024
    - 72.8K bytes
    - Viewed (0)
  3. cmd/xl-storage-format-v2.go

    // getModTime will return the ModTime of the underlying version.
    func (j xlMetaV2Version) getModTime() time.Time {
    	switch j.Type {
    	case ObjectType:
    		return time.Unix(0, j.ObjectV2.ModTime)
    	case DeleteType:
    		return time.Unix(0, j.DeleteMarker.ModTime)
    	case LegacyType:
    		return j.ObjectV1.Stat.ModTime
    	}
    	return time.Time{}
    }
    
    // getVersionID will return the versionID of the underlying version.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 29 19:14:09 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  4. src/os/os_test.go

    	case "js":
    		startAtime = startAtime.Truncate(time.Second)
    		startMtime = startMtime.Truncate(time.Second)
    	}
    	at0 := startAtime
    	mt0 := startMtime
    	t0 := startMtime.Truncate(time.Second).Add(1 * time.Hour)
    
    	tests := []struct {
    		aTime     time.Time
    		mTime     time.Time
    		wantATime time.Time
    		wantMTime time.Time
    	}{
    		{
    			aTime:     time.Time{},
    			mTime:     time.Time{},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  5. pkg/kubelet/status/status_manager_test.go

    		},
    		Status: v1.PodStatus{},
    	}
    	now := metav1.Now()
    	startTime := metav1.NewTime(now.Time.Add(-1 * time.Minute))
    	pod.Status.StartTime = &startTime
    	syncer.SetPodStatus(pod, getRandomPodStatus())
    
    	status := expectPodStatus(t, syncer, pod)
    	if !status.StartTime.Time.Equal(startTime.Time) {
    		t.Errorf("Unexpected start time, expected %v, actual %v", startTime, status.StartTime)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/volumebinding/binder_test.go

    		newPv, err := env.client.CoreV1().PersistentVolumes().Update(ctx, pv, metav1.UpdateOptions{})
    		if err != nil {
    			return err
    		}
    		pvs[i] = newPv
    	}
    	return wait.PollUntilContextTimeout(ctx, 100*time.Millisecond, 3*time.Second, false, func(ctx context.Context) (bool, error) {
    		for _, pv := range pvs {
    			obj, err := env.internalBinder.pvCache.GetAPIObj(pv.Name)
    			if obj == nil || err != nil {
    				return false, nil
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 82.8K bytes
    - Viewed (0)
  7. src/runtime/mprof.go

    type memRecord struct {
    	// The following complex 3-stage scheme of stats accumulation
    	// is required to obtain a consistent picture of mallocs and frees
    	// for some point in time.
    	// The problem is that mallocs come in real time, while frees
    	// come only after a GC during concurrent sweeping. So if we would
    	// naively count them, we would get a skew toward mallocs.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. tensorflow/c/c_api_test.cc

      const int num_dims = 2;
      int64_t* dims = new int64_t[num_dims];
      int64_t num_elements = 1;
      dims[0] = batch_size;
      dims[1] = 1;
      for (int64_t i = 0; i < num_dims; ++i) {
        num_elements *= dims[i];
      }
      TF_Tensor* t = TF_AllocateTensor(TF_STRING, dims, num_dims,
                                       sizeof(TF_TString) * num_elements);
      delete[] dims;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener_test.go

    	// storing the services out of time order to test that it's being sorted properly.
    	testOutboundListenerConflict(t,
    		buildService("test1.com", wildcardIPv4, protocol.HTTP, tnow.Add(1*time.Second)),
    		buildService("test2.com", wildcardIPv4, "unknown", tnow),
    		buildService("test3.com", wildcardIPv4, protocol.HTTP, tnow.Add(2*time.Second)))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/Futures.java

       *
       * <p>The delegate future is interrupted and cancelled if it times out.
       *
       * @param delegate The future to delegate to.
       * @param time when to time out the future
       * @param unit the time unit of the time parameter
       * @param scheduledExecutor The executor service to enforce the timeout.
       * @since 19.0
       */
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 64.1K bytes
    - Viewed (0)
Back to top