Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 713 for startLine (0.2 sec)

  1. guava-tests/test/com/google/common/util/concurrent/AbstractServiceTest.java

          }
        }
    
        @Override
        public synchronized void starting() {
          assertTrue(stateHistory.isEmpty());
          assertNotSame(State.NEW, service.state());
          stateHistory.add(State.STARTING);
        }
    
        @Override
        public synchronized void running() {
          assertEquals(State.STARTING, Iterables.getOnlyElement(stateHistory));
          stateHistory.add(State.RUNNING);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 29.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/Service.java

        /**
         * Called when the service transitions from {@linkplain State#NEW NEW} to {@linkplain
         * State#STARTING STARTING}. This occurs when {@link Service#startAsync} is called the first
         * time.
         */
        public void starting() {}
    
        /**
         * Called when the service transitions from {@linkplain State#STARTING STARTING} to {@linkplain
         * State#RUNNING RUNNING}. This occurs when a service has successfully started.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  3. pkg/controller/endpointslice/endpointslice_controller.go

    	c.serviceQueue.Forget(key)
    	utilruntime.HandleError(err)
    }
    
    func (c *Controller) syncService(logger klog.Logger, key string) error {
    	startTime := time.Now()
    	defer func() {
    		logger.V(4).Info("Finished syncing service endpoint slices", "key", key, "elapsedTime", time.Since(startTime))
    	}()
    
    	namespace, name, err := cache.SplitMetaNamespaceKey(key)
    	if err != nil {
    		return err
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForBuildOperationsTest.groovy

            event
        }
    
        private InternalSuccessResult buildSuccess(long startTime, long endTime) {
            InternalSuccessResult result = Mock(InternalSuccessResult)
            result.startTime >> startTime
            result.endTime >> endTime
    
            result
        }
    
        private InternalFailureResult buildFailure(long startTime, long endTime, InternalFailure failure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.3K bytes
    - Viewed (0)
  5. pkg/kubelet/metrics/collectors/resource_metrics_test.go

    		},
    		{
    			name: "arbitrary container metrics for negative StartTime",
    			summary: &statsapi.Summary{
    				Pods: []statsapi.PodStats{
    					{
    						PodRef: statsapi.PodReference{
    							Name:      "pod_a",
    							Namespace: "namespace_a",
    						},
    						Containers: []statsapi.ContainerStats{
    							{
    								Name:      "container_a",
    								StartTime: metav1.NewTime(time.Unix(0, -1624396278302091597)),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 08:12:16 UTC 2024
    - 15.3K bytes
    - Viewed (1)
  6. android/guava/src/com/google/common/util/concurrent/Service.java

        /**
         * Called when the service transitions from {@linkplain State#NEW NEW} to {@linkplain
         * State#STARTING STARTING}. This occurs when {@link Service#startAsync} is called the first
         * time.
         */
        public void starting() {}
    
        /**
         * Called when the service transitions from {@linkplain State#STARTING STARTING} to {@linkplain
         * State#RUNNING RUNNING}. This occurs when a service has successfully started.
         */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 04 09:45:04 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. pkg/controller/nodeipam/ipam/range_allocator.go

    	}
    
    	return true
    }
    
    func (r *rangeAllocator) syncNode(ctx context.Context, key string) error {
    	logger := klog.FromContext(ctx)
    	startTime := time.Now()
    	defer func() {
    		logger.V(4).Info("Finished syncing Node request", "node", key, "elapsed", time.Since(startTime))
    	}()
    
    	node, err := r.nodeLister.Get(key)
    	if apierrors.IsNotFound(err) {
    		logger.V(3).Info("node has been deleted", "node", key)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 10:06:15 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        long startTime = stopwatch.instant;
        while (permits > 0) {
          int nextPermitsToAcquire = Math.max(1, random.nextInt(permits));
          permits -= nextPermitsToAcquire;
          rateLimiter.acquire(nextPermitsToAcquire);
        }
        rateLimiter.acquire(1); // to repay for any pending debt
        return NANOSECONDS.toMillis(stopwatch.instant - startTime);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/RateLimiterTest.java

        long startTime = stopwatch.instant;
        while (permits > 0) {
          int nextPermitsToAcquire = Math.max(1, random.nextInt(permits));
          permits -= nextPermitsToAcquire;
          rateLimiter.acquire(nextPermitsToAcquire);
        }
        rateLimiter.acquire(1); // to repay for any pending debt
        return NANOSECONDS.toMillis(stopwatch.instant - startTime);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 21.6K bytes
    - Viewed (0)
  10. pkg/controller/cronjob/utils.go

    func (o byJobStartTime) Less(i, j int) bool {
    	if o[i].Status.StartTime == nil && o[j].Status.StartTime != nil {
    		return false
    	}
    	if o[i].Status.StartTime != nil && o[j].Status.StartTime == nil {
    		return true
    	}
    	if o[i].Status.StartTime.Equal(o[j].Status.StartTime) {
    		return o[i].Name < o[j].Name
    	}
    	return o[i].Status.StartTime.Before(o[j].Status.StartTime)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 03:34:25 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top