Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 88 for central (0.32 sec)

  1. pkg/controller/nodelifecycle/node_lifecycle_controller.go

    		nodeConditionTypes := []v1.NodeConditionType{
    			v1.NodeReady,
    			v1.NodeMemoryPressure,
    			v1.NodeDiskPressure,
    			v1.NodePIDPressure,
    			// We don't change 'NodeNetworkUnavailable' condition, as it's managed on a control plane level.
    			// v1.NodeNetworkUnavailable,
    		}
    
    		nowTimestamp := nc.now()
    		for _, nodeConditionType := range nodeConditionTypes {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ImmutableSortedMap.java

        return new Builder<>(Ordering.natural());
      }
    
      /**
       * Returns a builder that creates immutable sorted maps with an explicit comparator. If the
       * comparator has a more general type than the map's keys, such as creating a {@code
       * SortedMap<Integer, String>} with a {@code Comparator<Number>}, use the {@link Builder}
       * constructor instead.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 53K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        } catch (Exception | Error unsafeFailure) { // sneaky checked exception
          thrownUnsafeFailure = unsafeFailure;
          // catch absolutely everything and fall through to our 'SafeAtomicHelper'
          // The access control checks that ARFU does means the caller class has to be AbstractFuture
          // instead of SafeAtomicHelper, so we annoyingly define these here
          try {
            helper =
                new SafeAtomicHelper(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  4. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        } catch (Exception | Error unsafeFailure) { // sneaky checked exception
          thrownUnsafeFailure = unsafeFailure;
          // catch absolutely everything and fall through to our 'SafeAtomicHelper'
          // The access control checks that ARFU does means the caller class has to be AbstractFuture
          // instead of SafeAtomicHelper, so we annoyingly define these here
          try {
            helper =
                new SafeAtomicHelper(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  5. src/crypto/tls/conn.go

    // protocol if it has not yet been run.
    //
    // Most uses of this package need not call Handshake explicitly: the
    // first [Conn.Read] or [Conn.Write] will call it automatically.
    //
    // For control over canceling or setting a timeout on a handshake, use
    // [Conn.HandshakeContext] or the [Dialer]'s DialContext method instead.
    //
    // In order to avoid denial of service attacks, the maximum RSA key size allowed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/math/big/float_test.go

    		// prec at upper limit
    		{"0", MaxPrec, "0", Exact},
    		{"-0", MaxPrec, "-0", Exact},
    		{"-Inf", MaxPrec, "-Inf", Exact},
    		{"+Inf", MaxPrec, "+Inf", Exact},
    
    		// just a few regular cases - general rounding is tested elsewhere
    		{"1.5", 1, "2", Above},
    		{"-1.5", 1, "-2", Below},
    		{"123", 1e6, "123", Exact},
    		{"-123", 1e6, "-123", Exact},
    	} {
    		x := makeFloat(test.x).SetPrec(test.prec)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 51.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/expr.go

    		switch {
    		case e.Type != nil:
    			// composite literal type present - use it
    			// [...]T array types may only appear with composite literals.
    			// Check for them here so we don't have to handle ... in general.
    			if atyp, _ := e.Type.(*syntax.ArrayType); atyp != nil && atyp.Len == nil {
    				// We have an "open" [...]T array type.
    				// Create a new ArrayType with unknown length (-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  8. src/runtime/mgcscavenge.go

    	// Calculate the CPU time spent.
    	//
    	// This may be slightly inaccurate with respect to GOMAXPROCS, but we're
    	// recomputing this often enough relative to GOMAXPROCS changes in general
    	// (it only changes when the world is stopped, and not during a GC) that
    	// that small inaccuracy is in the noise.
    	cpuFraction := worked / ((float64(slept) + worked) * float64(s.gomaxprocs()))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  9. pkg/scheduler/internal/queue/scheduling_queue.go

    	queueingHintMap QueueingHintMapPerProfile
    
    	// closed indicates that the queue is closed.
    	// It is mainly used to let Pop() exit its control loop while waiting for an item.
    	closed bool
    
    	nsLister listersv1.NamespaceLister
    
    	metricsRecorder metrics.MetricAsyncRecorder
    	// pluginMetricsSamplePercent is the percentage of plugin metrics to be sampled.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/Sets.java

       * ordering. {@code NavigableSet} on the other hand can specify a custom ordering via a {@link
       * Comparator}, which can violate the natural ordering. Using this method (or in general using
       * {@code Range}) with unnaturally-ordered sets can lead to unexpected and undefined behavior.
       *
       * @since 20.0
       */
      @GwtIncompatible // NavigableSet
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 77.3K bytes
    - Viewed (0)
Back to top