Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for transitioningTo (0.19 sec)

  1. src/runtime/runtime2.go

    	// _Pidle means a P is not being used to run user code or the
    	// scheduler. Typically, it's on the idle P list and available
    	// to the scheduler, but it may just be transitioning between
    	// other states.
    	//
    	// The P is owned by the idle list or by whatever is
    	// transitioning its state. Its run queue is empty.
    	_Pidle = iota
    
    	// _Prunning means a P is owned by an M and is being used to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/endpointslice.go

    	}
    	if _, f := e.endpointsByServiceAndSlice[hostname]; !f {
    		e.endpointsByServiceAndSlice[hostname] = make(map[string][]*model.IstioEndpoint)
    	}
    	// We will always overwrite. A conflict here means an endpoint is transitioning
    	// from one slice to another See
    	// https://github.com/kubernetes/website/blob/master/content/en/docs/concepts/services-networking/endpoint-slices.md#duplicate-endpoints
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  3. guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

            assertThrows(
                IllegalArgumentException.class,
                () -> new ServiceManager(Arrays.asList(service1, service2)));
        assertThat(expected.getMessage()).contains("started transitioning asynchronously");
      }
    
      /**
       * This test is for a case where two Service.Listener callbacks for the same service would call
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  4. src/runtime/trace.go

    	// enabled if gen != 0. This is used as an optimistic fast path check.
    	//
    	// Transitioning this value from true -> false is easy (once gen is 0)
    	// because it's OK for enabled to have a stale "true" value. traceAcquire will
    	// always double-check gen.
    	//
    	// Transitioning this value from false -> true is harder. We need to make sure
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

            assertThrows(
                IllegalArgumentException.class,
                () -> new ServiceManager(Arrays.asList(service1, service2)));
        assertThat(expected.getMessage()).contains("started transitioning asynchronously");
      }
    
      /**
       * This test is for a case where two Service.Listener callbacks for the same service would call
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  6. cmd/data-scanner.go

    func applyExpiryRule(event lifecycle.Event, src lcEventSrc, obj ObjectInfo) bool {
    	globalExpiryState.enqueueByDays(obj, event, src)
    	return true
    }
    
    // Perform actions (removal or transitioning of objects), return true the action is successfully performed
    func applyLifecycleAction(event lifecycle.Event, src lcEventSrc, obj ObjectInfo) (success bool) {
    	switch action := event.Action; action {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:43:17 UTC 2024
    - 47.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/util/concurrent/ServiceManager.java

                if (service.state() != NEW) {
                  servicesInBadStates.add(service);
                }
              }
              throw new IllegalArgumentException(
                  "Services started transitioning asynchronously before "
                      + "the ServiceManager was constructed: "
                      + servicesInBadStates);
            }
          } finally {
            monitor.leave();
          }
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/ServiceManager.java

                if (service.state() != NEW) {
                  servicesInBadStates.add(service);
                }
              }
              throw new IllegalArgumentException(
                  "Services started transitioning asynchronously before "
                      + "the ServiceManager was constructed: "
                      + servicesInBadStates);
            }
          } finally {
            monitor.leave();
          }
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:41:16 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. src/runtime/os_windows.go

    // timer resolution to 15.6 ms, this keeps timer error under roughly 1
    // part in 4.
    const osRelaxMinNS = 60 * 1e6
    
    // osRelax is called by the scheduler when transitioning to and from
    // all Ps being idle.
    //
    // Some versions of Windows have high resolution timer. For those
    // versions osRelax is noop.
    // For Windows versions without high resolution timer, osRelax
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  10. pkg/kubelet/apis/config/types.go

    	EvictionSoftGracePeriod map[string]string
    	// Duration for which the kubelet has to wait before transitioning out of an eviction pressure condition.
    	EvictionPressureTransitionPeriod metav1.Duration
    	// Maximum allowed grace period (in seconds) to use when terminating pods in response to a soft eviction threshold being met.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 21:10:42 UTC 2024
    - 35.1K bytes
    - Viewed (0)
Back to top