Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,277 for current1_ (0.08 sec)

  1. staging/src/k8s.io/api/discovery/v1beta1/types_swagger_doc_generated.go

    	"addressType": "addressType specifies the type of address carried by this EndpointSlice. All addresses in this slice must be the same type. This field is immutable after creation. The following address types are currently supported: * IPv4: Represents an IPv4 Address. * IPv6: Represents an IPv6 Address. * FQDN: Represents a Fully Qualified Domain Name.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Sep 17 09:26:19 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/apis/example/v1/generated.proto

    // PodStatus represents information about the status of a pod. Status may trail the actual
    // state of a system.
    message PodStatus {
      // Current condition of the pod.
      // More info: http://kubernetes.io/docs/user-guide/pod-states#pod-phase
      // +optional
      optional string phase = 1;
    
      // Current service state of pod.
      // More info: http://kubernetes.io/docs/user-guide/pod-states#pod-conditions
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/policy/v1/generated.proto

      // +optional
      map<string, .k8s.io.apimachinery.pkg.apis.meta.v1.Time> disruptedPods = 2;
    
      // Number of pod disruptions that are currently allowed.
      optional int32 disruptionsAllowed = 3;
    
      // current number of healthy pods
      optional int32 currentHealthy = 4;
    
      // minimum desired number of healthy pods
      optional int32 desiredHealthy = 5;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/EvictingQueue.java

       * the queue is currently full.
       *
       * @since 16.0
       */
      public int remainingCapacity() {
        return maxSize - size();
      }
    
      @Override
      protected Queue<E> delegate() {
        return delegate;
      }
    
      /**
       * Adds the given element to this queue. If the queue is currently full, the element at the head
       * of the queue is evicted to make room.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:52:55 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/OperationType.java

         * <p>
         * The following events are currently issued for this operation type.
         * <ul>
         *     <li>{@link org.gradle.tooling.events.test.TestStartEvent}</li>
         *     <li>{@link org.gradle.tooling.events.test.TestFinishEvent}</li>
         * </ul>
         */
        TEST,
    
        /**
         * Flag for task operation progress events.
         *
         * <p>
         * The following events are currently issued for this operation type.
         * <ul>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/generic/interfaces.go

    type Source[H Hook] interface {
    	// Hooks returns the list of currently known admission hooks.
    	Hooks() []H
    
    	// Run the source. This method should be called only once at startup.
    	Run(ctx context.Context) error
    
    	// HasSynced returns true if the source has completed its initial sync.
    	HasSynced() bool
    }
    
    // Dispatcher dispatches evaluates an admission request against the currently
    // active hooks returned by the source.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 13 21:06:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/features/features.go

    }
    
    // CheckDeprecatedFlags takes a list of existing feature gate flags and validates against the current feature flag set.
    // It used during upgrades for ensuring consistency of feature gates used in an existing cluster, that might
    // be created with a previous version of kubeadm, with the set of features currently supported by kubeadm
    func CheckDeprecatedFlags(f *FeatureList, features map[string]bool) map[string]string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 13:55:11 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  8. okhttp/src/main/kotlin/okhttp3/Dispatcher.kt

          idleCallback.run()
        }
      }
    
      /** Returns a snapshot of the calls currently awaiting execution. */
      fun queuedCalls(): List<Call> =
        this.withLock {
          return Collections.unmodifiableList(readyAsyncCalls.map { it.call })
        }
    
      /** Returns a snapshot of the calls currently being executed. */
      fun runningCalls(): List<Call> =
        this.withLock {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 9K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/daemon/DaemonFixture.java

         */
        DaemonFixture stops();
    
        /**
         * Asserts that this daemon is currently idle.
         */
        void assertIdle();
    
        /**
         * Asserts that this daemon is currently busy.
         */
        void assertBusy();
    
        /**
         * Asserts that this daemon is in a canceled state.
         */
        void assertCanceled();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. manifests/charts/gateways/istio-ingress/files/profile-stable.yaml

    # If you want to make a change in this file, edit the original one and run "make gen".
    
    # The stable profile deploys admission control to ensure that only stable resources and fields are used
    # THIS IS CURRENTLY EXPERIMENTAL AND SUBJECT TO CHANGE
    experimental:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 22:00:40 UTC 2024
    - 423 bytes
    - Viewed (0)
Back to top